function http_cache_control_help in HTTP Cache Control 8
Same name and namespace in other branches
- 8.2 http_cache_control.module \http_cache_control_help()
Implements hook_help().
File
- ./
http_cache_control.module, line 15 - Contains http_cache_control.module.
Code
function http_cache_control_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the responsive_favicons module.
case 'help.page.http_cache_control':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t("HTTP Cache Control module helps fine tune control of Drupal's Cache Control headers.") . '</p>';
return $output;
default:
}
}