Wie speichere ich eine hochgeladene Datei mit dem Status 1 in der Datei file_managed in Drupal 8?
Jedes Mal, wenn ich eine Datei hochlade, wird sie in der Tabelle file_managed mit dem Statuswert 0 gespeichert.
Ich habe sie File::load( $form_state->getValue('image'))
zum Laden der Datei verwendet. Was muss ich als nächstes tun?
In Drupal 7 würde ich verwenden $file->status = FILE_STATUS_PERMANENT
. Was ist der entsprechende Code für 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)
{
}
}