function wijering4_menu in SWF Tools 5
Same name and namespace in other branches
- 6 wijering4/wijering4.module \wijering4_menu()
- 6.2 wijering4/wijering4.module \wijering4_menu()
Implementation of hook_menu().
File
- wijering4/
wijering4.module, line 47
Code
function wijering4_menu($may_cache) {
$items = array();
if ($may_cache) {
$items[] = array(
'path' => 'admin/media/swf/wijering4',
'title' => t('JW Media Player 4'),
'callback' => 'drupal_get_form',
'callback arguments' => 'wijering4_admin_form',
'description' => 'Settings for ' . l('Jeroen Wijering\'s FLV Media Player 4', WIJERING4_DOWNLOAD) . '.',
);
}
return $items;
}