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
|
|
|
|
*/
|
2022-12-17 21:12:10 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-12-18 23:21:11 +00:00
|
|
|
namespace Dotclear\Plugin\pacKman;
|
2021-08-16 20:48:26 +00:00
|
|
|
|
2022-12-17 21:12:10 +00:00
|
|
|
/* dotclear ns */
|
|
|
|
use dcAdmin;
|
|
|
|
use dcCore;
|
|
|
|
use dcFavorites;
|
|
|
|
use dcPage;
|
2023-01-20 20:54:39 +00:00
|
|
|
use dcNsProcess;
|
2022-12-17 21:12:10 +00:00
|
|
|
|
2023-01-21 16:04:44 +00:00
|
|
|
class Backend extends dcNsProcess
|
2022-12-17 21:12:10 +00:00
|
|
|
{
|
2023-01-07 14:41:21 +00:00
|
|
|
private static $pid = '';
|
2022-12-18 23:21:11 +00:00
|
|
|
|
|
|
|
public static function init(): bool
|
2022-12-17 21:12:10 +00:00
|
|
|
{
|
2022-12-18 23:21:11 +00:00
|
|
|
if (defined('DC_CONTEXT_ADMIN')) {
|
2023-01-07 14:41:21 +00:00
|
|
|
self::$pid = basename(dirname(__DIR__));
|
2022-12-18 23:21:11 +00:00
|
|
|
self::$init = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return self::$init;
|
2022-12-17 21:12:10 +00:00
|
|
|
}
|
2021-08-16 20:48:26 +00:00
|
|
|
|
2023-01-20 20:54:39 +00:00
|
|
|
public static function process(): bool
|
2022-12-17 21:12:10 +00:00
|
|
|
{
|
2022-12-18 23:21:11 +00:00
|
|
|
if (!self::$init) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-12-17 21:12:10 +00:00
|
|
|
dcCore::app()->addBehavior('adminDashboardFavoritesV2', function (dcFavorites $favs): void {
|
2023-01-07 14:41:21 +00:00
|
|
|
$favs->register(self::$pid, [
|
2022-12-17 21:12:10 +00:00
|
|
|
'title' => __('Packages repository'),
|
2023-01-07 14:41:21 +00:00
|
|
|
'url' => dcCore::app()->adminurl->get('admin.plugin.' . self::$pid, [], '#packman-repository-repository'),
|
|
|
|
'small-icon' => [dcPage::getPF(self::$pid . '/icon.svg'), dcPage::getPF(self::$pid . '/icon-dark.svg')],
|
|
|
|
'large-icon' => [dcPage::getPF(self::$pid . '/icon.svg'), dcPage::getPF(self::$pid . '/icon-dark.svg')],
|
2022-12-17 21:12:10 +00:00
|
|
|
//'permissions' => dcCore::app()->auth->isSuperAdmin(),
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
|
|
|
dcCore::app()->menu[dcAdmin::MENU_PLUGINS]->addItem(
|
|
|
|
__('Packages repository'),
|
2023-01-07 14:41:21 +00:00
|
|
|
dcCore::app()->adminurl->get('admin.plugin.' . self::$pid) . '#packman-repository-repository',
|
|
|
|
[dcPage::getPF(self::$pid . '/icon.svg'), dcPage::getPF(self::$pid . '/icon-dark.svg')],
|
|
|
|
preg_match('/' . preg_quote(dcCore::app()->adminurl->get('admin.plugin.' . self::$pid)) . '(&.*)?$/', $_SERVER['REQUEST_URI']),
|
2022-12-17 21:12:10 +00:00
|
|
|
dcCore::app()->auth->isSuperAdmin()
|
|
|
|
);
|
2023-01-06 00:17:08 +00:00
|
|
|
|
|
|
|
return true;
|
2022-12-17 21:12:10 +00:00
|
|
|
}
|
|
|
|
}
|