protected function SitesDirectoryHardeningTest::makeWritable in Drupal 10
Same name and namespace in other branches
- 8 core/modules/system/tests/src/Functional/System/SitesDirectoryHardeningTest.php \Drupal\Tests\system\Functional\System\SitesDirectoryHardeningTest::makeWritable()
- 9 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'.
2 calls to SitesDirectoryHardeningTest::makeWritable()
- SitesDirectoryHardeningTest::testSitesDirectoryHardening in core/
modules/ system/ tests/ src/ Functional/ System/ SitesDirectoryHardeningTest.php - Tests the default behavior to restrict directory permissions is enforced.
- SitesDirectoryHardeningTest::testSitesDirectoryHardeningConfig in core/
modules/ system/ tests/ src/ Functional/ System/ SitesDirectoryHardeningTest.php - Tests writable files remain writable when directory hardening is disabled.
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\SystemCode
protected function makeWritable($site_path) {
chmod($site_path, 0755);
chmod($this
->settingsFile($site_path), 0644);
}