为什么Drupal 7分页不起作用?

时间:2013-02-07 08:27:37

标签: php drupal drupal-7

我很想知道drupal 7的许多更新功能都无法正常工作。

我正在尝试为我们的项目实现寻呼机,我已经实现了它,但它只显示了下一个最后一个按钮而没有显示页面,但这些按钮无法正常工作。

我不知道为什么会这样?

任何人都可以看一下这段代码吗?

// Output of table with the paging
$output = theme_table(array(
  "header"     => $header,
  "rows"       => $rows,
  "attributes" => array(),
  "sticky"     => true, // Table header will be sticky
  "caption"    => "",
  "colgroups"  => array(),     
  "empty"      => t("Table has no row!") 
  // The message to be displayed if table is empty
)).theme('pager');

$output.= '</div>';

return $output;

0 个答案:

没有答案