mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-31 11:39:37 +02:00
There is a phpbb_config class which simply holds an array and does not persist any data. It implements ArrayAccess, Countable and IteratorAggregate to allow regular use of configuration as if it was still an array. The phpbb_config_db class depends on an instance of the dbal and a cache driver. It obtains the configuration data from cache and database as necessary and persists data to the database. The functions set_config and set_config_count remain for backward compatability but they only call methods on the new config class now instead of directly manipulating the database and cache. PHPBB3-9988
94 lines
1.5 KiB
PHP
94 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* @package testing
|
|
* @copyright (c) 2011 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
*
|
|
*/
|
|
|
|
class phpbb_mock_cache implements phpbb_cache_driver_interface
|
|
{
|
|
protected $data;
|
|
|
|
public function __construct($data = array())
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
|
|
public function get($var_name)
|
|
{
|
|
if (isset($this->data[$var_name]))
|
|
{
|
|
return $this->data[$var_name];
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public function put($var_name, $var, $ttl = 0)
|
|
{
|
|
$this->data[$var_name] = $var;
|
|
}
|
|
|
|
public function checkVar(PHPUnit_Framework_Assert $test, $var_name, $data)
|
|
{
|
|
$test->assertTrue(isset($this->data[$var_name]));
|
|
$test->assertEquals($data, $this->data[$var_name]);
|
|
}
|
|
|
|
public function checkVarUnset(PHPUnit_Framework_Assert $test, $var_name)
|
|
{
|
|
$test->assertFalse(isset($this->data[$var_name]));
|
|
}
|
|
|
|
public function check(PHPUnit_Framework_Assert $test, $data)
|
|
{
|
|
$test->assertEquals($data, $this->data);
|
|
}
|
|
|
|
function load()
|
|
{
|
|
}
|
|
function unload()
|
|
{
|
|
}
|
|
function save()
|
|
{
|
|
}
|
|
function tidy()
|
|
{
|
|
}
|
|
function purge()
|
|
{
|
|
}
|
|
function destroy($var_name, $table = '')
|
|
{
|
|
unset($this->data[$var_name]);
|
|
}
|
|
public function _exists($var_name)
|
|
{
|
|
}
|
|
public function sql_load($query)
|
|
{
|
|
}
|
|
public function sql_save($query, &$query_result, $ttl)
|
|
{
|
|
}
|
|
public function sql_exists($query_id)
|
|
{
|
|
}
|
|
public function sql_fetchrow($query_id)
|
|
{
|
|
}
|
|
public function sql_fetchfield($query_id, $field)
|
|
{
|
|
}
|
|
public function sql_rowseek($rownum, $query_id)
|
|
{
|
|
}
|
|
public function sql_freeresult($query_id)
|
|
{
|
|
}
|
|
}
|