funayaki / cakephp-adminlte-theme
CakePHP 3.x AdminLTE 主题。
1.0.8
2018-03-31 00:50 UTC
Requires
- php: >=5.4.16
- cakephp/cakephp: ~3.0
Requires (Dev)
- phpunit/phpunit: ~4.1
This package is not auto-updated.
Last update: 2024-09-15 05:02:53 UTC
README
安装
您可以使用 composer 进行安装。
composer require funayaki/cakephp-adminlte-theme
启用插件
// config/bootstrap.php Plugin::load('AdminLTE');
启用表单
// src/View/AppView.php public function initialize() { $this->loadHelper('Breadcrumbs', ['className' => 'AdminLTE.Breadcrumbs']); $this->loadHelper('Form', ['className' => 'AdminLTE.Form']); }
贡献
- 进行分支
- 创建您的功能分支 (
git checkout -b my-new-feature
) - 提交您的更改 (
git commit -am '添加一些功能'
) - 推送到分支 (
git push origin my-new-feature
) - 创建新的 Pull Request