sfNoCache.class.php 1.27 KB
Newer Older
Игорь's avatar
init    
Игорь committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php

/*
 * This file is part of the symfony package.
 * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
 * 
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * Cache class that does nothing.
 *
 * @package    symfony
 * @subpackage cache
 * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
 * @version    SVN: $Id: sfNoCache.class.php 10970 2008-08-19 19:02:38Z fabien $
 */
class sfNoCache extends sfCache
{
  /**
   * @see sfCache
   */
  public function get($key, $default = null)
  {
    return $default;
  }

  /**
   * @see sfCache
   */
  public function has($key)
  {
    return false;
  }

  /**
   * @see sfCache
   */
  public function set($key, $data, $lifetime = null)
  {
    return true;
  }

  /**
   * @see sfCache
   */
  public function remove($key)
  {
    return true;
  }

  /**
   * @see sfCache
   */
  public function removePattern($pattern)
  {
    return true;
  }

  /**
   * @see sfCache
   */
  public function clean($mode = self::ALL)
  {
    return true;
  }

  /**
   * @see sfCache
   */
  public function getLastModified($key)
  {
    return 0;
  }

  /**
   * @see sfCache
   */
  public function getTimeout($key)
  {
    return 0;
  }
}