Come posso salvare il file caricato in modo permanente nella tabella file_manged?


11

Come posso salvare un file caricato con stato uguale a 1 nella tabella file_managed, in Drupal 8?

Ogni volta che carico un file, questo viene archiviato nella tabella file_managed con valore di stato 0.
Ho usato File::load( $form_state->getValue('image'))per caricare il file. Cosa devo fare dopo?

In Drupal 7, vorrei usare $file->status = FILE_STATUS_PERMANENT. Qual è il codice equivalente per Drupal 8?

class AddBannerForm extends FormBase {


public function getFormId()
{
  return 'add_banner_form';
}

public function buildForm(array $form, FormStateInterface $form_state)
{


  $form['image'] = array(
    '#type'          => 'managed_file',
    '#title'         => t('Choose Image File'),
    '#upload_location' => 'public://images/',
    '#default_value' => '',
    '#description'   => t('Specify an image(s) to display.'),
    '#states'        => array(
      'visible'      => array(
        ':input[name="image_type"]' => array('value' => t('Upload New Image(s)')),
      ),
    ),
  );

  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Save image'),
  );

  return $form;
}


public function validateForm(array &$form, FormStateInterface $form_state)
{
    File::load( $form_state->getValue('image') );
}


public function submitForm(array &$form, FormStateInterface $form_state)
{

}
}

Risposte:


17

Grazie @Clive & @kiamlaluno

/* Fetch the array of the file stored temporarily in database */ 
   $image = $form_state->getValue('image');

/* Load the object of the file by it's fid */ 
   $file = File::load( $image[0] );

/* Set the status flag permanent of the file object */
   $file->setPermanent();

/* Save the file in database */
   $file->save();

1
Ora puoi farlo in un file schema.yml?
Guillaume Bois

7
Nice @Jasodeep !! Tuttavia, questo non mi è bastato per lavorare. Dopo aver impostato setPermanent()& save(). Ho dovuto fare un passo in più $file_usage = \Drupal::service('file.usage'); $file_usage->add($file, 'mymodule', 'mymodule', \Drupal::currentUser()->id()); :) spero che questo aiuti !!
JayKandari,


4

Usa questo codice per salvare l'immagine in modo permanente nel modulo di configurazione, se stai usando Drupal 8.

public function submitForm(array &$form, FormStateInterface $form_state) {
  parent::submitForm($form, $form_state);
  $image = $form_state->getValue('welcome_image');
  // Load the object of the file by its fid. 
  $file = File::load($image[0]);
  // Set the status flag permanent of the file object.
  if (!empty($file)) {
    $file->setPermanent();
    // Save the file in the database.
    $file->save();
    $file_usage = \Drupal::service('file.usage'); 
    $file_usage->add($file, 'welcome', 'welcome', \Drupal::currentUser()->id());
  }
  $config = $this->config('welcome.settings');
  $config->set('welcome_text', $form_state->getValue('welcome_text'))
    ->set('welcome_image', $form_state->getValue('welcome_image'))
    ->save();
}

0

Potrebbe anche essere necessario disabilitare la cache nella funzione buildForm

$form_state->disableCache(); 
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.