您好我需要在drupal中創建一個模塊來顯示一些數據,而不是一個Drupal開發人員,並閱讀了幾個教程後,我似乎無法顯示任何東西。Drupal問題,如何創建一個快速內容模塊?
我有下面的代碼:
<?php
function helloworld_perm() {
return array('access helloworld content');
}
function helloworld_listado(){
return "yea";
}
function helloworld_menu(){
$items = array();
$items["listado"] = array(
'title' => t('Listado de empresas'),
'callback' => 'helloworld_listado',
'access' => array('access helloworld content'),
'type' => MENU_NORMAL_ITEM
);
return $items;
}
當我輸入/ listado我得到一個拒絕訪問 您無權訪問此頁面。
任何想法即時做錯了什麼? 如果我轉到管理 - >模塊 - >權限,我檢查了所有角色的訪問權限以訪問hellowold內容。
Ty!