You are here

function ds_search_help in Display Suite 7

Same name and namespace in other branches
  1. 7.2 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/search':
      $output = '<dl>';
      $output .= '<dt>' . t('Display suite defines its own search type. You need to enable it at !url and select the engine underneath you wish to use.', array(
        '!url' => l('search settings', 'admin/config/search/settings'),
      )) . '</dt>';
      $output .= '</dl>';
      return $output;
  }
}