Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mparker17/drupal-settings_local_snippets

Snippets to use in a `settings.local.php` file.
https://github.com/mparker17/drupal-settings_local_snippets

drupal php snippets

Last synced: about 2 months ago
JSON representation

Snippets to use in a `settings.local.php` file.

Awesome Lists containing this project

README

        

# drupal7-settings_local_snippets
Snippets to use in a `settings.local.php` file.

Use these to construct a `settings.local.php` file.

Don't forget to add `settings.local.php` to your project's `.gitignore`, and the following snippet to the bottom of your `settings.php` file:

```
/**
* Include a local settings file if it exists.
*/
$local_settings = dirname(__FILE__) . '/settings.local.php';
if (file_exists($local_settings)) {
include $local_settings;
}
```