function mostpopular_items_page in Drupal Most Popular 6
Renders a full page with a most popular selector and list of items.
Calls theme('mostpopular_page', $sid, $iid).
Parameters
integer $sid: The service ID of the currently-selected service.
integer $iid: The interval ID of the currently-selected interval.
1 string reference to 'mostpopular_items_page'
- mostpopular_menu in ./
mostpopular.module - Implements hook_menu().
File
- ./
mostpopular.block.inc, line 30 - Defines all the pages, blocks and themes for rendering the most popular data to general users.
Code
function mostpopular_items_page($sid, $iid) {
return theme('mostpopular_page', $sid, $iid);
}