jelix / adminui-module
module for a jelix application providing an admin interface made with the AdminLte theme. Other theme can be made
Installs: 1 352
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Open Issues: 1
Type:jelix-module
Requires
- php: >=7.4
- almasaeed2010/adminlte: ~3.2.0
README
This is a module for Jelix, providing an interface for an administration application. It uses the AdminLTE theme 3.2.0, and is entirely customizable through APIs.
You can easily add content into the sidebar, the navbar or the dashboard, without manipulating HTML.
The module provide also widgets for jForms, that generate HTML for Bootstrap and CSS of AdminLTE.
This module is for Jelix 1.7.10 and higher.
Setting up the module
The best method is to use Composer.
In a commande line inside your project, execute:
composer require "jelix/adminui-module"
Launch the configurator for your application to enable the module
php dev.php module:configure adminui
It will ask you how to install web assets (JS and CSS files):
- by copying them into the www directory of your application,
- or by doing nothing if you define into your web server configuration,
- an alias named
adminui-assets
tovendor/jelix/adminui-module/modules/adminui/www/adminui-assets/
. - an alias named
adminlte-assets
tovendor/vendor/almasaeed2010/adminlte/
.
- an alias named
The configurator will create also some parameters into your application configuration:
- it defines the jelix theme to
adminlte
- it redefines the default html and htmlerror response
- it configures web assets
You can change some configuration parameters into the app/system/mainconfig.ini.php
:
[adminui] ; the version of your application, appearing at the bottom bar appVersion=1.2.3 ; the logo of your application htmlLogo="<b>Admin</b>UI" ; the logo of your application when the left sidebar is minimized htmlLogoMini="<b>A</b>UI" ; the copyright informations, appearing at the bottom bar htmlCopyright="<strong>Copyright © 2024 <a href="https://jelix.org">Jelix</a>.</strong> MIT licence." ; the template used to display the dashboard. If empty, the dashboard may be empty dashboardTemplate="test~dashboard"
You should also setup the url of the dashboard into yourapp/app/system/urls.xml
like this:
<url pathinfo="/" module="adminui" action="default:index"/>
Here the dashboard is at the root of the web site, but you can setup any URL.
After configuring the module, you should launch the installer to activate the module:
php install/installer.php
Usage
See the doc/
directory
Tests
An application has been made into the test directory. See its README.md to launch it.
It contains many examples. Don't hesitate to read the code.