licenseBootstrap/_admin.php

67 lines
1.9 KiB
PHP
Raw Normal View History

2021-08-17 21:25:45 +00:00
<?php
2021-09-02 19:43:35 +00:00
/**
* @brief licenseBootstrap, a plugin for Dotclear 2
2022-11-20 21:36:32 +00:00
*
2021-09-02 19:43:35 +00:00
* @package Dotclear
* @subpackage Plugin
2022-11-20 21:36:32 +00:00
*
2021-09-02 19:43:35 +00:00
* @author Jean-Christian Denis
2022-11-20 21:36:32 +00:00
*
2021-09-02 19:43:35 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-08-17 21:25:45 +00:00
if (!defined('DC_CONTEXT_ADMIN')) {
2021-08-17 21:46:17 +00:00
return null;
2021-08-17 21:25:45 +00:00
}
2022-11-20 21:36:32 +00:00
dcCore::app()->blog->settings->addNamespace('licenseBootstrap');
2021-08-17 21:25:45 +00:00
2022-11-20 21:36:32 +00:00
dcCore::app()->addBehavior('adminDashboardFavoritesV2', [
'licenseBootstrapBehaviors', 'adminDashboardFavorites',
2021-08-17 21:46:17 +00:00
]);
2021-08-17 21:25:45 +00:00
2022-11-20 21:36:32 +00:00
dcCore::app()->addBehavior('packmanBeforeCreatePackage', [
'licenseBootstrapBehaviors', 'packmanBeforeCreatePackage',
2021-08-17 21:46:17 +00:00
]);
2021-08-17 21:25:45 +00:00
2022-11-20 21:36:32 +00:00
dcCore::app()->menu[dcAdmin::MENU_PLUGINS]->addItem(
2021-08-17 21:46:17 +00:00
__('License bootstrap'),
'plugin.php?p=licenseBootstrap',
'index.php?pf=licenseBootstrap/icon.png',
preg_match(
'/plugin.php\?p=licenseBootstrap(&.*)?$/',
$_SERVER['REQUEST_URI']
),
2022-11-20 21:36:32 +00:00
dcCore::app()->auth->isSuperAdmin()
2021-08-17 21:25:45 +00:00
);
class licenseBootstrapBehaviors
{
2022-11-20 21:36:32 +00:00
public static function adminDashboardFavorites($favs)
2021-08-17 21:46:17 +00:00
{
2022-11-20 21:36:32 +00:00
$favs->register('licenseBootstrap', [
'title' => __('License bootstrap'),
'url' => 'plugin.php?p=licenseBootstrap',
'small-icon' => 'index.php?pf=licenseBootstrap/icon.png',
'large-icon' => 'index.php?pf=licenseBootstrap/icon-big.png',
'permissions' => dcCore::app()->auth->isSuperAdmin(),
'active_cb' => [
'licenseBootstrapBehaviors',
'adminDashboardFavoritesActive',
],
]);
2021-08-17 21:46:17 +00:00
}
2021-08-17 21:25:45 +00:00
2021-08-17 21:46:17 +00:00
public static function adminDashboardFavoritesActive($request, $params)
{
2022-11-20 21:36:32 +00:00
return $request == 'plugin.php'
&& isset($params['p'])
2021-08-17 21:46:17 +00:00
&& $params['p'] == 'licenseBootstrap';
}
2021-08-17 21:25:45 +00:00
2022-11-20 21:36:32 +00:00
public static function packmanBeforeCreatePackage($module)
2021-08-17 21:46:17 +00:00
{
2022-11-20 21:36:32 +00:00
licenseBootstrap::addLicense($module);
2021-08-17 21:46:17 +00:00
}
2022-11-20 21:36:32 +00:00
}