Làm cách nào để lưu tệp được tải lên với trạng thái bằng 1 trong bảng file_managed, trong Drupal 8?
Bất cứ khi nào tôi tải lên một tệp, nó được lưu trữ trong bảng file_managed với giá trị trạng thái 0.
Tôi đã sử dụng File::load( $form_state->getValue('image'))
để tải tệp. Tôi cần làm gì tiếp theo?
Trong Drupal 7, tôi sẽ sử dụng $file->status = FILE_STATUS_PERMANENT
. Mã tương đương cho Drupal 8 là gì?
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)
{
}
}