我正在创建自己的模块,它将向特定地址发送电子邮件。
但我需要知道如何合并来自名为“媒体”的模块中的媒体选择器,以便用户可以以与发送电子邮件相同的形式将文件上传到服务器。
我现在的表单是在我的新模块的 PHP 中创建的。
$form['email'] = array(
'#type' => 'textfield',
'#title' => t('Your e-mail address'),
'#required' => TRUE,
);
$form['title'] = array(
'#type' => 'textfield',
'#title' => t('Title of bug'),
'#required' => TRUE,
);
$form['message'] = array(
'#type' => 'textarea',
'#title' => t('Bug description'),
'#required' => TRUE,
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Submit'),
);
return $form;