function imagezoomer_menu in Image Zoomer 7
Implements hook_menu().
File
- ./
imagezoomer.module, line 327 - Integrate Powerzoomer / Featuredzoom jquery plugins to Drupal 7
Code
function imagezoomer_menu() {
$items = array();
// Setup a menu system in admin page for the module.
$items['admin/config/user-interface/imagezoomer'] = array(
'title' => 'Image Zoomer',
'description' => 'Manage the image zoomer settings.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'imagezoomer_settings_form',
),
'access arguments' => array(
'administer imagezoomer',
),
'type' => MENU_NORMAL_ITEM,
);
return $items;
}