function views_exclude_previous_help in Views exclude previous 8
Same name and namespace in other branches
- 7 views_exclude_previous.module \views_exclude_previous_help()
Implements hook_help().
File
- ./
views_exclude_previous.module, line 15 - Main file of the views exclude previous module.
Code
function views_exclude_previous_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.views_exclude_previous':
$output = '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Views Exclude Previous provides a views filter which exlcudes nodes that have already been loaded/displayed on the current page.') . '</p>';
return $output;
}
}