You are here

function exif_menu in Exif 5

Same name and namespace in other branches
  1. 6 exif.module \exif_menu()
  2. 7 exif.module \exif_menu()

Implementation of hook_menu().

File

./exif.module, line 6

Code

function exif_menu($may_cache) {
  $items = array();
  if ($may_cache) {
    $items[] = array(
      'path' => 'admin/settings/exif',
      'title' => t('Exif'),
      'callback' => 'drupal_get_form',
      'callback arguments' => array(
        'exif_admin_settings_form',
      ),
      'access' => user_access('administer site configuration'),
      'description' => t('Configure what Exif tags to display.'),
    );
  }
  return $items;
}