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

Configure file system settings for this site.

@internal

Hierarchy

Expanded class hierarchy of FileSystemForm

1 string reference to 'FileSystemForm'
system.routing.yml in core/modules/system/system.routing.yml
core/modules/system/system.routing.yml

File

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

Namespace

Drupal\system\Form
View source
class FileSystemForm extends ConfigFormBase {
  use RedundantEditableConfigNamesTrait;

  /**
   * The date formatter service.
   *
   * @var \Drupal\Core\Datetime\DateFormatterInterface
   */
  protected $dateFormatter;

  /**
   * The stream wrapper manager.
   *
   * @var \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface
   */
  protected $streamWrapperManager;

  /**
   * The file system.
   *
   * @var \Drupal\Core\File\FileSystemInterface
   */
  protected $fileSystem;

  /**
   * Constructs a FileSystemForm object.
   *
   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
   *   The factory for configuration objects.
   * @param \Drupal\Core\Config\TypedConfigManagerInterface $typedConfigManager
   *   The typed config manager.
   * @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter
   *   The date formatter service.
   * @param \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface $stream_wrapper_manager
   *   The stream wrapper manager.
   * @param \Drupal\Core\File\FileSystemInterface $file_system
   *   The file system.
   */
  public function __construct(ConfigFactoryInterface $config_factory, TypedConfigManagerInterface $typedConfigManager, DateFormatterInterface $date_formatter, StreamWrapperManagerInterface $stream_wrapper_manager, FileSystemInterface $file_system) {
    parent::__construct($config_factory, $typedConfigManager);
    $this->dateFormatter = $date_formatter;
    $this->streamWrapperManager = $stream_wrapper_manager;
    $this->fileSystem = $file_system;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('config.factory'), $container
      ->get('config.typed'), $container
      ->get('date.formatter'), $container
      ->get('stream_wrapper_manager'), $container
      ->get('file_system'));
  }

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'system_file_system_settings';
  }

  /**
   * {@inheritdoc}
   */
  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);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigFormBaseTrait::config protected function Retrieves a configuration object.
FileSystemForm::$dateFormatter protected property The date formatter service.
FileSystemForm::$fileSystem protected property The file system.
FileSystemForm::$streamWrapperManager protected property The stream wrapper manager.
FileSystemForm::buildForm public function
FileSystemForm::create public static function
FileSystemForm::getFormId public function
FileSystemForm::__construct public function Constructs a FileSystemForm object.
RedundantEditableConfigNamesTrait::getEditableConfigNames protected function Gets the configuration names that will be editable. Overrides ConfigFormBaseTrait::getEditableConfigNames