You are here

function swftools_imagerotator_menu in SWF Tools 6.3

Implementation of hook_menu().

File

imagerotator/swftools_imagerotator.module, line 36
Enables SWF Tools support for the LongTail ImageRotator.

Code

function swftools_imagerotator_menu() {
  $items['admin/settings/swftools/imagerotator'] = array(
    'title' => 'JW Image Rotator 3',
    'description' => 'Plug-in for ' . l('JW Image Rotator 3', 'http://www.longtailvideo.com/players/jw-image-rotator') . '.',
    'access arguments' => array(
      'administer flash',
    ),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'swftools_imagerotator_admin_form',
    ),
    'file' => 'swftools_imagerotator.admin.inc',
  );
  return $items;
}