├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── classes ├── Deputy.php ├── Deputy │ ├── Resource.php │ └── Role.php └── Kohana │ ├── Deputy.php │ └── Deputy │ ├── Resource.php │ └── Role.php ├── config ├── deputy.php └── userguide.php ├── guide └── deputy │ ├── config.md │ ├── helpers.md │ ├── index.md │ ├── menu.md │ ├── resources.md │ ├── roles.md │ └── start.md └── tests └── kohana ├── Deputy ├── ResourceTest.php └── RoleTest.php └── DeputyTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/README.md -------------------------------------------------------------------------------- /classes/Deputy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/classes/Deputy.php -------------------------------------------------------------------------------- /classes/Deputy/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/classes/Deputy/Resource.php -------------------------------------------------------------------------------- /classes/Deputy/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/classes/Deputy/Role.php -------------------------------------------------------------------------------- /classes/Kohana/Deputy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/classes/Kohana/Deputy.php -------------------------------------------------------------------------------- /classes/Kohana/Deputy/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/classes/Kohana/Deputy/Resource.php -------------------------------------------------------------------------------- /classes/Kohana/Deputy/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/classes/Kohana/Deputy/Role.php -------------------------------------------------------------------------------- /config/deputy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/config/deputy.php -------------------------------------------------------------------------------- /config/userguide.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/config/userguide.php -------------------------------------------------------------------------------- /guide/deputy/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/guide/deputy/config.md -------------------------------------------------------------------------------- /guide/deputy/helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/guide/deputy/helpers.md -------------------------------------------------------------------------------- /guide/deputy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/guide/deputy/index.md -------------------------------------------------------------------------------- /guide/deputy/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/guide/deputy/menu.md -------------------------------------------------------------------------------- /guide/deputy/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/guide/deputy/resources.md -------------------------------------------------------------------------------- /guide/deputy/roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/guide/deputy/roles.md -------------------------------------------------------------------------------- /guide/deputy/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/guide/deputy/start.md -------------------------------------------------------------------------------- /tests/kohana/Deputy/ResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/tests/kohana/Deputy/ResourceTest.php -------------------------------------------------------------------------------- /tests/kohana/Deputy/RoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/tests/kohana/Deputy/RoleTest.php -------------------------------------------------------------------------------- /tests/kohana/DeputyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan/kohana-deputy/HEAD/tests/kohana/DeputyTest.php --------------------------------------------------------------------------------