function better_search_help in Better Search Block 8
Implements hook_help().
File
- ./
better_search.module, line 16 - This module enables basic Better Search functionality.
Code
function better_search_help($path, $arg) {
switch ($path) {
case 'help.page.better_search':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('With just a couple clicks you can change your boring Drupal search box into a nice looking search box with icon animations.') . '</p>';
$output .= '<p>' . t('For more information, see the <a href="https://www.drupal.org/project/better_search">Better Search Block module</a>.') . '</p>';
return $output;
}
}