You are here

function DrupalSystem::variableGet in X Autoload 7.4

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

Replacement of variable_get().

Parameters

string $name:

mixed $default:

Return value

mixed

Overrides DrupalSystemInterface::variableGet

File

lib/DrupalSystem/DrupalSystem.php, line 18

Class

DrupalSystem

Namespace

Drupal\xautoload\DrupalSystem

Code

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