如何从菜单项调用两个功能?
|
我有一个菜单项,我想在其上调用两个功能。这是我的代码。
$items[\'admin/proformative/reports\'] = array(
\'title\' => \'report\',
\'page callback\' => \'drupal_get_form\',
\'page arguments\' => array(\'test_reports\'),
\'access callback\' => TRUE,
\'type\' => MENU_LOCAL_TASK,
);
它工作正常,但就像在page_arguments中,我调用了一个函数。现在我想调用两个函数。我将上述代码更改如下,但没有用。
$items[\'admin/proformative/reports\'] = array(
\'title\' => \'report\',
\'page callback\' => \'drupal_get_form\',
\'page arguments\' => array(\'test_vbo\', \'test_reports\'),
\'access callback\' => TRUE,
\'type\' => MENU_LOCAL_TASK,
);
但是它只执行test_vbo函数,我希望两者都执行。
我需要什么来实现上述技术。
没有找到相关结果
已邀请:
1 个回复
冲汉