funayaki/cakephp-adminlte-theme

CakePHP 3.x AdminLTE Theme.

Installs: 562

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 108

Open Issues: 1

Language:JavaScript

Type:cakephp-plugin

1.0.8 2018-03-31 00:50 UTC

This package is not auto-updated.

Last update: 2024-04-14 02:02:51 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

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request