You are here

function slide_with_style_help in Select with Style 7

Implements hook_help().

File

slide_with_style/slide_with_style.module, line 12
Defines a slider RANGE widget to create filters for numeric and list fields.

Code

function slide_with_style_help($path, $arg) {
  switch ($path) {
    case 'admin/help#slide_with_style':
      $t = t('Configuration and usage instructions are in this <a href="@README">README</a> file.<br/>Known issues and solutions may be found on the <a href="@select_with_style">Select with Style</a> project page.', array(
        '@README' => url(drupal_get_path('module', 'slide_with_style') . '/README.txt'),
        '@select_with_style' => url('http://drupal.org/project/select_with_style'),
      ));
      break;
  }
  return empty($t) ? '' : '<p>' . $t . '</p>';
}