Jak zapisać przesłany plik na stałe w tabeli file_manged?

11

Jak zapisać przesłany plik o statusie równym 1 w tabeli file_managed, w Drupal 8?

Za każdym razem, gdy przesyłam plik, jest on przechowywany w tabeli file_managed z wartością statusu 0.
Użyłem File::load( $form_state->getValue('image'))pliku do załadowania. Co mam teraz zrobić?

W Drupal 7 użyłbym $file->status = FILE_STATUS_PERMANENT. Jaki jest równoważny kod dla 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)
{

}
}
Jasodeep Chatterjee
źródło

Odpowiedzi:

17

Dziękuję @Clive i @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();
Jasodeep Chatterjee
źródło
1
Czy możesz to teraz zrobić w pliku schema.yml?
Guillaume Bois,
7
Nicea @Jasodeep !! Nie wystarczyło mi to jednak do pracy. Po ustawieniu setPermanent()& save(). Musiałem zrobić dodatkowy krok $file_usage = \Drupal::service('file.usage'); $file_usage->add($file, 'mymodule', 'mymodule', \Drupal::currentUser()->id()); :) mam nadzieję, że to pomoże !!
JayKandari,
1
mam nadzieję, że ten link pomoże: api.drupal.org/api/drupal/core%21modules%21file%21file.module/…
dresh
4

Użyj tego kodu, aby trwale zapisać obraz w formularzu konfiguracji, jeśli używasz 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();
}
kadharmydeen A.
źródło
0

Konieczne może być również wyłączenie pamięci podręcznej w funkcji buildForm

$form_state->disableCache(); 
Theo Balkwill
źródło