web-dev-qa-db-ja.com

カスタムモジュールでの画像のアップロード

カスタムモジュールを作成していますが、画像をアップロードするために必要です。これに関する適切なドキュメントを見つけるのに苦労していますが、私はもうすぐです。

何が欠けていますか? $ 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 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.'));
}
8
Tim Snyder

あなたが私の言うことを気にしないなら、あなたはこれを難しい方法でやっているのです。 Drupalには managed_file このロジックのほとんどを処理する要素タイプ:

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);
  }
}
19
Clive

クライブの答えで私の画像は6時間後に削除されました。したがって、誰かが私と同じ問題を経験した場合。ここに解決策があります(少し追加したCliveの答えから)。

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); 
  }
}

解決策はfile_usage_addを追加することです。 APIドキュメントから:

注:新しいファイルはステータス0でアップロードされ、一時ファイルとして扱われ、cron経由で6時間後に削除されます。モジュールは$ fileオブジェクトのステータスをFILE_STATUS_PERMANENTに変更し、新しいステータスをデータベースに保存します。あなたの送信ハンドラ内の次のような何かがトリックをするはずです。

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

4
Gulok

フォームがファイルのアップロードで機能するためには、この属性をフォームに追加する必要があります。

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