我正在 Drupal 7 中构建一个带有图像上传字段的自定义设置表单。此图像字段应允许多次上传。
经过一些研究,我发现您可以使用managed_file
and来做到这一点'#attributes' => array('multiple' => 'multiple')
。然而,这似乎并没有做任何事情。
这是我目前拥有的代码:
$form['frontpage_banner_images'] = array(
'#type' => 'managed_file',
'#title' => t('Frontpage Images'),
'#name' => 'files[]',
'#attributes' => array(
'multiple' => 'multiple',
'class' => 'testclass',
),
'#upload_location' => 'public://homepage-banners/',
'#default_value' => variable_get('frontpage_banner_images'),
);
结果是:
<div class="form-item form-type-managed-file form-item-files-">
<label for="edit-frontpage-banner-images-upload">Frontpage Images</label>
<div id="edit-frontpage-banner-images-upload" class="testclass form-managed-file">
<input type="file" id="edit-frontpage-banner-images-upload" name="files[frontpage_banner_images]" size="22" class="form-file">
<input type="submit" id="edit-frontpage-banner-images-upload-button" name="frontpage_banner_images_upload_button" value="Upload" class="form-submit ajax-processed">
<input type="hidden" name="frontpage_banner_images[fid]" value="0">
</div>
</div>
如您所见,testclass
from my#attributes
被应用于包装div
而不是文件输入。所以该multiple
属性没有做任何事情。
这就是我想要实现的目标(Photoshopped):
任何有关如何实现这一点的帮助表示赞赏。