Skip to content

Instantly share code, notes, and snippets.

@mrded
Created November 11, 2013 19:22
Show Gist options
  • Save mrded/7418770 to your computer and use it in GitHub Desktop.
Save mrded/7418770 to your computer and use it in GitHub Desktop.
Drupal 8: Working with variables.
<?php
\Drupal::config('module_name.settings')->set('variable', 'hello');
$variable = \Drupal::config('module_name.settings')->get('variable');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment