如何在上传Drupal 8后获取文件名?

时间:2018-03-02 15:03:54

标签: drupal drupal-8

我正在构建一个表单,用户可以在其中上传文件。由于我使用的是Drupal,我使用的是managed_file。该文件正在上传,但我似乎无法从表单中获取文件名...这是我的代码

Buildform:

        $form['formfile'] = array(
        '#type' => 'managed_file',
        '#name' => 'formfile',
        '#title' => t('File'),
        '#upload_validators' => $validators,
        '#upload_location' => 'public://trainingrequests/',
    );

提交

drupal_set_message($form_state->getValue('formfile'));

我真的尝试了一切。

1 个答案:

答案 0 :(得分:1)

首先需要获取File实体的实体ID,然后加载实体:

$formfile = $form_state->getValue('formfile');
if ($formfile) {
  $oNewFile = File::load(reset($formfile));
  $oNewFile->setPermanent();
  drupal_set_message('Filename: ' . $oNewFile->getFilename());
}

您可以浏览文件系统中File实体的源代码:core / modules / file / src / Entity / File.php