在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',
);