You are here

HtaccessWriterInterface.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/lib/Drupal/Core/File/HtaccessWriterInterface.php

Namespace

Drupal\Core\File

File

core/lib/Drupal/Core/File/HtaccessWriterInterface.php
View source
<?php

namespace Drupal\Core\File;


/**
 * Interface for managing Apache .htaccess files.
 */
interface HtaccessWriterInterface {

  /**
   * Creates a .htaccess file in each Drupal files directory if it is missing.
   */
  public function ensure();

  /**
   * Returns a list of the default protected directories.
   *
   * @return \Drupal\Core\File\ProtectedDirectory[]
   *   The default protected directories.
   */
  public function defaultProtectedDirs();

}

Interfaces

Namesort descending Description
HtaccessWriterInterface Interface for managing Apache .htaccess files.