'sites/default/files', ); } else { $config_directories = array( CONFIG_SYNC_DIRECTORY => 'sites/default/config', ); } /** * Allow Drupal 8 to Cleanly Redirect to Install.php For New Sites. * * Issue: https://github.com/pantheon-systems/drops-8/issues/3 * * c.f. https://github.com/pantheon-systems/drops-8/pull/53 * */ if ( isset($_ENV['PANTHEON_ENVIRONMENT']) && !$is_installer_url && (isset($_SERVER['PANTHEON_DATABASE_STATE']) && ($_SERVER['PANTHEON_DATABASE_STATE'] == 'empty')) && (empty($GLOBALS['install_state'])) && (php_sapi_name() != "cli") ) { include_once __DIR__ . '/../../core/includes/install.core.inc'; include_once __DIR__ . '/../../core/includes/install.inc'; install_goto('core/install.php'); } /** * Override the $databases variable to pass the correct Database credentials * directly from Pantheon to Drupal. * * Issue: https://github.com/pantheon-systems/drops-8/issues/8 * */ if (isset($_SERVER['PRESSFLOW_SETTINGS'])) { $pressflow_settings = json_decode($_SERVER['PRESSFLOW_SETTINGS'], TRUE); foreach ($pressflow_settings as $key => $value) { // One level of depth should be enough for $conf and $database. if ($key == 'conf') { foreach($value as $conf_key => $conf_value) { $conf[$conf_key] = $conf_value; } } elseif ($key == 'databases') { // Protect default configuration but allow the specification of // additional databases. Also, allows fun things with 'prefix' if they // want to try multisite. if (!isset($databases) || !is_array($databases)) { $databases = array(); } $databases = array_replace_recursive($databases, $value); } else { $$key = $value; } } } /** * Handle Hash Salt Value from Drupal * * Issue: https://github.com/pantheon-systems/drops-8/issues/10 * */ if (isset($_ENV['PANTHEON_ENVIRONMENT'])) { $settings['hash_salt'] = $_ENV['DRUPAL_HASH_SALT']; } /** * Define appropriate location for tmp directory * * Issue: https://github.com/pantheon-systems/drops-8/issues/114 * */ if (isset($_ENV['PANTHEON_ENVIRONMENT'])) { $config['system.file']['path']['temporary'] = $_SERVER['HOME'] .'/tmp'; } /** * The default list of directories that will be ignored by Drupal's file API. * * By default ignore node_modules and bower_components folders to avoid issues * with common frontend tools and recursive scanning of directories looking for * extensions. * * @see file_scan_directory() * @see \Drupal\Core\Extension\ExtensionDiscovery::scanDirectory() */ if (empty($settings['file_scan_ignore_directories'])) { $settings['file_scan_ignore_directories'] = [ 'node_modules', 'bower_components', ]; }