function amp_help in Accelerated Mobile Pages (AMP) 7
Same name and namespace in other branches
- 8.3 amp.module \amp_help()
- 8 amp.module \amp_help()
- 8.2 amp.module \amp_help()
Implements hook_help().
File
- ./
amp.module, line 17
Code
function amp_help($path, $arg) {
switch ($path) {
case 'admin/help#amp':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Google AMP integration') . '</p>';
return $output;
}
}