gpt4 book ai didi

php - 如何在 Drupal 7 表单中添加图像字段

转载 作者:行者123 更新时间:2023-12-02 21:36:42 24 4
gpt4 key购买 nike

我正在创建一个如图所示的表单,通过将 php 代码放入 body block 中,在后台保存 csv 中的详细信息,效果很好,但任何人都可以告诉我如何在表单中添加图像上传选项并将其保存在其他表单中地点

enter image description here

最佳答案

首先不要在主体 block 中添加代码。创建自定义模块。

要添加图像字段,请参阅 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/',
);

关于php - 如何在 Drupal 7 表单中添加图像字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21214526/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com