├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── config ├── Migrations │ └── 20150611195820_cakeadmin_initial.php ├── bootstrap.php └── routes.php ├── phpunit.xml.dist ├── src ├── Controller │ ├── Admin │ │ ├── DashboardController.php │ │ ├── NotificationsController.php │ │ ├── PostTypesController.php │ │ ├── SettingsController.php │ │ └── UsersController.php │ ├── AppController.php │ └── Component │ │ ├── CakeAdminComponent.php │ │ └── PostTypesComponent.php ├── Locale │ ├── CakeAdmin.pot │ └── pt_BR │ │ └── CakeAdmin.po ├── Mailer │ └── CakeAdminMailer.php ├── Model │ ├── Entity │ │ └── Administrator.php │ └── Table │ │ └── AdministratorsTable.php ├── Shell │ ├── AdminShell.php │ └── CainstallShell.php ├── Template │ ├── Admin │ │ ├── Dashboard │ │ │ └── index.ctp │ │ ├── Notifications │ │ │ └── index.ctp │ │ ├── PostTypes │ │ │ ├── add.ctp │ │ │ ├── edit.ctp │ │ │ ├── index.ctp │ │ │ └── view.ctp │ │ ├── Settings │ │ │ └── index.ctp │ │ └── Users │ │ │ ├── forgot.ctp │ │ │ ├── login.ctp │ │ │ └── reset.ctp │ ├── Cell │ │ └── Dashboard │ │ │ ├── about_us.ctp │ │ │ ├── getting_help.ctp │ │ │ ├── getting_started.ctp │ │ │ ├── latest_posts.ctp │ │ │ ├── plugins.ctp │ │ │ └── welcome.ctp │ ├── Email │ │ ├── html │ │ │ └── reset_password.ctp │ │ └── text │ │ │ └── reset_password.ctp │ └── Layout │ │ ├── Email │ │ ├── html │ │ │ └── default.ctp │ │ └── text │ │ │ └── default.ctp │ │ ├── default.ctp │ │ └── login.ctp └── View │ ├── Cell │ └── DashboardCell.php │ └── Helper │ ├── HeaderLeftMenuHelper.php │ ├── MainMenuHelper.php │ ├── NavbarMenuHelper.php │ └── PostTypesHelper.php ├── tests ├── App │ ├── Model │ │ ├── Entity │ │ │ ├── Article.php │ │ │ ├── Author.php │ │ │ └── Book.php │ │ └── Table │ │ │ ├── ArticlesTable.php │ │ │ ├── AuthorsTable.php │ │ │ └── BooksTable.php │ ├── Template │ │ ├── Error │ │ │ └── error500.ctp │ │ └── Layout │ │ │ └── error.ctp │ └── View │ │ └── AppView.php ├── Fixture │ ├── BooksFixture.php │ └── UsersFixture.php ├── TestCase │ ├── Controller │ │ ├── Admin │ │ │ ├── DashboardControllerTest.php │ │ │ ├── NotificationsControllerTest.php │ │ │ ├── PostTypesControllerTest.php │ │ │ ├── SettingsControllerTest.php │ │ │ └── UsersControllerTest.php │ │ └── Component │ │ │ ├── CakeAdminComponentTest.php │ │ │ └── PostTypesComponentTest.php │ ├── Model │ │ └── Table │ │ │ └── AdministratorsTableTest.php │ └── Shell │ │ └── AdminShellTest.php ├── bootstrap.php └── config │ └── routes.php └── webroot ├── css ├── base.css ├── cake.css └── custom.css └── empty /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | tmp/ 4 | 5 | *.mo 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/composer.json -------------------------------------------------------------------------------- /config/Migrations/20150611195820_cakeadmin_initial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/config/Migrations/20150611195820_cakeadmin_initial.php -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/config/routes.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Controller/Admin/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Controller/Admin/DashboardController.php -------------------------------------------------------------------------------- /src/Controller/Admin/NotificationsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Controller/Admin/NotificationsController.php -------------------------------------------------------------------------------- /src/Controller/Admin/PostTypesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Controller/Admin/PostTypesController.php -------------------------------------------------------------------------------- /src/Controller/Admin/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Controller/Admin/SettingsController.php -------------------------------------------------------------------------------- /src/Controller/Admin/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Controller/Admin/UsersController.php -------------------------------------------------------------------------------- /src/Controller/AppController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Controller/AppController.php -------------------------------------------------------------------------------- /src/Controller/Component/CakeAdminComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Controller/Component/CakeAdminComponent.php -------------------------------------------------------------------------------- /src/Controller/Component/PostTypesComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Controller/Component/PostTypesComponent.php -------------------------------------------------------------------------------- /src/Locale/CakeAdmin.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Locale/CakeAdmin.pot -------------------------------------------------------------------------------- /src/Locale/pt_BR/CakeAdmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Locale/pt_BR/CakeAdmin.po -------------------------------------------------------------------------------- /src/Mailer/CakeAdminMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Mailer/CakeAdminMailer.php -------------------------------------------------------------------------------- /src/Model/Entity/Administrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Model/Entity/Administrator.php -------------------------------------------------------------------------------- /src/Model/Table/AdministratorsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Model/Table/AdministratorsTable.php -------------------------------------------------------------------------------- /src/Shell/AdminShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Shell/AdminShell.php -------------------------------------------------------------------------------- /src/Shell/CainstallShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Shell/CainstallShell.php -------------------------------------------------------------------------------- /src/Template/Admin/Dashboard/index.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Admin/Dashboard/index.ctp -------------------------------------------------------------------------------- /src/Template/Admin/Notifications/index.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Admin/Notifications/index.ctp -------------------------------------------------------------------------------- /src/Template/Admin/PostTypes/add.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Admin/PostTypes/add.ctp -------------------------------------------------------------------------------- /src/Template/Admin/PostTypes/edit.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Admin/PostTypes/edit.ctp -------------------------------------------------------------------------------- /src/Template/Admin/PostTypes/index.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Admin/PostTypes/index.ctp -------------------------------------------------------------------------------- /src/Template/Admin/PostTypes/view.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Template/Admin/Settings/index.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Admin/Settings/index.ctp -------------------------------------------------------------------------------- /src/Template/Admin/Users/forgot.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Admin/Users/forgot.ctp -------------------------------------------------------------------------------- /src/Template/Admin/Users/login.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Admin/Users/login.ctp -------------------------------------------------------------------------------- /src/Template/Admin/Users/reset.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Admin/Users/reset.ctp -------------------------------------------------------------------------------- /src/Template/Cell/Dashboard/about_us.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Cell/Dashboard/about_us.ctp -------------------------------------------------------------------------------- /src/Template/Cell/Dashboard/getting_help.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Cell/Dashboard/getting_help.ctp -------------------------------------------------------------------------------- /src/Template/Cell/Dashboard/getting_started.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Cell/Dashboard/getting_started.ctp -------------------------------------------------------------------------------- /src/Template/Cell/Dashboard/latest_posts.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Cell/Dashboard/latest_posts.ctp -------------------------------------------------------------------------------- /src/Template/Cell/Dashboard/plugins.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Cell/Dashboard/plugins.ctp -------------------------------------------------------------------------------- /src/Template/Cell/Dashboard/welcome.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Cell/Dashboard/welcome.ctp -------------------------------------------------------------------------------- /src/Template/Email/html/reset_password.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Email/html/reset_password.ctp -------------------------------------------------------------------------------- /src/Template/Email/text/reset_password.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Email/text/reset_password.ctp -------------------------------------------------------------------------------- /src/Template/Layout/Email/html/default.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Layout/Email/html/default.ctp -------------------------------------------------------------------------------- /src/Template/Layout/Email/text/default.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Layout/Email/text/default.ctp -------------------------------------------------------------------------------- /src/Template/Layout/default.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Layout/default.ctp -------------------------------------------------------------------------------- /src/Template/Layout/login.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/Template/Layout/login.ctp -------------------------------------------------------------------------------- /src/View/Cell/DashboardCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/View/Cell/DashboardCell.php -------------------------------------------------------------------------------- /src/View/Helper/HeaderLeftMenuHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/View/Helper/HeaderLeftMenuHelper.php -------------------------------------------------------------------------------- /src/View/Helper/MainMenuHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/View/Helper/MainMenuHelper.php -------------------------------------------------------------------------------- /src/View/Helper/NavbarMenuHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/View/Helper/NavbarMenuHelper.php -------------------------------------------------------------------------------- /src/View/Helper/PostTypesHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/src/View/Helper/PostTypesHelper.php -------------------------------------------------------------------------------- /tests/App/Model/Entity/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/App/Model/Entity/Article.php -------------------------------------------------------------------------------- /tests/App/Model/Entity/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/App/Model/Entity/Author.php -------------------------------------------------------------------------------- /tests/App/Model/Entity/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/App/Model/Entity/Book.php -------------------------------------------------------------------------------- /tests/App/Model/Table/ArticlesTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/App/Model/Table/ArticlesTable.php -------------------------------------------------------------------------------- /tests/App/Model/Table/AuthorsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/App/Model/Table/AuthorsTable.php -------------------------------------------------------------------------------- /tests/App/Model/Table/BooksTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/App/Model/Table/BooksTable.php -------------------------------------------------------------------------------- /tests/App/Template/Error/error500.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/App/Template/Layout/error.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/App/View/AppView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/App/View/AppView.php -------------------------------------------------------------------------------- /tests/Fixture/BooksFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/Fixture/BooksFixture.php -------------------------------------------------------------------------------- /tests/Fixture/UsersFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/Fixture/UsersFixture.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Admin/DashboardControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/TestCase/Controller/Admin/DashboardControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Admin/NotificationsControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/TestCase/Controller/Admin/NotificationsControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Admin/PostTypesControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/TestCase/Controller/Admin/PostTypesControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Admin/SettingsControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/TestCase/Controller/Admin/SettingsControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Admin/UsersControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/TestCase/Controller/Admin/UsersControllerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Component/CakeAdminComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/TestCase/Controller/Component/CakeAdminComponentTest.php -------------------------------------------------------------------------------- /tests/TestCase/Controller/Component/PostTypesComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/TestCase/Controller/Component/PostTypesComponentTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Table/AdministratorsTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/TestCase/Model/Table/AdministratorsTableTest.php -------------------------------------------------------------------------------- /tests/TestCase/Shell/AdminShellTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/TestCase/Shell/AdminShellTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/tests/config/routes.php -------------------------------------------------------------------------------- /webroot/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/webroot/css/base.css -------------------------------------------------------------------------------- /webroot/css/cake.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/webroot/css/cake.css -------------------------------------------------------------------------------- /webroot/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakemanager/cakephp-cakeadmin/HEAD/webroot/css/custom.css -------------------------------------------------------------------------------- /webroot/empty: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------