orb 21 ноября 2008 в 1:28 Проблема в том что работает на главной странице, а не работает на любой другой (нет меню) Drupal6 Блог Войдите или зарегистрируйтесь, чтобы отправлять комментарии
orb 25 ноября 2008 в 19:56 нашел где глючит function simplemenu_init() { global $theme; $exclusions = variable_get('simplemenu_exclusions', array()); if (user_access('view simplemenu') && (!isset($exclusions[$theme])) ) { //вот это место global $theme, $custom_theme; $path = drupal_get_path('module', 'simplemenu'); $simplemenu_theme = variable_get('simplemenu_theme', 'original'); drupal_add_css($path .'/simplemenu.css'); вот здесь (!isset($exclusions[$theme]))
Комментарии
нашел где глючит
global $theme;
$exclusions = variable_get('simplemenu_exclusions', array());
if (user_access('view simplemenu') && (!isset($exclusions[$theme])) ) { //вот это место
global $theme, $custom_theme;
$path = drupal_get_path('module', 'simplemenu');
$simplemenu_theme = variable_get('simplemenu_theme', 'original');
drupal_add_css($path .'/simplemenu.css');
вот здесь