├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── RESULTS.md ├── bin ├── cake ├── cake.bat └── cake.php ├── composer.json ├── config ├── Migrations │ └── 20150111023838_Init.php ├── app.php ├── app_custom.php ├── app_local.default.php ├── bootstrap.php ├── bootstrap_cli.php ├── paths.php └── routes.php ├── index.php ├── phpunit.xml.dist ├── src ├── Application.php ├── Command │ └── CommandExecCommand.php ├── Console │ └── Installer.php ├── Controller │ ├── AppController.php │ ├── Component │ │ ├── FooComponent.php │ │ └── empty │ ├── PagesController.php │ └── TokensController.php ├── Model │ ├── Behavior │ │ └── AlphaBehavior.php │ ├── Entity │ │ └── Token.php │ └── Table │ │ └── TokensTable.php └── View │ ├── AjaxView.php │ ├── AppView.php │ ├── Cell │ └── InboxCell.php │ └── Helper │ ├── FooHelper.php │ └── empty ├── templates ├── Error │ ├── error400.php │ └── error500.php ├── Pages │ └── home.php ├── Tokens │ ├── add.php │ ├── edit.php │ ├── index.php │ ├── model_delete.php │ ├── model_find.php │ ├── model_multi_save.php │ ├── model_no_validation.php │ ├── model_no_validation_no_rules.php │ ├── model_patch.php │ └── model_save.php ├── cell │ └── Inbox │ │ └── display.php ├── element │ ├── flash │ │ ├── default.php │ │ ├── error.php │ │ └── success.php │ └── info.php └── layout │ ├── default.php │ └── error.php ├── tests └── bootstrap.php └── webroot ├── .htaccess ├── css ├── base.css ├── cake.css └── milligram.min.css ├── favicon.ico ├── img ├── cake.icon.png └── cake.power.gif ├── index.php └── js └── empty /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/README.md -------------------------------------------------------------------------------- /RESULTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/RESULTS.md -------------------------------------------------------------------------------- /bin/cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/bin/cake -------------------------------------------------------------------------------- /bin/cake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/bin/cake.bat -------------------------------------------------------------------------------- /bin/cake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/bin/cake.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/composer.json -------------------------------------------------------------------------------- /config/Migrations/20150111023838_Init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/config/Migrations/20150111023838_Init.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/config/app.php -------------------------------------------------------------------------------- /config/app_custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/config/app_custom.php -------------------------------------------------------------------------------- /config/app_local.default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/config/app_local.default.php -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/bootstrap_cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/config/bootstrap_cli.php -------------------------------------------------------------------------------- /config/paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/config/paths.php -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/config/routes.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/index.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Command/CommandExecCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/Command/CommandExecCommand.php -------------------------------------------------------------------------------- /src/Console/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/Console/Installer.php -------------------------------------------------------------------------------- /src/Controller/AppController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/Controller/AppController.php -------------------------------------------------------------------------------- /src/Controller/Component/FooComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/Controller/Component/FooComponent.php -------------------------------------------------------------------------------- /src/Controller/Component/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Controller/PagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/Controller/PagesController.php -------------------------------------------------------------------------------- /src/Controller/TokensController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/Controller/TokensController.php -------------------------------------------------------------------------------- /src/Model/Behavior/AlphaBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/Model/Behavior/AlphaBehavior.php -------------------------------------------------------------------------------- /src/Model/Entity/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/Model/Entity/Token.php -------------------------------------------------------------------------------- /src/Model/Table/TokensTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/Model/Table/TokensTable.php -------------------------------------------------------------------------------- /src/View/AjaxView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/View/AjaxView.php -------------------------------------------------------------------------------- /src/View/AppView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/View/AppView.php -------------------------------------------------------------------------------- /src/View/Cell/InboxCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/View/Cell/InboxCell.php -------------------------------------------------------------------------------- /src/View/Helper/FooHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/src/View/Helper/FooHelper.php -------------------------------------------------------------------------------- /src/View/Helper/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/Error/error400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/Error/error400.php -------------------------------------------------------------------------------- /templates/Error/error500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/Error/error500.php -------------------------------------------------------------------------------- /templates/Pages/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/Pages/home.php -------------------------------------------------------------------------------- /templates/Tokens/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/Tokens/add.php -------------------------------------------------------------------------------- /templates/Tokens/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/Tokens/edit.php -------------------------------------------------------------------------------- /templates/Tokens/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/Tokens/index.php -------------------------------------------------------------------------------- /templates/Tokens/model_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/Tokens/model_delete.php -------------------------------------------------------------------------------- /templates/Tokens/model_find.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/Tokens/model_find.php -------------------------------------------------------------------------------- /templates/Tokens/model_multi_save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/Tokens/model_multi_save.php -------------------------------------------------------------------------------- /templates/Tokens/model_no_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/Tokens/model_no_validation.php -------------------------------------------------------------------------------- /templates/Tokens/model_no_validation_no_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/Tokens/model_no_validation_no_rules.php -------------------------------------------------------------------------------- /templates/Tokens/model_patch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/Tokens/model_patch.php -------------------------------------------------------------------------------- /templates/Tokens/model_save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/Tokens/model_save.php -------------------------------------------------------------------------------- /templates/cell/Inbox/display.php: -------------------------------------------------------------------------------- 1 | My cell content 2 | -------------------------------------------------------------------------------- /templates/element/flash/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/element/flash/default.php -------------------------------------------------------------------------------- /templates/element/flash/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/element/flash/error.php -------------------------------------------------------------------------------- /templates/element/flash/success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/element/flash/success.php -------------------------------------------------------------------------------- /templates/element/info.php: -------------------------------------------------------------------------------- 1 | See `ROOT/logs/exec.log'` for details. 2 | -------------------------------------------------------------------------------- /templates/layout/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/layout/default.php -------------------------------------------------------------------------------- /templates/layout/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/templates/layout/error.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /webroot/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/webroot/.htaccess -------------------------------------------------------------------------------- /webroot/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/webroot/css/base.css -------------------------------------------------------------------------------- /webroot/css/cake.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/webroot/css/cake.css -------------------------------------------------------------------------------- /webroot/css/milligram.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/webroot/css/milligram.min.css -------------------------------------------------------------------------------- /webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/webroot/favicon.ico -------------------------------------------------------------------------------- /webroot/img/cake.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/webroot/img/cake.icon.png -------------------------------------------------------------------------------- /webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /webroot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dereuromark/executionorder/HEAD/webroot/index.php -------------------------------------------------------------------------------- /webroot/js/empty: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------