fix dasboard icon, fix #2
This commit is contained in:
parent
949041f081
commit
02813085c2
28
_admin.php
28
_admin.php
@ -14,8 +14,6 @@ if (!defined('DC_CONTEXT_ADMIN')) {
|
||||
return null;
|
||||
}
|
||||
|
||||
dcCore::app()->blog->settings->addNamespace(basename(__DIR__));
|
||||
|
||||
dcCore::app()->menu[dcAdmin::MENU_PLUGINS]->addItem(
|
||||
__('Advanced cleaner'),
|
||||
dcCore::app()->adminurl->get('admin.plugin.' . basename(__DIR__)),
|
||||
@ -27,17 +25,18 @@ dcCore::app()->menu[dcAdmin::MENU_PLUGINS]->addItem(
|
||||
dcCore::app()->auth->isSuperAdmin()
|
||||
);
|
||||
|
||||
dcCore::app()->addBehavior('adminDashboardFavoritesV2', function ($favs) {
|
||||
dcCore::app()->addBehaviors([
|
||||
'adminDashboardFavoritesV2' => function ($favs) {
|
||||
$favs->register(basename(__DIR__), [
|
||||
'title' => __('Advanced cleaner'),
|
||||
'url' => dcCore::app()->adminurl->get('admin.plugin.' . basename(__DIR__)),
|
||||
'small-icon' => dcPage::getPF(basename(__DIR__) . '/icon.png'),
|
||||
'large-icon' => dcPage::getPF(basename(__DIR__) . '/icon-big.png'),
|
||||
'small-icon' => dcPage::getPF(basename(__DIR__) . '/icon.svg'),
|
||||
'large-icon' => dcPage::getPF(basename(__DIR__) . '/icon-big.svg'),
|
||||
//'permissions' => dcCore::app()->auth->isSuperAdmin(),
|
||||
]);
|
||||
});
|
||||
},
|
||||
|
||||
dcCore::app()->addBehavior('pluginsToolsTabsV2', function () {
|
||||
'pluginsToolsTabsV2' => function () {
|
||||
if (!dcCore::app()->blog->settings->__get(basename(__DIR__))->dcAdvancedCleaner_behavior_active) {
|
||||
return null;
|
||||
}
|
||||
@ -140,9 +139,9 @@ dcCore::app()->addBehavior('pluginsToolsTabsV2', function () {
|
||||
'</form>';
|
||||
|
||||
echo '</div>';
|
||||
});
|
||||
},
|
||||
|
||||
dcCore::app()->addBehavior('adminModulesListDoActions', function ($list, $modules, $type) {
|
||||
'adminModulesListDoActions' => function ($list, $modules, $type) {
|
||||
if (!dcCore::app()->blog->settings->__get(basename(__DIR__))->dcAdvancedCleaner_behavior_active) {
|
||||
return null;
|
||||
}
|
||||
@ -194,15 +193,16 @@ dcCore::app()->addBehavior('adminModulesListDoActions', function ($list, $module
|
||||
} catch (Exception $e) {
|
||||
dcCore::app()->error->add($e->getMessage());
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
dcCore::app()->addBehavior('pluginsBeforeDelete', function ($plugin) {
|
||||
'pluginsBeforeDelete' => function ($plugin) {
|
||||
dcAdvancedCleanerModuleBeforeDelete($plugin);
|
||||
});
|
||||
},
|
||||
|
||||
dcCore::app()->addBehavior('themeBeforeDelete', function ($theme) {
|
||||
'themeBeforeDelete' => function ($theme) {
|
||||
dcAdvancedCleanerModuleBeforeDelete($theme);
|
||||
});
|
||||
},
|
||||
]);
|
||||
|
||||
function dcAdvancedCleanerModuleBeforeDelete($module)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user