如何将寻呼机放在页面的顶部和底部?

时间:2010-08-23 13:18:08

标签: drupal drupal-6 drupal-theming

我知道我需要使用theme_pager函数来呈现代码:

http://api.drupal.org/api/function/theme_pager/6

我知道它已预先渲染到page.tpl.php的$ content中,如果我想主题化,我只需要将theme_pager函数覆盖到template.php。

我知道在Views中我只需要使用变量$ pager,但我没有使用Views。

我想知道的是我如何通过自己简单地调用theme_pager传递变量“items”。在哪里可以找到寻呼机的“项目”?

修改

没有“项目”,寻呼机的内容全局传递给函数。

因此,如果您想在页面顶部添加一个新的寻呼机,您只需在page.tpl.php上调用“theme_pager”函数(或者如果您已覆盖它,则调用它):

<?php print $content_top; ?>             

<?php echo theme('pager', null, 1, 0, array(), 9); ?>

<div id="content-area">
    <?php print $content; ?>
</div>

1 个答案:

答案 0 :(得分:1)

您未将items传递给theme_pager

如果您将相同的ID:$element传递给该函数,它应该可以正常使用已添加的寻呼机。