mirror of
https://github.com/sruupl/batflat.git
synced 2026-02-09 13:36:45 +01:00
25 lines
699 B
PHP
25 lines
699 B
PHP
<?php
|
|
/**
|
|
* This file is part of Batflat ~ the lightweight, fast and easy CMS
|
|
*
|
|
* @author Paweł Klockiewicz <klockiewicz@sruu.pl>
|
|
* @author Wojciech Król <krol@sruu.pl>
|
|
* @copyright 2017 Paweł Klockiewicz, Wojciech Król <Sruu.pl>
|
|
* @license https://batflat.org/license
|
|
* @link https://batflat.org
|
|
*/
|
|
|
|
return [
|
|
'name' => 'Debug bar',
|
|
'description' => 'Shows helpful information for developers',
|
|
'author' => 'Sruu.pl',
|
|
'version' => '1.0',
|
|
'compatibility' => '1.3.*',
|
|
'icon' => 'bug',
|
|
|
|
'install' => function () use ($core) {
|
|
},
|
|
'uninstall' => function () use ($core) {
|
|
}
|
|
];
|