我已经在模块下启用了表单,但是访问页面会出现“找不到页面”错误。
sites / default / modules / awesome_form / awesome_form.module
function awesome_form_menu(){
$items['my-new-form'] = array(
'title' => 'simple form',
'type' => MENU_NORMAL_ITEM,
'page callback' => 'drupal_get_form',
'page arguments' => array('show_form_callback'),
'access arguments' => array('access content'),
'file' => 'application_file.inc'
);
return $items;
}
sites / default / modules / awesome_form / application_file.inc
function show_form_callback($form, &$form_state){
$form['test_input'] = array(
'#type' => 'textfield',
'#required' => TRUE,
'#title' => 'Name'
);
return $form;
}
sites / default / modules / awesome_form / awesome_form.info
name = Awesome Form
description = Some Test Form
core = 7.x
,当我浏览到mysite.com/my-new-form
时,出现“找不到页面”错误。我还启用了模块下的“ Awesome Form”模块。还是同样的问题。
答案 0 :(得分:0)
您的模块可以在全新安装时对其进行测试。我唯一没有做的就是在模块文件和.inc文件中打开php标签,就是这样。一切都按预期进行。