pipes_menu($may_cache)
pipes/pipes.module, line 7
Implementation of hook_menu()
function pipes_menu($may_cache) {
$items = array();
if ($may_cache) {
$items[] = array('path' => 'admin/content/pipes',
'title' => t('Yahoo! Pipes'),
'description' => t('Adjust the features and settings for the Pipes module.'),
'callback' => 'pipes_admin',
'callback_arguments' => arg(3),
'access' => user_access('administer pipes'));
$items[] = array('path' => 'pipes',
'title' => t('Yahoo! Pipes'),
'description' => t('Yahoo! Pipes.'),
'callback' => 'pipes_page',
'callback_arguments' => arg(1),
'access' => user_access('view pipes'));
}
return $items;
}