该软件包最新版本(0.1.1)没有可用的许可证信息。

CakePHP 的 AdminLTE 插件

安装: 3

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 2

分支: 0

公开问题: 0

语言:CSS

类型:cakephp-plugin

0.1.1 2016-08-25 02:42 UTC

This package is not auto-updated.

Last update: 2024-09-14 19:42:11 UTC


README

如何... ?

安装

您可以使用 composer 将此插件安装到您的 CakePHP 应用程序中。

composer require fredericomartini/adminlte
// in config/bootstrap.php
Plugin::load('AdminLTE');
// in your AppController
public function beforeRender(Event $event)
{
    $this->viewBuilder()->theme('AdminLTE');
}