funayaki / cakephp-adminlte-theme
CakePHP 3.x AdminLTE Theme.
Installs: 562
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 111
Open Issues: 1
Language:JavaScript
Type:cakephp-plugin
Requires
- php: >=5.4.16
- cakephp/cakephp: ~3.0
Requires (Dev)
- phpunit/phpunit: ~4.1
This package is not auto-updated.
Last update: 2024-10-27 05:30:35 UTC
README
Installation
You can install using composer.
composer require funayaki/cakephp-adminlte-theme
Enable Plugin
// config/bootstrap.php Plugin::load('AdminLTE');
Enable Form
// src/View/AppView.php public function initialize() { $this->loadHelper('Breadcrumbs', ['className' => 'AdminLTE.Breadcrumbs']); $this->loadHelper('Form', ['className' => 'AdminLTE.Form']); }
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request