Same name and namespace in other branches
  1. 8.9.x core/modules/system/src/Form/FileSystemForm.php \Drupal\system\Form\FileSystemForm::buildForm()
  2. 9 core/modules/system/src/Form/FileSystemForm.php \Drupal\system\Form\FileSystemForm::buildForm()

File

core/modules/system/src/Form/FileSystemForm.php, line 92

Class

FileSystemForm
Configure file system settings for this site.

Namespace

Drupal\system\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form['file_public_path'] = [
    '#type' => 'item',
    '#title' => $this
      ->t('Public file system path'),
    '#markup' => PublicStream::basePath(),
    '#description' => $this
      ->t('A local file system path where public files will be stored. This directory must exist and be writable by Drupal. This directory must be relative to the Drupal installation directory and be accessible over the web. This must be changed in settings.php'),
  ];
  $form['file_public_base_url'] = [
    '#type' => 'item',
    '#title' => $this
      ->t('Public file base URL'),
    '#markup' => PublicStream::baseUrl(),
    '#description' => $this
      ->t('The base URL that will be used for public file URLs. This can be changed in settings.php'),
  ];
  $form['file_assets_path'] = [
    '#type' => 'item',
    '#title' => $this
      ->t('Optimized assets file system path'),
    '#markup' => AssetsStream::basePath(),
    '#description' => $this
      ->t('A local file system path where optimized assets files will be stored. This directory must exist and be writable by Drupal. This directory must be relative to the Drupal installation directory and be accessible over the web. This must be changed in settings.php'),
  ];
  $form['file_private_path'] = [
    '#type' => 'item',
    '#title' => $this
      ->t('Private file system path'),
    '#markup' => PrivateStream::basePath() ? PrivateStream::basePath() : $this
      ->t('Not set'),
    '#description' => $this
      ->t('An existing local file system path for storing private files. It should be writable by Drupal and not accessible over the web. This must be changed in settings.php'),
  ];
  $form['file_temporary_path'] = [
    '#type' => 'item',
    '#title' => $this
      ->t('Temporary directory'),
    '#markup' => $this->fileSystem
      ->getTempDirectory(),
    '#description' => $this
      ->t('A local file system path where temporary files will be stored. This directory should not be accessible over the web. This must be changed in settings.php.'),
  ];

  // Any visible, writable wrapper can potentially be used for the files
  // directory, including a remote file system that integrates with a CDN.
  $options = $this->streamWrapperManager
    ->getDescriptions(StreamWrapperInterface::WRITE_VISIBLE);
  if (!empty($options)) {
    $form['file_default_scheme'] = [
      '#type' => 'radios',
      '#title' => $this
        ->t('Default download method'),
      '#config_target' => 'system.file:default_scheme',
      '#options' => $options,
      '#description' => $this
        ->t('This setting is used as the preferred download method. The use of public files is more efficient, but does not provide any access control.'),
    ];
  }
  $intervals = [
    0,
    21600,
    43200,
    86400,
    604800,
    2419200,
    7776000,
  ];
  $period = array_combine($intervals, array_map([
    $this->dateFormatter,
    'formatInterval',
  ], $intervals));
  $period[0] = $this
    ->t('Never');
  $form['temporary_maximum_age'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Delete temporary files after'),
    '#config_target' => 'system.file:temporary_maximum_age',
    '#options' => $period,
    '#description' => $this
      ->t('Temporary files are not referenced, but are in the file system and therefore may show up in administrative lists. <strong>Warning:</strong> If enabled, temporary files will be permanently deleted and may not be recoverable.'),
  ];
  return parent::buildForm($form, $form_state);
}