You are here

function elevatezoomplus_ui_help in ElevateZoom Plus 7

Same name and namespace in other branches
  1. 8 modules/ui/elevatezoomplus_ui.module \elevatezoomplus_ui_help()

Implements hook_help().

File

modules/ui/elevatezoomplus_ui.module, line 78
Provides the ElevateZoomPlus UI.

Code

function elevatezoomplus_ui_help($path, $arg) {
  if ($path == 'admin/help#elevatezoomplus_ui') {
    $output = file_get_contents(dirname(dirname(dirname(__FILE__))) . '/README.md');
    return function_exists('_filter_markdown') ? _filter_markdown($output, NULL) : '<pre>' . $output . '</pre>';
  }
  return '';
}