function theme_mostpopular_items_none in Drupal Most Popular 6
Themes a list with no most popular items.
2 theme calls to theme_mostpopular_items_none()
- mostpopular_get_items in ./
mostpopular.block.inc - Gets a themed list of the most popular items for a given service and interval.
- theme_mostpopular_items in ./
mostpopular.block.inc - Themes a list of the most popular items for the given service.
File
- ./
mostpopular.block.inc, line 316 - Defines all the pages, blocks and themes for rendering the most popular data to general users.
Code
function theme_mostpopular_items_none() {
return '<p class="mostpopular--no-results">' . t('No results found') . '</p>';
}