├── .gitignore ├── README.md ├── Scaffolding.php ├── css └── zstyles.css ├── docs └── Fields and options.md ├── js └── zsutils.js ├── tests ├── README.txt ├── application │ ├── Bootstrap.php │ ├── configs │ │ └── application.ini │ ├── controllers │ │ ├── BookCatalogsController.php │ │ ├── BookCategoriesController.php │ │ ├── BooksController.php │ │ ├── ErrorController.php │ │ ├── IndexController.php │ │ ├── ReaderCategoriesController.php │ │ └── ReadersController.php │ ├── layouts │ │ └── scripts │ │ │ └── layout.phtml │ ├── models │ │ ├── BookCatalogs.php │ │ ├── BookCategories.php │ │ ├── Books.php │ │ ├── ReaderAccounts.php │ │ ├── ReaderCategories.php │ │ ├── Readers.php │ │ └── ReadersBooks.php │ ├── scaff.sqlite │ │ └── scaff.sqlite │ └── views │ │ └── scripts │ │ ├── error │ │ └── error.phtml │ │ ├── index │ │ └── index.phtml │ │ ├── readers │ │ ├── index.phtml │ │ └── smartquery.phtml │ │ └── scaffolding │ │ ├── add-button.phtml │ │ ├── create.phtml │ │ ├── error.phtml │ │ ├── index.phtml │ │ ├── list.phtml │ │ ├── messages.phtml │ │ ├── pagination.phtml │ │ ├── search-form.phtml │ │ └── update.phtml ├── public │ ├── .htaccess │ ├── css │ │ └── zstyles.css │ ├── index.php │ └── js │ │ └── zsutils.js └── tests │ ├── application │ ├── bootstrap.php │ └── controllers │ │ ├── BooksControllerTest.php │ │ └── ReadersControllerTest.php │ ├── library │ └── bootstrap.php │ └── phpunit.xml └── views └── scripts └── scaffolding ├── add-button.phtml ├── create.phtml ├── error.phtml ├── index.phtml ├── list.phtml ├── messages.phtml ├── pagination.phtml ├── search-form.phtml └── update.phtml /.gitignore: -------------------------------------------------------------------------------- 1 | nbproject 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/README.md -------------------------------------------------------------------------------- /Scaffolding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/Scaffolding.php -------------------------------------------------------------------------------- /css/zstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/css/zstyles.css -------------------------------------------------------------------------------- /docs/Fields and options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/docs/Fields and options.md -------------------------------------------------------------------------------- /js/zsutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/js/zsutils.js -------------------------------------------------------------------------------- /tests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/README.txt -------------------------------------------------------------------------------- /tests/application/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/Bootstrap.php -------------------------------------------------------------------------------- /tests/application/configs/application.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/configs/application.ini -------------------------------------------------------------------------------- /tests/application/controllers/BookCatalogsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/controllers/BookCatalogsController.php -------------------------------------------------------------------------------- /tests/application/controllers/BookCategoriesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/controllers/BookCategoriesController.php -------------------------------------------------------------------------------- /tests/application/controllers/BooksController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/controllers/BooksController.php -------------------------------------------------------------------------------- /tests/application/controllers/ErrorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/controllers/ErrorController.php -------------------------------------------------------------------------------- /tests/application/controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/controllers/IndexController.php -------------------------------------------------------------------------------- /tests/application/controllers/ReaderCategoriesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/controllers/ReaderCategoriesController.php -------------------------------------------------------------------------------- /tests/application/controllers/ReadersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/controllers/ReadersController.php -------------------------------------------------------------------------------- /tests/application/layouts/scripts/layout.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/layouts/scripts/layout.phtml -------------------------------------------------------------------------------- /tests/application/models/BookCatalogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/models/BookCatalogs.php -------------------------------------------------------------------------------- /tests/application/models/BookCategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/models/BookCategories.php -------------------------------------------------------------------------------- /tests/application/models/Books.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/models/Books.php -------------------------------------------------------------------------------- /tests/application/models/ReaderAccounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/models/ReaderAccounts.php -------------------------------------------------------------------------------- /tests/application/models/ReaderCategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/models/ReaderCategories.php -------------------------------------------------------------------------------- /tests/application/models/Readers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/models/Readers.php -------------------------------------------------------------------------------- /tests/application/models/ReadersBooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/models/ReadersBooks.php -------------------------------------------------------------------------------- /tests/application/scaff.sqlite/scaff.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/scaff.sqlite/scaff.sqlite -------------------------------------------------------------------------------- /tests/application/views/scripts/error/error.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/views/scripts/error/error.phtml -------------------------------------------------------------------------------- /tests/application/views/scripts/index/index.phtml: -------------------------------------------------------------------------------- 1 |

This is a sample application

-------------------------------------------------------------------------------- /tests/application/views/scripts/readers/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/views/scripts/readers/index.phtml -------------------------------------------------------------------------------- /tests/application/views/scripts/readers/smartquery.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/views/scripts/readers/smartquery.phtml -------------------------------------------------------------------------------- /tests/application/views/scripts/scaffolding/add-button.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/views/scripts/scaffolding/add-button.phtml -------------------------------------------------------------------------------- /tests/application/views/scripts/scaffolding/create.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/views/scripts/scaffolding/create.phtml -------------------------------------------------------------------------------- /tests/application/views/scripts/scaffolding/error.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/views/scripts/scaffolding/error.phtml -------------------------------------------------------------------------------- /tests/application/views/scripts/scaffolding/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/views/scripts/scaffolding/index.phtml -------------------------------------------------------------------------------- /tests/application/views/scripts/scaffolding/list.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/views/scripts/scaffolding/list.phtml -------------------------------------------------------------------------------- /tests/application/views/scripts/scaffolding/messages.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/views/scripts/scaffolding/messages.phtml -------------------------------------------------------------------------------- /tests/application/views/scripts/scaffolding/pagination.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/views/scripts/scaffolding/pagination.phtml -------------------------------------------------------------------------------- /tests/application/views/scripts/scaffolding/search-form.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/views/scripts/scaffolding/search-form.phtml -------------------------------------------------------------------------------- /tests/application/views/scripts/scaffolding/update.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/application/views/scripts/scaffolding/update.phtml -------------------------------------------------------------------------------- /tests/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/public/.htaccess -------------------------------------------------------------------------------- /tests/public/css/zstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/public/css/zstyles.css -------------------------------------------------------------------------------- /tests/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/public/index.php -------------------------------------------------------------------------------- /tests/public/js/zsutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/public/js/zsutils.js -------------------------------------------------------------------------------- /tests/tests/application/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/tests/application/bootstrap.php -------------------------------------------------------------------------------- /tests/tests/application/controllers/BooksControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/tests/application/controllers/BooksControllerTest.php -------------------------------------------------------------------------------- /tests/tests/application/controllers/ReadersControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/tests/tests/application/controllers/ReadersControllerTest.php -------------------------------------------------------------------------------- /tests/tests/library/bootstrap.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/phpunit.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/scripts/scaffolding/add-button.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/views/scripts/scaffolding/add-button.phtml -------------------------------------------------------------------------------- /views/scripts/scaffolding/create.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/views/scripts/scaffolding/create.phtml -------------------------------------------------------------------------------- /views/scripts/scaffolding/error.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/views/scripts/scaffolding/error.phtml -------------------------------------------------------------------------------- /views/scripts/scaffolding/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/views/scripts/scaffolding/index.phtml -------------------------------------------------------------------------------- /views/scripts/scaffolding/list.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/views/scripts/scaffolding/list.phtml -------------------------------------------------------------------------------- /views/scripts/scaffolding/messages.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/views/scripts/scaffolding/messages.phtml -------------------------------------------------------------------------------- /views/scripts/scaffolding/pagination.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/views/scripts/scaffolding/pagination.phtml -------------------------------------------------------------------------------- /views/scripts/scaffolding/search-form.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/views/scripts/scaffolding/search-form.phtml -------------------------------------------------------------------------------- /views/scripts/scaffolding/update.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lex0r/zendscaffolding/HEAD/views/scripts/scaffolding/update.phtml --------------------------------------------------------------------------------