Drupal 6 と管理メニュー モジュールを使用しました。管理パネルで管理メニューを非表示にする必要があります。モジュールを書いているのですが、うまくいきません。お願い助けて
モジュールコード:
<?php
/**
* Implements hook_init().
*/
function YOURMODULE_init() {
global $theme_key;
if ($theme_key == 'rootcandy') {
module_invoke('admin_menu', 'suppress');
}
}
?>