├── .editorconfig ├── .travis.yml ├── CONTRIBUTING.md ├── Controller └── Component │ └── PermitComponent.php ├── LICENSE.txt ├── Lib └── Panel │ └── PermitPanel.php ├── Model └── Behavior │ └── PermitBehavior.php ├── README.markdown ├── Test ├── Case │ ├── AllSanctionTest.php │ └── Controller │ │ └── Component │ │ └── PermitTest.php └── Config │ ├── permit.php │ └── permit_exception.php ├── View ├── Elements │ └── permit_panel.ctp └── Helper │ └── ClearanceHelper.php └── composer.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-sanction/HEAD/.editorconfig -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-sanction/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-sanction/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Controller/Component/PermitComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-sanction/HEAD/Controller/Component/PermitComponent.php -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-sanction/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Lib/Panel/PermitPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-sanction/HEAD/Lib/Panel/PermitPanel.php -------------------------------------------------------------------------------- /Model/Behavior/PermitBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-sanction/HEAD/Model/Behavior/PermitBehavior.php -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-sanction/HEAD/README.markdown -------------------------------------------------------------------------------- /Test/Case/AllSanctionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-sanction/HEAD/Test/Case/AllSanctionTest.php -------------------------------------------------------------------------------- /Test/Case/Controller/Component/PermitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-sanction/HEAD/Test/Case/Controller/Component/PermitTest.php -------------------------------------------------------------------------------- /Test/Config/permit.php: -------------------------------------------------------------------------------- 1 |