0
我需要在drupal評論表單中添加一個額外的「名稱」字段。我使用hook_form_alter實現了這個。現在該領域即將到來。我無法控制它的位置。現在它是最後一次。我改變了重量,然後也沒有影響。向drupal添加額外的字段6評論表格
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;
}
}
請幫我