Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用了 Drupal 6 和管理菜单模块。我需要在管理面板中隐藏管理菜单。我写了模块,但它不起作用。请帮帮我
模块代码:
<?php /** * Implements hook_init(). */ function YOURMODULE_init() { global $theme_key; if ($theme_key == 'rootcandy') { module_invoke('admin_menu', 'suppress'); } } ?>
问题是主题全局变量在您在hook_init(). 您可以theme_init()在检查$theme_key值之前打电话,但我不确定这是否有意外的副作用。
hook_init()
theme_init()
$theme_key