You are here

function exif_help in Exif 7

Same name and namespace in other branches
  1. 8.2 exif.module \exif_help()
  2. 8 exif.module \exif_help()

Implements hook_help().

File

./exif.module, line 56

Code

function exif_help($path, $arg) {
  include_once drupal_get_path('module', 'exif') . '/exif.admin.inc';
  switch ($path) {
    case 'admin/help#exif':
      return exif_admin_settings();
    case 'admin/help/exif':
      return exif_admin_settings();
  }
}