ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
HTMLPurifier_DefinitionCache_Null Class Reference

Null cache object to use when no caching is on. More...

+ Inheritance diagram for HTMLPurifier_DefinitionCache_Null:
+ Collaboration diagram for HTMLPurifier_DefinitionCache_Null:

Public Member Functions

 add ($def, $config)
 
 set ($def, $config)
 
 replace ($def, $config)
 
 remove ($config)
 
 get ($config)
 
 flush ($config)
 
 cleanup ($config)
 
- Public Member Functions inherited from HTMLPurifier_DefinitionCache
 __construct ($type)
 
 generateKey ($config)
 Generates a unique identifier for a particular configuration. More...
 
 isOld ($key, $config)
 Tests whether or not a key is old with respect to the configuration's version and revision number. More...
 
 checkDefType ($def)
 Checks if a definition's type jives with the cache's type. More...
 
 add ($def, $config)
 Adds a definition object to the cache. More...
 
 set ($def, $config)
 Unconditionally saves a definition object to the cache. More...
 
 replace ($def, $config)
 Replace an object in the cache. More...
 
 get ($config)
 Retrieves a definition object from the cache. More...
 
 remove ($config)
 Removes a definition object to the cache. More...
 
 flush ($config)
 Clears all objects from cache. More...
 
 cleanup ($config)
 Clears all expired (older version or revision) objects from cache. More...
 

Additional Inherited Members

- Data Fields inherited from HTMLPurifier_DefinitionCache
 $type
 

Detailed Description

Null cache object to use when no caching is on.

Definition at line 6 of file Null.php.

Member Function Documentation

◆ add()

HTMLPurifier_DefinitionCache_Null::add (   $def,
  $config 
)

Definition at line 9 of file Null.php.

9  {
10  return false;
11  }

◆ cleanup()

HTMLPurifier_DefinitionCache_Null::cleanup (   $config)

Definition at line 33 of file Null.php.

33  {
34  return false;
35  }

◆ flush()

HTMLPurifier_DefinitionCache_Null::flush (   $config)

Definition at line 29 of file Null.php.

29  {
30  return false;
31  }

◆ get()

HTMLPurifier_DefinitionCache_Null::get (   $config)

Definition at line 25 of file Null.php.

25  {
26  return false;
27  }

◆ remove()

HTMLPurifier_DefinitionCache_Null::remove (   $config)

Definition at line 21 of file Null.php.

21  {
22  return false;
23  }

◆ replace()

HTMLPurifier_DefinitionCache_Null::replace (   $def,
  $config 
)

Definition at line 17 of file Null.php.

17  {
18  return false;
19  }

◆ set()

HTMLPurifier_DefinitionCache_Null::set (   $def,
  $config 
)

Definition at line 13 of file Null.php.

13  {
14  return false;
15  }

The documentation for this class was generated from the following file: