fix permissions
This commit is contained in:
parent
f16cdeb673
commit
0d1f74998c
@ -19,7 +19,7 @@ dcCore::app()->menu[dcAdmin::MENU_PLUGINS]->addItem(
|
||||
dcCore::app()->adminurl->get('admin.plugin.myUrlHandlers'),
|
||||
dcPage::getPF('myUrlHandlers/icon.png'),
|
||||
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) {
|
||||
@ -28,6 +28,6 @@ dcCore::app()->addBehavior('adminDashboardFavoritesV2', function ($favs) {
|
||||
'url' => dcCore::app()->adminurl->get('admin.plugin.myUrlHandlers'),
|
||||
'small-icon' => dcPage::getPF('myUrlHandlers/icon.png'),
|
||||
'large-icon' => dcPage::getPF('myUrlHandlers/icon-big.png'),
|
||||
'permissions' => dcAuth::PERMISSION_CONTENT_ADMIN,
|
||||
'permissions' => dcCore::app()->auth->makePermissions([dcAuth::PERMISSION_CONTENT_ADMIN]),
|
||||
]);
|
||||
});
|
||||
|
@ -21,7 +21,9 @@ $this->registerModule(
|
||||
'2022.11.26',
|
||||
[
|
||||
'requires' => [['core', '2.24']],
|
||||
'permissions' => dcAuth::PERMISSION_CONTENT_ADMIN,
|
||||
'permissions' => dcCore::app()->auth->makePermissions([
|
||||
dcAuth::PERMISSION_CONTENT_ADMIN,
|
||||
]),
|
||||
'priority' => 150000,
|
||||
'type' => 'plugin',
|
||||
'support' => 'https://github.com/JcDenis/myUrlHandlers',
|
||||
|
40
index.php
40
index.php
@ -14,7 +14,7 @@ if (!defined('DC_CONTEXT_ADMIN')) {
|
||||
return null;
|
||||
}
|
||||
|
||||
dcPage::check(dcAuth::PERMISSION_CONTENT_ADMIN);
|
||||
dcPage::check(dcCore::app()->auth->makePermissions([dcAuth::PERMISSION_CONTENT_ADMIN]));
|
||||
|
||||
$page_title = __('URL handlers');
|
||||
|
||||
@ -100,9 +100,9 @@ try {
|
||||
--------------------------------------------------- */
|
||||
|
||||
?>
|
||||
<html><head>
|
||||
<title><?php echo $page_title; ?></title>
|
||||
</head><body>
|
||||
<html><head>
|
||||
<title><?php echo $page_title; ?></title>
|
||||
</head><body>
|
||||
<?php
|
||||
|
||||
echo dcPage::breadcrumb(
|
||||
@ -114,17 +114,17 @@ try {
|
||||
dcPage::notices();
|
||||
|
||||
?>
|
||||
|
||||
|
||||
<?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: ?>
|
||||
<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">
|
||||
<table>
|
||||
<thead>
|
||||
<tr><th>Type</th><th>URL</th></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<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">
|
||||
<table>
|
||||
<thead>
|
||||
<tr><th>Type</th><th>URL</th></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
foreach ($handlers as $name => $url) {
|
||||
echo
|
||||
@ -133,11 +133,11 @@ foreach ($handlers as $name => $url) {
|
||||
'</td></tr>' . "\n";
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
<p><input type="submit" name="act_save" value="<?php echo __('Save'); ?>" />
|
||||
<input type="submit" name="act_restore" value="<?php echo __('Reset'); ?>" />
|
||||
<?php echo dcCore::app()->formNonce(); ?></p>
|
||||
</form>
|
||||
</tbody>
|
||||
</table>
|
||||
<p><input type="submit" name="act_save" value="<?php echo __('Save'); ?>" />
|
||||
<input type="submit" name="act_restore" value="<?php echo __('Reset'); ?>" />
|
||||
<?php echo dcCore::app()->formNonce(); ?></p>
|
||||
</form>
|
||||
<?php endif; ?>
|
||||
</body></html>
|
||||
</body></html>
|
||||
|
Loading…
Reference in New Issue
Block a user