This repository has been archived on 2024-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
mocks-drupal-variables/bootstrap.php

47 lines
941 B
PHP

<?php
/**
* This file is part of mocks-drupal-variables.
*
* @file bootstrap.php
*
* R. Eric Wheeler <reric@ee.stanford.edu>
*
* 8/5/16 / 10:19 AM
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Sikofitt\Mocks\Drupal\Variables;
define('CONFIG_PATH', __DIR__ . '/storage');
if(!function_exists('variable_get'))
{
function variable_get($variableName, $default = null)
{
$config = new Variables();
return $config->variable_get($variableName, $default);
}
}
if(!function_exists('variable_set'))
{
function variable_set($variableName, $variableValue)
{
$config = new Variables();
return $config->variable_set($variableName, $variableValue);
};
}
if(!function_exists('variable_del'))
{
function variable_del($variableName)
{
$config = new Variables();
return $config->variable_del($variableName);
}
}