1. Go to this page and download the library: Download cgm/config-admin library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
public function onBootstrap($e)
{
$events = $e->getApplication()->getEventManager()->getSharedManager();
$events->attach('CgmConfigAdmin\Service\ConfigAdmin', 'previewConfigValues', function($e) {
$configAdminService = $e->getTarget();
$configValues = $e->getParam('configValues');
// Do what you will...
});
$events->attach('CgmConfigAdmin\Service\ConfigAdmin','previewConfigValues.post', function($e) {
$configAdminService = $e->getTarget();
$configValues = $e->getParam('configValues');
// Do what you will...
});
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.