【发布时间】:2013-03-18 01:19:45
【问题描述】:
尝试在新的内容类型添加表单中添加一些额外的表单项。
还可以尝试增加提交和预览的权重。
function mymodule_form_alter(&$form, &$form_state, $form_id){
//add some $form items here
$form['actions']['submit']['#weight'] = 2000;
$form['actions']['preview']['#weight'] = 2001;
}
但不知何故,提交和预览按钮仍然位于那里添加的新项目上方。
【问题讨论】:
-
尝试将您想要较高的项目的权重设置为较低的数字?另外,这个问题属于Drupal Answers。
标签: php drupal drupal-7 drupal-fapi