├── LICENSE ├── README.md ├── demo.gif └── src ├── Cells ├── Counter │ ├── CounterCell.php │ └── counter.php ├── CounterSigned │ ├── CounterSignedCell.php │ └── counter_signed.php ├── TableAdvanced │ ├── TableAdvancedCell.php │ └── table_advanced.php └── TableSimple │ ├── TableSimpleCell.php │ └── table_simple.php ├── Config ├── Registrar.php └── Routes.php ├── Controllers ├── Books.php ├── Paragraphs.php └── Tasks.php ├── Database ├── Migrations │ ├── .gitkeep │ ├── 2022-10-01-080730_AddBooksTable.php │ ├── 2022-12-04-110940_AddTasksTable.php │ └── 2022-12-12-101738_AddParagraphsTable.php └── Seeds │ ├── .gitkeep │ ├── SeedBooksTable.php │ ├── SeedDemo.php │ └── SeedParagraphsTable.php ├── Helpers └── alert_helper.php ├── Models ├── .gitkeep ├── BookModel.php ├── ParagraphModel.php └── TaskModel.php ├── TableHelper.php └── Views ├── Pager └── default_htmx_full.php ├── books ├── index.php ├── table.php ├── table_row.php ├── table_row_add.php └── table_row_edit.php ├── cells └── index.php ├── home.php ├── layout.php ├── paragraphs ├── edit.php └── index.php └── tasks ├── index.php ├── task.php └── tasks_summary.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/demo.gif -------------------------------------------------------------------------------- /src/Cells/Counter/CounterCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Cells/Counter/CounterCell.php -------------------------------------------------------------------------------- /src/Cells/Counter/counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Cells/Counter/counter.php -------------------------------------------------------------------------------- /src/Cells/CounterSigned/CounterSignedCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Cells/CounterSigned/CounterSignedCell.php -------------------------------------------------------------------------------- /src/Cells/CounterSigned/counter_signed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Cells/CounterSigned/counter_signed.php -------------------------------------------------------------------------------- /src/Cells/TableAdvanced/TableAdvancedCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Cells/TableAdvanced/TableAdvancedCell.php -------------------------------------------------------------------------------- /src/Cells/TableAdvanced/table_advanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Cells/TableAdvanced/table_advanced.php -------------------------------------------------------------------------------- /src/Cells/TableSimple/TableSimpleCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Cells/TableSimple/TableSimpleCell.php -------------------------------------------------------------------------------- /src/Cells/TableSimple/table_simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Cells/TableSimple/table_simple.php -------------------------------------------------------------------------------- /src/Config/Registrar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Config/Registrar.php -------------------------------------------------------------------------------- /src/Config/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Config/Routes.php -------------------------------------------------------------------------------- /src/Controllers/Books.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Controllers/Books.php -------------------------------------------------------------------------------- /src/Controllers/Paragraphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Controllers/Paragraphs.php -------------------------------------------------------------------------------- /src/Controllers/Tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Controllers/Tasks.php -------------------------------------------------------------------------------- /src/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Database/Migrations/2022-10-01-080730_AddBooksTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Database/Migrations/2022-10-01-080730_AddBooksTable.php -------------------------------------------------------------------------------- /src/Database/Migrations/2022-12-04-110940_AddTasksTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Database/Migrations/2022-12-04-110940_AddTasksTable.php -------------------------------------------------------------------------------- /src/Database/Migrations/2022-12-12-101738_AddParagraphsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Database/Migrations/2022-12-12-101738_AddParagraphsTable.php -------------------------------------------------------------------------------- /src/Database/Seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Database/Seeds/SeedBooksTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Database/Seeds/SeedBooksTable.php -------------------------------------------------------------------------------- /src/Database/Seeds/SeedDemo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Database/Seeds/SeedDemo.php -------------------------------------------------------------------------------- /src/Database/Seeds/SeedParagraphsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Database/Seeds/SeedParagraphsTable.php -------------------------------------------------------------------------------- /src/Helpers/alert_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Helpers/alert_helper.php -------------------------------------------------------------------------------- /src/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Models/BookModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Models/BookModel.php -------------------------------------------------------------------------------- /src/Models/ParagraphModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Models/ParagraphModel.php -------------------------------------------------------------------------------- /src/Models/TaskModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Models/TaskModel.php -------------------------------------------------------------------------------- /src/TableHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/TableHelper.php -------------------------------------------------------------------------------- /src/Views/Pager/default_htmx_full.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/Pager/default_htmx_full.php -------------------------------------------------------------------------------- /src/Views/books/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/books/index.php -------------------------------------------------------------------------------- /src/Views/books/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/books/table.php -------------------------------------------------------------------------------- /src/Views/books/table_row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/books/table_row.php -------------------------------------------------------------------------------- /src/Views/books/table_row_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/books/table_row_add.php -------------------------------------------------------------------------------- /src/Views/books/table_row_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/books/table_row_edit.php -------------------------------------------------------------------------------- /src/Views/cells/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/cells/index.php -------------------------------------------------------------------------------- /src/Views/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/home.php -------------------------------------------------------------------------------- /src/Views/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/layout.php -------------------------------------------------------------------------------- /src/Views/paragraphs/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/paragraphs/edit.php -------------------------------------------------------------------------------- /src/Views/paragraphs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/paragraphs/index.php -------------------------------------------------------------------------------- /src/Views/tasks/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/tasks/index.php -------------------------------------------------------------------------------- /src/Views/tasks/task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/tasks/task.php -------------------------------------------------------------------------------- /src/Views/tasks/tasks_summary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalsn/codeigniter-htmx-demo/HEAD/src/Views/tasks/tasks_summary.php --------------------------------------------------------------------------------