2021-08-16 20:48:26 +00:00
|
|
|
<?php
|
2021-09-02 20:14:32 +00:00
|
|
|
/**
|
|
|
|
* @brief pacKman, a plugin for Dotclear 2
|
2021-11-01 10:39:02 +00:00
|
|
|
*
|
2021-09-02 20:14:32 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2021-11-01 10:39:02 +00:00
|
|
|
*
|
2021-09-02 20:14:32 +00:00
|
|
|
* @author Jean-Christian Denis
|
2021-11-01 10:39:02 +00:00
|
|
|
*
|
2021-09-02 20:14:32 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2021-08-16 20:48:26 +00:00
|
|
|
if (!defined('DC_CONTEXT_ADMIN')) {
|
2021-08-17 21:12:33 +00:00
|
|
|
return null;
|
2021-08-16 20:48:26 +00:00
|
|
|
}
|
|
|
|
|
2022-11-12 20:42:05 +00:00
|
|
|
dcCore::app()->blog->settings->addNamespace('pacKman');
|
2021-08-16 20:48:26 +00:00
|
|
|
|
2022-11-12 20:42:05 +00:00
|
|
|
dcCore::app()->addBehavior('adminDashboardFavoritesV2', ['packmanBehaviors', 'adminDashboardFavorites']);
|
2021-08-16 20:48:26 +00:00
|
|
|
|
2022-11-12 20:42:05 +00:00
|
|
|
dcCore::app()->menu[dcAdmin::MENU_PLUGINS]->addItem(
|
2021-08-17 21:12:33 +00:00
|
|
|
__('Packages repository'),
|
|
|
|
'plugin.php?p=pacKman#packman-repository-repository',
|
2022-02-01 20:44:08 +00:00
|
|
|
[dcPage::getPF('pacKman/icon.svg'), dcPage::getPF('pacKman/icon-dark.svg')],
|
2021-08-17 21:12:33 +00:00
|
|
|
preg_match(
|
|
|
|
'/plugin.php\?p=pacKman(&.*)?$/',
|
|
|
|
$_SERVER['REQUEST_URI']
|
|
|
|
),
|
2022-11-12 20:42:05 +00:00
|
|
|
dcCore::app()->auth->isSuperAdmin()
|
2021-08-16 20:48:26 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
class packmanBehaviors
|
|
|
|
{
|
2022-11-12 20:42:05 +00:00
|
|
|
public static function adminDashboardFavorites(dcFavorites $favs): void
|
2021-08-17 21:12:33 +00:00
|
|
|
{
|
|
|
|
$favs->register('pacKman', [
|
2021-11-01 10:39:02 +00:00
|
|
|
'title' => __('Packages repository'),
|
|
|
|
'url' => 'plugin.php?p=pacKman#packman-repository-repository',
|
2022-02-01 20:44:08 +00:00
|
|
|
'small-icon' => [dcPage::getPF('pacKman/icon.svg'), dcPage::getPF('pacKman/icon-dark.svg')],
|
|
|
|
'large-icon' => [dcPage::getPF('pacKman/icon.svg'), dcPage::getPF('pacKman/icon-dark.svg')],
|
2022-11-12 20:42:05 +00:00
|
|
|
'permissions' => dcCore::app()->auth->isSuperAdmin(),
|
2021-11-01 10:39:02 +00:00
|
|
|
'active_cb' => [
|
|
|
|
'packmanBehaviors',
|
2021-08-17 21:12:33 +00:00
|
|
|
'adminDashboardFavoritesActive'
|
2021-08-23 13:07:29 +00:00
|
|
|
]
|
2021-08-17 21:12:33 +00:00
|
|
|
]);
|
|
|
|
}
|
2021-08-16 20:48:26 +00:00
|
|
|
|
2021-11-08 21:19:07 +00:00
|
|
|
public static function adminDashboardFavoritesActive(string $request, array $params): bool
|
2021-08-17 21:12:33 +00:00
|
|
|
{
|
2021-11-01 10:39:02 +00:00
|
|
|
return $request == 'plugin.php'
|
|
|
|
&& isset($params['p'])
|
2021-08-17 21:12:33 +00:00
|
|
|
&& $params['p'] == 'pacKman';
|
|
|
|
}
|
2021-11-06 13:56:29 +00:00
|
|
|
}
|