0

我正在尝试为网站上的特定寻呼机设置主题,无论我尝试什么 id,它似乎都没有被接收到。这就是我现在用来为所有寻呼机设置主题的方法。

function Subtle_Hightlights_views_mini_pager($tags = array(), $limit = 10, $element = 0, $parameters = array(), $quantity = 9) {
  global $pager_page_array, $pager_total;

  // Calculate various markers within this pager piece:
  // Middle is used to "center" pages around the current page.
  $pager_middle = ceil($quantity / 2);
  // current is the page we are currently paged to
  $pager_current = $pager_page_array[$element] + 1;
  // max is the maximum page number
  $pager_max = $quantity;
  // End of marker calculations.


  $li_previous = theme('pager_previous', (isset($tags[1]) ? $tags[1] : t('')), $limit, $element, 1, $parameters);
  if (empty($li_previous)) {
    $li_previous = "";
  }

  $li_next = theme('pager_next', (isset($tags[3]) ? $tags[3] : t('')), $limit, $element, 1, $parameters);
  if (empty($li_next)) {
    $li_next = "";
  }

  if ($pager_total[$element] > 1) {
    $items[] = array(
      'class' => 'pager-previous-mini',
      'data' => $li_previous,
    );
 if ($pager_current == 9){
    $li_next = "";
 }
    $items[] = array(
      'class' => 'pager-current-mini',
      'data' => t('@current of @max', array('@current' => $pager_current, '@max' => $pager_max)),
    );

    $items[] = array(
      'class' => 'pager-next-mini',
      'data' => $li_next,
    );
    return theme('item_list', $items, NULL, 'ul', array('class' => 'pager'));
  }
}

现在这适用于所有迷你寻呼机的主题,但是当我尝试应用视图的名称并像这样阻止时。

function Subtle_Hightlights_views_mini_pager__news_items__block_2($tags = array(), $limit = ``10, $element = 0, $parameters = array(), $quantity = 9) {

什么都不做,就好像代码不再存在一样。其他人尝试过这个并且它确实有效吗?

4

1 回答 1

1

关于如何覆盖寻呼机(迷你或完整)有一个很好的分步说明。我建议您做不同的唯一步骤是,当您获得可用于覆盖template.php文件中的视图分页器的主题函数名称列表时,只需使用此模块:主题开发人员。一旦启用,它将以更简单的方式提供建议。如果失败了,那么只需尝试文章的方法。

Drupal 6 覆盖视图寻呼机主题功能

于 2013-04-03T16:52:09.803 回答