There is no license information available for the latest version (0.1.1) of this package.

AdminLTE plugin for CakePHP

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Language:CSS

Type:cakephp-plugin

0.1.1 2016-08-25 02:42 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:53:10 UTC


README

How to... ?

Installation

You can install this plugin into your CakePHP application using composer.

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