2021-09-08 22:53:13 +00:00
|
|
|
<?php
|
2021-09-08 23:02:10 +00:00
|
|
|
/**
|
2021-09-08 23:05:05 +00:00
|
|
|
* @brief noodles, a plugin for Dotclear 2
|
2022-11-17 20:00:42 +00:00
|
|
|
*
|
2021-09-08 23:02:10 +00:00
|
|
|
* @package Dotclear
|
2021-09-08 23:05:05 +00:00
|
|
|
* @subpackage Plugin
|
2022-11-17 20:00:42 +00:00
|
|
|
*
|
2021-09-08 23:05:05 +00:00
|
|
|
* @author Jean-Christian Denis and contributors
|
2022-11-17 20:00:42 +00:00
|
|
|
*
|
2021-09-08 23:02:10 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2023-05-04 20:51:48 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Dotclear\Plugin\noodles;
|
|
|
|
|
|
|
|
use dcAdmin;
|
|
|
|
use dcCore;
|
|
|
|
use dcMenu;
|
|
|
|
use dcNsProcess;
|
|
|
|
use dcPage;
|
|
|
|
|
|
|
|
class Backend extends dcNsProcess
|
|
|
|
{
|
|
|
|
public static function init(): bool
|
|
|
|
{
|
|
|
|
static::$init = defined('DC_CONTEXT_ADMIN')
|
|
|
|
&& My::phpCompliant()
|
|
|
|
&& !is_null(dcCore::app()->auth) && !is_null(dcCore::app()->blog)
|
|
|
|
&& dcCore::app()->auth->check(dcCore::app()->auth->makePermissions([
|
|
|
|
dcCore::app()->auth::PERMISSION_CONTENT_ADMIN,
|
|
|
|
]), dcCore::app()->blog->id);
|
|
|
|
|
|
|
|
return static::$init;
|
|
|
|
}
|
2021-09-08 22:53:13 +00:00
|
|
|
|
2023-05-04 20:51:48 +00:00
|
|
|
public static function process(): bool
|
|
|
|
{
|
|
|
|
if (!static::$init) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_null(dcCore::app()->auth)
|
|
|
|
|| is_null(dcCore::app()->blog)
|
|
|
|
|| is_null(dcCore::app()->adminurl)
|
|
|
|
|| !(dcCore::app()->menu[dcAdmin::MENU_PLUGINS] instanceof dcMenu)
|
|
|
|
) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
dcCore::app()->menu[dcAdmin::MENU_PLUGINS]->addItem(
|
|
|
|
My::name(),
|
|
|
|
dcCore::app()->adminurl->get('admin.plugin.' . My::id()),
|
|
|
|
dcPage::getPF(My::id() . '/icon.png'),
|
|
|
|
preg_match('/' . preg_quote(dcCore::app()->adminurl->get('admin.plugin.' . My::id())) . '(&.*)?$/', $_SERVER['REQUEST_URI']),
|
|
|
|
dcCore::app()->auth->check(dcCore::app()->auth->makePermissions([dcCore::app()->auth::PERMISSION_CONTENT_ADMIN]), dcCore::app()->blog->id)
|
|
|
|
);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|