我使用自定义模块的表单没有出现在我的联系我们页面上。我创建了我的.module
文件和.info
文件,然后也激活了该模块。以下是我包含在.module
文件中的代码
function custom_form_module_form($form,&$form_state) {
$form['name'] = array(
'#type' => 'textfield',
);
$form['company'] = array(
'#type' => 'textfield',
);
$form['phone'] = array(
'#type' => 'textfield',
);
$form['email'] = array(
'#type' => 'textfield',
);
$form['message'] = array(
'#type' => 'textfield',
);
return $form;
}
在我的 template.php 文件中
function custom_form_module_form_theme($existing, $type, $theme, $path) {
$items['custom_form_module_form'] = array(
'render element' => 'form',
'template' => 'page--contact-us',
'path' => drupal_get_path('theme', 'escorts').'/templates');
return $items;
}
在我的中,page--contact-us.tpl.php
我使用以下行来调用表单的单独字段,但它不起作用。
<?php echo drupal_render($form['name']); ?>
“这里custom_form_module=my module name
和page--contact-us.tpl.php=my template file
和escorts=my theme name
”