You are here

function flowplayer3_menu in SWF Tools 6.2

Implementation of hook_menu().

File

flowplayer3/flowplayer3.module, line 68

Code

function flowplayer3_menu() {
  $items = array();
  $items['admin/settings/swftools/flowplayer3'] = array(
    'title' => 'FlowPlayer 3',
    'description' => 'Settings for ' . l('FlowPlayer 3', FLOWPLAYER3_DOWNLOAD) . '.',
    'access arguments' => array(
      'administer flash',
    ),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'flowplayer3_admin_settings',
    ),
    'file' => 'flowplayer3.admin.inc',
    'file path' => drupal_get_path('module', 'flowplayer3'),
  );
  return $items;
}