0

我使用了 Drupal 6 和管理菜单模块。我需要在管理面板中隐藏管理菜单。我写了模块,但它不起作用。请帮帮我

模块代码:

<?php

/**
 * Implements hook_init().
 */
function YOURMODULE_init() {
  global $theme_key;
  if ($theme_key == 'rootcandy') {
    module_invoke('admin_menu', 'suppress');
  }
}

?>
4

1 回答 1

0

问题是主题全局变量在您在hook_init(). 您可以theme_init()在检查$theme_key值之前打电话,但我不确定这是否有意外的副作用。

于 2012-07-11T01:00:00.273 回答