我创建了一个带有hook_menu的简单模块
function course_list_menu() {
$items['course-list'] = array(
'title' => 'Example Page',
'page callback' => 'course_list_page',
'access arguments' => array('access content'),
'type' => MENU_NORMAL_ITEM,
);
return $items;
}
function course_list_page() {
print '<h1>WILL BE UP SOON </h1>';
print '<h3>this page is getting build<h3>';
}
正如我在youtube和其他网站上的示例中看到的,当我访问链接(带有页眉和页脚)时,此文本应该出现在内容区域中。但就我而言,这是一个空白页面 我错过了什么吗? 如何在内容区域中显示此内容。
我当前的输出类似于http://prntscr.com/bpff9q
答案 0 :(得分:0)
您需要返回Drupal可以使用的内容并应用于模板文件。
试试这个:
function course_list_page() {
return array('#markup' => '<h1>WILL BE UP SOON </h1><h3>this page is getting build<h3>');
}