我需要在 drupal 评论表单中添加一个额外的“名称”字段。我使用 hook_form_alter 实现了这个。现在这个领域来了。我无法控制它的位置。现在它是最后一个。我改变了重量,然后它也没有影响。
function comment_extra_form_alter(&$form, &$form_state, $form_id) {
global $user;
$output = '';
if (!$user->uid) {
switch ($form_id) {
case 'comment_form':
$form['admin']['name'] = array(
'#type' => 'textfield',
'#title' => t('Name'),
'#weight' => -1,
'#size' => 60,
'#maxlength' => 60,
'#default_value' => $author,
);
$output .= comment_render($form);
break;
}
return $output;
}
}
请帮我