Skip to content

Instantly share code, notes, and snippets.

@robdecker
Last active November 11, 2020 01:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robdecker/7782398 to your computer and use it in GitHub Desktop.
Save robdecker/7782398 to your computer and use it in GitHub Desktop.
[Load local settings in settings.php] #d7
/**
* Use local settings, if available.
*/
$local_settings = dirname(__FILE__) . '/settings.local.php';
if (file_exists($local_settings)) {
include $local_settings;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment