Skip to content

Instantly share code, notes, and snippets.

@flesheater
Last active April 4, 2019 10: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 flesheater/e9deb9991d371bf4e851790496bad44f to your computer and use it in GitHub Desktop.
Save flesheater/e9deb9991d371bf4e851790496bad44f to your computer and use it in GitHub Desktop.
Custom variable in settings.php
settings.php
$settings['custom_var'] = '55';
then
use Drupal\Core\Site\Settings;
$my_var = settings::get('custom_var', '66') ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment