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