You are here

function slider_pro_help in Slider Pro 7

Same name and namespace in other branches
  1. 8 slider_pro.module \slider_pro_help()

Implements hook_help().

File

./slider_pro.module, line 10

Code

function slider_pro_help($path, $arg) {
  switch ($path) {
    case 'admin/help#slider_pro':
      $output = file_get_contents(drupal_get_path('module', 'slider_pro') . '/README.txt');
      return '<pre>' . check_plain($output) . '</pre>';
  }
}