¿Cómo guardo el archivo cargado permanentemente en la tabla file_manged?

11

¿Cómo guardo un archivo cargado con un estado igual a 1 en la tabla file_managed, en Drupal 8?

Cada vez que subo un archivo, se almacena en la tabla file_managed con el valor de estado 0.
He usado File::load( $form_state->getValue('image'))para cargar el archivo. ¿Qué necesito hacer a continuación?

En Drupal 7, lo usaría $file->status = FILE_STATUS_PERMANENT. ¿Cuál es el código equivalente para 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
fuente

Respuestas:

17

Gracias @Clive y @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
fuente
1
¿Ahora puede hacer esto en un archivo schema.yml?
Guillaume Bois
77
Agradable @Jasodeep !! Sin embargo, esto no fue suficiente para trabajar. Después de configurar setPermanent()& save(). Tuve que hacer un paso adicional $file_usage = \Drupal::service('file.usage'); $file_usage->add($file, 'mymodule', 'mymodule', \Drupal::currentUser()->id()); :) ¡espero que esto ayude!
JayKandari
4

Utilice este código para guardar la imagen de forma permanente en el formulario de configuración, si está utilizando 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
fuente