Drupal 7 - 访问被拒绝 - 短URL不起作用

时间:2018-06-05 04:29:55

标签: drupal access denied

在Drupal 7中:

以下作品:

$items['admin/config/mymodule/subcat/get_image'] = array(
    'title' => 'Get image',
    'type' => MENU_CALLBACK,
    'access arguments' => array('can get images'),
    'page arguments' => array('get_image'),
    'file' => 'myfile.inc',
);

但是下面没有,它会导致“拒绝访问 - 您无权访问此页面”。即使清除缓存后也是如此。

$items['get_image'] = array(
    'title' => 'Get image',
    'type' => MENU_CALLBACK,
    'access arguments' => array('can get images'),
    'page arguments' => array('get_image'),
    'file' => 'myfile.inc',
);

0 个答案:

没有答案