Petry 6 апреля 2009 в 20:53 Добрый день! Подскажите пожалуйста, как можно изменить содержание переменной $content А имеено интересует, как убрать из $content Pager Drupal6 Блог Войдите или зарегистрируйтесь, чтобы отправлять комментарии
Sangre 18 июня 2009 в 13:48 перегружайте в template.php функцию theme_pager <?phpfunction theme_pager($tags = array(), $limit = 10, $element = 0, $parameters = array(), $pager_output = false) { global $pager_total; $output = ''; if ($pager_total[$element] > 1 && $pager_output) { $output .= '<div class="pager">'; $output .= theme('pager_first', ($tags[0] ? $tags[0] : t('« first')), $limit, $element, $parameters); $output .= theme('pager_previous', ($tags[1] ? $tags[1] : t('‹ previous')), $limit, $element, 1, $parameters); $output .= theme('pager_list', $limit, $element, ($tags[2] ? $tags[2] : 9 ), '', $parameters); $output .= theme('pager_next', ($tags[3] ? $tags[3] : t('next ›')), $limit, $element, 1, $parameters); $output .= theme('pager_last', ($tags[4] ? $tags[4] : t('last »')), $limit, $element, $parameters); $output .= '</div>'; return $output; }}?> и выводите где надо <?phpprint theme('pager', array(), 10, 0, array(), true);?>
Комментарии
как нибудь решилось?
перегружайте в template.php функцию theme_pager
<?php
function theme_pager($tags = array(), $limit = 10, $element = 0, $parameters = array(), $pager_output = false) {
global $pager_total;
$output = '';
if (
$pager_total[$element] > 1 && $pager_output) {$output .= '<div class="pager">';
$output .= theme('pager_first', ($tags[0] ? $tags[0] : t('« first')), $limit, $element, $parameters);
$output .= theme('pager_previous', ($tags[1] ? $tags[1] : t('‹ previous')), $limit, $element, 1, $parameters);
$output .= theme('pager_list', $limit, $element, ($tags[2] ? $tags[2] : 9 ), '', $parameters);
$output .= theme('pager_next', ($tags[3] ? $tags[3] : t('next ›')), $limit, $element, 1, $parameters);
$output .= theme('pager_last', ($tags[4] ? $tags[4] : t('last »')), $limit, $element, $parameters);
$output .= '</div>';
return
$output;}
}
?>
и выводите где надо
<?php
print theme('pager', array(), 10, 0, array(), true);
?>