fix permissions

This commit is contained in:
Jean-Christian Paul Denis 2022-12-02 01:04:39 +01:00
parent f16cdeb673
commit 0d1f74998c
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
3 changed files with 25 additions and 23 deletions

View File

@ -19,7 +19,7 @@ dcCore::app()->menu[dcAdmin::MENU_PLUGINS]->addItem(
dcCore::app()->adminurl->get('admin.plugin.myUrlHandlers'), dcCore::app()->adminurl->get('admin.plugin.myUrlHandlers'),
dcPage::getPF('myUrlHandlers/icon.png'), dcPage::getPF('myUrlHandlers/icon.png'),
preg_match('/' . preg_quote(dcCore::app()->adminurl->get('admin.plugin.myUrlHandlers')) . '(&.*)?$/', $_SERVER['REQUEST_URI']), preg_match('/' . preg_quote(dcCore::app()->adminurl->get('admin.plugin.myUrlHandlers')) . '(&.*)?$/', $_SERVER['REQUEST_URI']),
dcCore::app()->auth->check(dcAuth::PERMISSION_CONTENT_ADMIN, dcCore::app()->blog->id) dcCore::app()->auth->check(dcCore::app()->auth->makePermissions([dcAuth::PERMISSION_CONTENT_ADMIN]), dcCore::app()->blog->id)
); );
dcCore::app()->addBehavior('adminDashboardFavoritesV2', function ($favs) { dcCore::app()->addBehavior('adminDashboardFavoritesV2', function ($favs) {
@ -28,6 +28,6 @@ dcCore::app()->addBehavior('adminDashboardFavoritesV2', function ($favs) {
'url' => dcCore::app()->adminurl->get('admin.plugin.myUrlHandlers'), 'url' => dcCore::app()->adminurl->get('admin.plugin.myUrlHandlers'),
'small-icon' => dcPage::getPF('myUrlHandlers/icon.png'), 'small-icon' => dcPage::getPF('myUrlHandlers/icon.png'),
'large-icon' => dcPage::getPF('myUrlHandlers/icon-big.png'), 'large-icon' => dcPage::getPF('myUrlHandlers/icon-big.png'),
'permissions' => dcAuth::PERMISSION_CONTENT_ADMIN, 'permissions' => dcCore::app()->auth->makePermissions([dcAuth::PERMISSION_CONTENT_ADMIN]),
]); ]);
}); });

View File

@ -21,7 +21,9 @@ $this->registerModule(
'2022.11.26', '2022.11.26',
[ [
'requires' => [['core', '2.24']], 'requires' => [['core', '2.24']],
'permissions' => dcAuth::PERMISSION_CONTENT_ADMIN, 'permissions' => dcCore::app()->auth->makePermissions([
dcAuth::PERMISSION_CONTENT_ADMIN,
]),
'priority' => 150000, 'priority' => 150000,
'type' => 'plugin', 'type' => 'plugin',
'support' => 'https://github.com/JcDenis/myUrlHandlers', 'support' => 'https://github.com/JcDenis/myUrlHandlers',

View File

@ -14,7 +14,7 @@ if (!defined('DC_CONTEXT_ADMIN')) {
return null; return null;
} }
dcPage::check(dcAuth::PERMISSION_CONTENT_ADMIN); dcPage::check(dcCore::app()->auth->makePermissions([dcAuth::PERMISSION_CONTENT_ADMIN]));
$page_title = __('URL handlers'); $page_title = __('URL handlers');
@ -100,9 +100,9 @@ try {
--------------------------------------------------- */ --------------------------------------------------- */
?> ?>
<html><head> <html><head>
<title><?php echo $page_title; ?></title> <title><?php echo $page_title; ?></title>
</head><body> </head><body>
<?php <?php
echo dcPage::breadcrumb( echo dcPage::breadcrumb(
@ -114,17 +114,17 @@ try {
dcPage::notices(); dcPage::notices();
?> ?>
<?php if (empty($handlers)): ?> <?php if (empty($handlers)): ?>
<p class="message"><?php echo __('No URL handler to configure.'); ?></p> <p class="message"><?php echo __('No URL handler to configure.'); ?></p>
<?php else: ?> <?php else: ?>
<p><?php echo __('You can write your own URL for each handler of this list.'); ?></p> <p><?php echo __('You can write your own URL for each handler of this list.'); ?></p>
<form action="<?php echo dcCore::app()->admin->getPageURL(); ?>" method="post"> <form action="<?php echo dcCore::app()->admin->getPageURL(); ?>" method="post">
<table> <table>
<thead> <thead>
<tr><th>Type</th><th>URL</th></tr> <tr><th>Type</th><th>URL</th></tr>
</thead> </thead>
<tbody> <tbody>
<?php <?php
foreach ($handlers as $name => $url) { foreach ($handlers as $name => $url) {
echo echo
@ -133,11 +133,11 @@ foreach ($handlers as $name => $url) {
'</td></tr>' . "\n"; '</td></tr>' . "\n";
} }
?> ?>
</tbody> </tbody>
</table> </table>
<p><input type="submit" name="act_save" value="<?php echo __('Save'); ?>" /> <p><input type="submit" name="act_save" value="<?php echo __('Save'); ?>" />
<input type="submit" name="act_restore" value="<?php echo __('Reset'); ?>" /> <input type="submit" name="act_restore" value="<?php echo __('Reset'); ?>" />
<?php echo dcCore::app()->formNonce(); ?></p> <?php echo dcCore::app()->formNonce(); ?></p>
</form> </form>
<?php endif; ?> <?php endif; ?>
</body></html> </body></html>