function extra_field_description_help in Extra Field Description 8
Implements hook_help().
File
- ./
extra_field_description.module, line 16 - Main module functions for the extra_field_description module.
Code
function extra_field_description_help($path, $arg) {
switch ($path) {
case 'help.page.extra_field_description':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This module give us opportunity to append extra description to the field.') . '</p>';
$output .= '<p>' . t('In almost all themes extra description located below the field.') . '</p>';
$output .= '<p>' . t('Sometimes needed to append extra description above the field, see attached example.') . '</p>';
$output .= '<p>' . t('Module "Extra field description" is the best solution.') . '</p>';
$output .= '<p>' . t('For more information, see the <a href="https://www.drupal.org/project/extra_field_description">Extra Field Description module</a>.') . '</p>';
return $output;
}
}