views theming
Views argument dynamic filters
Categories:Go to this link:
http://drupal.org/node/70145#comment-928042
- 1 comment
- 216 reads
Place Pager at top and bottom of Views view.
Categories:This code helps you place the pager at top and bottom of your views.
Copy and paste this code into your template.php file.
<?php
function phptemplate_views_view($view, $type, $nodes, $level = NULL, $args = NULL){
$output = '';
if ($view->use_pager) {
$output .= theme('pager', '', $view->pager_limit, $view->use_pager - 1);
}
$output .= theme_views_view($view, $type, $nodes, $level = NULL, $args = NULL);
return $output;
}
?>Tested in drupal 4.x and 5.x
- Add new comment
- 599 reads