function SitesDirectoryHardeningTest::makeWritable

Same name and namespace in other branches
  1. 11.x core/modules/system/tests/src/Functional/System/SitesDirectoryHardeningTest.php \Drupal\Tests\system\Functional\System\SitesDirectoryHardeningTest::makeWritable()
  2. 10 core/modules/system/tests/src/Functional/System/SitesDirectoryHardeningTest.php \Drupal\Tests\system\Functional\System\SitesDirectoryHardeningTest::makeWritable()
  3. 8.9.x core/modules/system/tests/src/Functional/System/SitesDirectoryHardeningTest.php \Drupal\Tests\system\Functional\System\SitesDirectoryHardeningTest::makeWritable()

Makes the given path and settings file writable.

Parameters

string $site_path: The sites directory path, such as 'sites/default'.

File

core/modules/system/tests/src/Functional/System/SitesDirectoryHardeningTest.php, line 105

Class

SitesDirectoryHardeningTest
Tests Drupal permissions hardening of /sites subdirectories.

Namespace

Drupal\Tests\system\Functional\System

Code

protected function makeWritable($site_path) {
  chmod($site_path, 0755);
  chmod($this->settingsFile($site_path), 0644);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.