这是我第一次尝试创建Drupal模块:Hello World。
我需要它将它显示为自定义块,我发现这可以通过我的helloworld模块中的2个Drupal7钩子:hook_block_info()和hook_block_view()来实现。在Drupal 6中使用了不推荐使用的hook_block()。
在实际形式中它可以工作,但它只显示文本:'这是一个块是我的模块'。我实际上需要显示我的main函数的输出:helloworld_output(),t变量。
<?php
function helloworld_menu(){
$items = array();
//this is the url item
$items['helloworlds'] = array(
'title' => t('Hello world'),
//sets the callback, we call it down
'page callback' => 'helloworld_output',
//without this you get access denied
'access arguments' => array('access content'),
);
return $items;
}
/*
* Display output...this is the callback edited up
*/
function helloworld_output() {
header('Content-type: text/plain; charset=UTF-8');
header('Content-Disposition: inline');
$h = 'hellosworld';
return $h;
}
/*
* We need the following 2 functions: hook_block_info() and _block_view() hooks to create a new block where to display the output. These are 2 news functions in Drupal 7 since hook_block() is deprecated.
*/
function helloworld_block_info() {
$blocks = array();
$blocks['info'] = array(
'info' => t('My Module block')
);
return $blocks;
}
/*delta si used as a identifier in case you create multiple blocks from your module.*/
function helloworld_block_view($delta = ''){
$block = array();
$block['subject'] = "My Module";
$block['content'] = "This is a block which is My Module";
/*$block['content'] = $h;*/
return $block;
}
?>
我现在需要的是显示我的主函数输出的内容:块内的helloworld_output():helloworld_block_view()。
你知道为什么$ block ['content'] = $ h不起作用?谢谢你的帮助。
答案 0 :(得分:0)
$h
是helloworld_output()
函数的本地变量,因此在helloworld_block_view()
中不可用。
我不确定你为什么要在helloworld_output()
设置标题,你应该删除这些行,因为它们只会导致你的问题。
在您删除该函数中对header()
的两次调用后,只需将helloworld_block_view()
函数中的代码行更改为:
$block['content'] = helloworld_output();
您在$h
中设置为helloworld_output
的内容将被放入块的内容区域。