You are here

function single_datetime_exposed_help in Single DateTimePicker 8

Implements hook_help().

File

modules/single_datetime_exposed/single_datetime_exposed.module, line 15
Main module file single_datetime_exposed.

Code

function single_datetime_exposed_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.single_datetime_exposed':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Date time picker attached to all Views exposed date fields automatically.');
      return $output;
  }
}