Drupal:hook_menu的问题

时间:2013-04-16 14:48:18

标签: drupal hook-menu

我尝试添加这样的链接:

    $items['channel/%'] = array(
    'title' => t('channel'),
    'page callback' => 'ptt_get_channel_list',
    'access arguments' => array('access content'),
    'type' => MENU_CALLBACK,
);

但是当我添加此链接时,我无法访问adming / config菜单。

我有几个像这样的链接:

    $items['ptt/items'] = array(
    'title' => t('channel'),
    'page callback' => 'ptt_get_items',
    'access arguments' => array('access content'),
    'type' => MENU_CALLBACK,
);

$items['ptt/items/detail'] = array(
    'title' => t('channel'),
    'page callback' => 'ptt_get_items_details',
    'access arguments' => array('access content'),
    'type' => MENU_CALLBACK,
);

现在当我再添加一个链接时,我无法访问adming / config。为什么呢?

0 个答案:

没有答案