gpt4 book ai didi

php - block 中的选项卡

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:50:36 24 4
gpt4 key购买 nike

我想创建一个 block ,其中包含来自 page.tpl.php 的 $tabs

/**
* Implements hook_block_info().
*/
function mymodule_block_info() {

$blocks['tabs'] = array(
'info' => t('Tabs in block'),
'description' => t('blah blah blah'),
);
return $blocks;
}


/**
* Implements hook_block_view().
*/
function mymodule_block_view($delta = '') {

$block = array();

switch ($delta) {

case 'tabs':
$block['subject'] = t("THIS IS ZHE TABS!");
$block['content'] = array(
'#theme' => 'menu_local_tasks',
'#primary' => menu_local_tasks(0),
'#secondary' => menu_local_tasks(1),
);
break;
}
return $block;
}



该 block 已正确注册,并且正确显示了呈现的选项卡。但是,Drupal 会抛出很多错误!

Warning: Invalid argument supplied for foreach() in element_children() (line 6300 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Cannot use a scalar value as an array in drupal_render() (line 5767 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Cannot use a scalar value as an array in drupal_render() (line 5822 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Invalid argument supplied for foreach() in element_children() (line 6300 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Illegal string offset '#children' in drupal_render() (line 5767 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Illegal string offset '#children' in drupal_render() (line 5777 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Illegal string offset '#children' in drupal_render() (line 5815 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Illegal string offset '#printed' in drupal_render() (line 5822 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Invalid argument supplied for foreach() in element_children() (line 6300 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Cannot use a scalar value as an array in drupal_render() (line 5767 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Cannot use a scalar value as an array in drupal_render() (line 5822 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Invalid argument supplied for foreach() in element_children() (line 6300 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Illegal string offset '#children' in drupal_render() (line 5767 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Illegal string offset '#children' in drupal_render() (line 5777 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Illegal string offset '#children' in drupal_render() (line 5815 of /Users/tolborg/Sites/bibdk/includes/common.inc).
Warning: Illegal string offset '#printed' in drupal_render() (line 5822 of /Users/tolborg/Sites/bibdk/includes/common.inc).

最佳答案

看来问题可能出在主题功能上。

我尝试过使用它并且它有效

$tabs =  menu_local_tasks(0);
$block['content'] = $tabs['tabs']['output'];

关于php - block 中的选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12973197/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com