function views_extras_help in Views Extras (Session/Cookie/Token Support) 8
Same name and namespace in other branches
- 2.x views_extras.module \views_extras_help()
Implements hook_help().
File
- ./
views_extras.module, line 13 - Contains apf_custom.module.
Code
function views_extras_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the apf_custom module.
case 'help.page.apf_custom':
$output = file_get_contents(drupal_get_path('module', 'views_extras') . '/README.md');
return $output;
default:
}
}