function ds_search_help in Display Suite 7.2
Same name and namespace in other branches
- 7 modules/ds_search/ds_search.module \ds_search_help()
Implements hook_help().
File
- modules/
ds_search/ ds_search.module, line 11 - Display Suite search.
Code
function ds_search_help($path, $arg) {
switch ($path) {
case 'admin/structure/ds/list/search':
$output = '<dl>';
$output .= '<dt>' . t('Display Suite defines its own search type for search. You need to enable it at !url when you are going to use Drupal core search. You do not have to enable and use it when using the Apachesolr module. Search results will be themed on the default Apachesolr pages.', array(
'!url' => l('search settings', 'admin/config/search/settings'),
)) . '</dt>';
$output .= '</dl>';
return $output;
}
}