-
Notifications
You must be signed in to change notification settings - Fork 111
Installation
Maicon Pinto edited this page Jun 22, 2016
·
4 revisions
You can install using composer.
composer require maiconpinto/cakephp-adminlte-theme
// config/bootstrap.php
Plugin::load('AdminLTE', ['bootstrap' => true, 'routes' => true]);
// src/Controller/AppController.php
public function beforeRender(Event $event)
{
$this->viewBuilder()->theme('AdminLTE');
}
// src/View/AppView.php
public function initialize()
{
$this->loadHelper('Form', ['className' => 'AdminLTE.Form']);
}