You are here

function swftools_onepixelout_menu in SWF Tools 6.3

Implementation of hook_menu().

File

onepixelout/swftools_onepixelout.module, line 32
Enables SWF Tools support for the original OnePixelOut player.

Code

function swftools_onepixelout_menu() {
  $items['admin/settings/swftools/onepixelout'] = array(
    'title' => '1 Pixel Out',
    'description' => 'Settings for ' . l('1 Pixel Out MP3 Player', 'http://downloads.wordpress.org/plugin/audio-player.1.2.3.zip') . '.',
    'access arguments' => array(
      'administer flash',
    ),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'swftools_onepixelout_admin_form',
    ),
    'file' => 'swftools_onepixelout.admin.inc',
  );
  return $items;
}