Skip to content

Instantly share code, notes, and snippets.

@johannez
Created October 11, 2013 06:46
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 johannez/6930537 to your computer and use it in GitHub Desktop.
Save johannez/6930537 to your computer and use it in GitHub Desktop.
Include local settings file for Drupal
<?php
/**
* Include a local settings file if it exists.
*/
$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