Drupal-1 Заменить текст "Главная" в цепочке навигации
|
|
Четверг, 10 Февраля 2011 г. 14:16
+ в цитатник
includes/theme.inc
добавить array_shift($breadcrumb); //gets rid of "Home" в фунцию
function theme_breadcrumb($variables) {
$breadcrumb = $variables['breadcrumb'];
if (!empty($breadcrumb)) {
array_shift($breadcrumb); //gets rid of "Home"
// Provide a navigational heading to give context for breadcrumb links to
// screen-reader users. Make the heading invisible with .element-invisible.
$output = '
' . t('You are here') . '
';
$output .= '
' . implode(' В» ', $breadcrumb) . '
';
return $output;
}
}
-
Запись понравилась
-
0
Процитировали
-
0
Сохранили
-