function blocache_help in Blocache (Block Cache Control) 8
Implements hook_help().
File
- ./
blocache.module, line 17 - Provides a structure for block cache control.
Code
function blocache_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the blocache module.
case 'help.page.blocache':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Provides a structure for block cache control.') . '</p>';
return $output;
default:
return;
}
}