You are here

function DrupalSystem::variableGet in X Autoload 7.5

Same name and namespace in other branches
  1. 7.4 lib/DrupalSystem/DrupalSystem.php \Drupal\xautoload\DrupalSystem\DrupalSystem::variableGet()

Replacement of variable_get().

Parameters

string $name:

mixed $default:

Return value

mixed

Overrides DrupalSystemInterface::variableGet

See also

variable_get()

File

src/DrupalSystem/DrupalSystem.php, line 23

Class

DrupalSystem

Namespace

Drupal\xautoload\DrupalSystem

Code

function variableGet($name, $default = NULL) {
  return variable_get($name, $default);
}