我很想知道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;