Unggah Gambar dalam Modul Kustom

8

Saya sedang menulis modul khusus, dan saya membutuhkannya untuk mengunggah gambar. Saya kesulitan menemukan dokumentasi yang bagus tentang ini, tapi saya rasa saya sudah dekat.

Apa yang saya lewatkan? $ file mengembalikan false dalam pengiriman formulir.

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 wide and in JPG format."),
    );  
    $form['submit'] = array(
        '#type' => 'submit',
        '#value' => t('Update'),
    );
    return $form;
}

function mymodule_custom_content_block_form_submit($form, &$form_state){
    if(isset($form_state['values']['custom_content_block_image'])){
        $validators = array('file_validate_extensions' => array('jpg jpeg'));
        $file = file_save_upload('custom_content_block_image', $validators, 'public://');
        if($file == false){
            drupal_set_message(t("Error saving image."), $type = "error", $repeat = false);
        }
        else{
            $file->status = FILE_STATUS_PERMANENT;
            $file = file_save($file);   
        }
    }
    variable_set('mymodule_custom_content_block_text', $form_state['values']['custom_content_block_text']);
    drupal_set_message(t('Custom Content Block has been updated.'));
}
Tim Snyder
sumber

Jawaban:

19

Jika Anda tidak keberatan saya mengatakan Anda melakukan ini dengan cara yang sulit. Drupal memiliki managed_filetipe elemen yang menangani sebagian besar logika ini untuk Anda:

function mymodule_custom_content_block_form($form, &$form_state) {
  $form['custom_content_block_image'] = array(
    '#type' => 'managed_file',
    '#name' => 'custom_content_block_image',
    '#title' => t('Block image'),
    '#size' => 40,
    '#description' => t("Image should be less than 400 pixels wide and in JPG format."),
    '#upload_location' => 'public://'
  ); 

  return $form; 
}

function mymodule_custom_content_block_form_submit($form, &$form_state) {
  if (isset($form_state['values']['custom_content_block_image'])) {
    $file = file_load($form_state['values']['custom_content_block_image']);

    $file->status = FILE_STATUS_PERMANENT;

    file_save($file);
  }
}
Clive
sumber
Perlu dicatat bahwa file_save hanya tersedia setelah Drupal 6.
Will
4

Dengan jawaban Clive, gambar saya terhapus setelah 6 jam. Jadi jika seseorang mengalami masalah yang sama dengan yang saya alami. Inilah solusinya (dari jawaban Clive dengan sedikit tambahan).

function mymodule_custom_content_block_form($form, &$form_state) {
  $form['custom_content_block_image'] = array(
    '#type' => 'managed_file',
    '#name' => 'custom_content_block_image',
    '#title' => t('Block image'),
    '#size' => 40,
    '#description' => t("Image should be less than 400 pixels wide and in JPG format."),
    '#upload_location' => 'public://'
  ); 

  return $form; 
}

function mymodule_custom_content_block_form_submit($form, &$form_state) {
  if (isset($form_state['values']['custom_content_block_image'])) {
    $file = file_load($form_state['values']['custom_content_block_image']);

    $file->status = FILE_STATUS_PERMANENT;

    $file_saved =file_save($file);
    // Record that the module is using the file. 
    file_usage_add($file_saved, 'mymodule_custom_content_block_form', 'custom_content_block_image', $file_saved->fid); 
  }
}

Solusinya adalah menambahkan file_usage_add. Dari dokumentasi API:

Catatan: File baru diunggah dengan status 0 dan diperlakukan sebagai file sementara yang dihapus setelah 6 jam melalui cron. Modul Anda bertanggung jawab untuk mengubah status objek $ file menjadi FILE_STATUS_PERMANENT dan menyimpan status baru ke basis data. Sesuatu seperti yang berikut dalam handler Anda harus melakukan trik.

Lihat: https://api.drupal.org/api/drupal/developer%21topics%21forms_api_reference.html/7.x#managed_file

Gulok
sumber
1

Atribut ini harus ditambahkan ke formulir Anda agar berfungsi dengan unggahan file.

$form['#attributes']['enctype'] = "multipart/form-data";
DrupalFever
sumber