chcnet / admin-lte
AdminLTE 2.0 Theme plugin for CakePHP
Installs: 128
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 24
Language:JavaScript
Type:cakephp-plugin
Requires
- cakephp/cakephp: 4.*
Requires (Dev)
- phpunit/phpunit: ^8.0
- dev-master
- dev-dependabot/npm_and_yarn/webroot/json5-1.0.2
- dev-dependabot/npm_and_yarn/webroot/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/webroot/engine.io-6.2.1
- dev-dependabot/npm_and_yarn/webroot/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/webroot/jszip-3.7.0
- dev-dependabot/npm_and_yarn/webroot/moment-timezone-0.5.37
- dev-dependabot/npm_and_yarn/webroot/terser-4.8.1
- dev-dependabot/npm_and_yarn/webroot/moment-2.29.4
- dev-dependabot/npm_and_yarn/webroot/jquery-validation-1.19.5
- dev-dependabot/npm_and_yarn/webroot/shell-quote-1.7.3
- dev-dependabot/npm_and_yarn/webroot/node-sass-7.0.0
- dev-dependabot/npm_and_yarn/webroot/undefsafe-2.0.5
- dev-dependabot/npm_and_yarn/webroot/datatables.net-1.11.3
- dev-dependabot/npm_and_yarn/webroot/set-value-4.0.1
- dev-dependabot/npm_and_yarn/webroot/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/webroot/browserslist-4.16.6
- dev-dependabot/npm_and_yarn/webroot/chart.js-2.9.4
- dev-dependabot/npm_and_yarn/webroot/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/webroot/lodash-4.17.21
- dev-dependabot/npm_and_yarn/webroot/y18n-3.2.2
- dev-dependabot/npm_and_yarn/webroot/ini-1.3.8
- dev-dependabot/npm_and_yarn/webroot/jquery-3.5.0
- dev-dependabot/npm_and_yarn/webroot/acorn-5.7.4
- dev-whitesource/configure
This package is auto-updated.
Last update: 2025-03-05 12:32:42 UTC
README
AdminLTE 3 Theme for CakePHP 4.x
Installation
This is a Theme Plugin for CakePHP 4.x and higher. It contains the complete and unaltered AdminLTE Package from https://adminlte.io. Please refer to https://adminlte.io/themes/AdminLTE/documentation/index.html for Documentation, how to use this theme. The Package contains Bootstrap 3, jQiery 1.11+ and all other plugins mentioned there. So it is not necessary to include neither bootstrap nor jquery for proper function of this composer package.
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require chcnet/admin-lte
CakePHP usage
To start using this theme, set it up by adding into your src/Controller/AppController.php:
class AppController extends Controller
{
...
public function beforeRender(\Cake\Event\EventInterface $event)
{
$this->viewBuilder()->setTheme('AdminLTE');
}
...
}
Then prepre a proper default.php in AdminLTE style in templates/layout/. Please follow the default Demo Layout as starting point for your website layout: https://adminlte.io/themes/AdminLTE/index2.html.
Do not forget to search and replace all occurrences of "../../" with "/AdminLTE/" (mention the closing bracket).
That should get you up and running :-)
Happy coding.