You are here

function joomla_myblog_menu in Joomla to Drupal 7

Same name and namespace in other branches
  1. 6 joomla_myblog.module \joomla_myblog_menu()
  2. 7.2 joomla_myblog.module \joomla_myblog_menu()

File

./joomla_myblog.module, line 6

Code

function joomla_myblog_menu() {
  $items = array();
  $items['admin/content/joomla_myblog_map'] = array(
    'title' => 'MyBlog tag mapping',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'joomla_myblog_map_form',
    ),
    'access arguments' => array(
      'administer joomla',
    ),
    'description' => 'Set up mappings for MyBlog tags.',
    'type' => MENU_LOCAL_TASK,
  );
  return $items;
}