在自定义模块中上传图片
我正在编写一个自定义模块,并且需要它来上传图像。我很难找到关于此的好的文档,但是我想我已经接近了。 我想念什么?$ file在表单提交中返回false。 function mymodule_custom_content_block_form($form_state){ $form = array(); $form['custom_content_block_text'] = array( '#type' => 'textarea', '#title' => t('Block text'), '#default_value' => variable_get('mymodule_custom_content_block_text'), '#required' => true, ); $form['custom_content_block_image'] = array( '#type' => 'file', '#name' => 'custom_content_block_image', '#title' => t('Block image'), '#size' => 40, '#description' => t("Image should be less than 400 pixels …