我正在创建一个如图所示的表单,它通过将php代码放在body块中来保存csv中的详细信息,但是可以告诉我如何在表单中添加图像上传选项并将其保存在其他表单中地方
答案 0 :(得分:3)
首先不要在body块中添加代码。创建自定义模块。
要添加图片字段,请参阅Drupal Form API。
例如
$form['image_example_image_fid'] = array(
'#title' => t('Image'),
'#type' => 'managed_file',
'#description' => t('The uploaded image will be displayed on this page using the image style choosen below.'),
'#default_value' => variable_get('image_example_image_fid', ''),
'#upload_location' => 'public://image_example_images/',
);