1: <?php
2: /**
3: * Null cache implementation for the preferences system.
4: *
5: * Copyright 2010-2012 Horde LLC (http://www.horde.org/)
6: *
7: * See the enclosed file COPYING for license information (LGPL). If you
8: * did not receive this file, see http://www.horde.org/licenses/lgpl21.
9: *
10: * @author Michael Slusarz <slusarz@horde.org>
11: * @category Horde
12: * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
13: * @package Prefs
14: */
15: class Horde_Prefs_Cache_Null extends Horde_Prefs_Cache_Base
16: {
17: /**
18: */
19: public function get($scope)
20: {
21: return false;
22: }
23:
24: /**
25: */
26: public function store($scope_ob)
27: {
28: }
29:
30: /**
31: */
32: public function remove($scope = null)
33: {
34: }
35:
36: }
37: