bvrignaud / ci4-admin
Admin module for CodeIgniter 4 based on IonAuth and AdminLTE
Installs: 1 495
Dependents: 0
Suggesters: 0
Security: 0
Stars: 25
Watchers: 8
Forks: 8
Open Issues: 2
Requires (Dev)
This package is auto-updated.
Last update: 2025-03-06 12:51:16 UTC
README
Admin module for CodeIgniter 4 based on AdminLTE 3
Installing ci-admin
Before installing, please check that you are meeting the minimum server requirements.
There are different ways to install this package.
- With composer
$ composer require bvrignaud/ci4-admin
- With Git:
my-project$ git clone https://github.com/bvrignaud/ci4-admin.git
Then in your Config/Autoload.php, add this :
'IonAuth' => ROOTPATH . 'YOUR-ION_AUTH-FOLDER', 'Admin' => ROOTPATH . 'ci4-admin',
- Download the archive, and move folder from this package to the root folder:
CI # → Root Directory ├── application/ ├── ion-auth/ # → Ion-auth directory ├── public ├──...
Then in your Config/Autoload.php, add this :
'IonAuth' => ROOTPATH . 'YOUR-ION_AUTH-FOLDER', 'Admin' => ROOTPATH . 'ci4-admin',
Install css/js dependencies
$ cd public/assets
$ yarn add admin-lte@v3
Use it
Add routes configs in 'Config\Routes.php':
$routes->group('auth', ['namespace' => 'IonAuth\Controllers'], function ($routes) { $routes->get('/', 'Auth::index'); $routes->add('login', 'Auth::login'); $routes->get('logout', 'Auth::logout'); $routes->get('forgot_password', 'Auth::forgot_password'); }); $routes->group('admin', ['namespace' => 'Admin\Controllers'], function ($routes) { $routes->get('/', 'Home::index'); $routes->group('users', ['namespace' => 'Admin\Controllers'], function ($routes) { $routes->get('/', 'Users::index'); $routes->add('create', 'Users::createUser'); $routes->add('edit/(:num)', 'Users::edit/$1'); $routes->add('activate/(:num)', 'Users::activate/$1'); $routes->add('deactivate/(:num)', 'Users::deactivate/$1'); $routes->add('edit_group/(:num)', 'Users::editGroup/$1'); $routes->add('create_group', 'Users::createGroup'); }); $routes->group('informations', ['namespace' => 'Admin\Controllers'], function ($routes) { $routes->get('/', 'Informations::index'); $routes->get('displayPhpInfo', 'Informations::displayPhpInfo'); $routes->add('exportDatabase', 'Informations::exportDatabase'); $routes->post('sendEmailForTest', 'Informations::sendEmailForTest'); }); });