Cheetah
Public Member Functions | Public Attributes | List of all members
HTMLPurifier_DefinitionCache Class Reference
Inheritance diagram for HTMLPurifier_DefinitionCache:
HTMLPurifier_DefinitionCache_Decorator HTMLPurifier_DefinitionCache_Null HTMLPurifier_DefinitionCache_Serializer HTMLPurifier_DefinitionCache_Decorator_Cleanup HTMLPurifier_DefinitionCache_Decorator_Memory

Public Member Functions

 __construct ($type)
 
 generateKey ($config)
 
 isOld ($key, $config)
 
 checkDefType ($def)
 
 add ($def, $config)
 
 set ($def, $config)
 
 replace ($def, $config)
 
 get ($config)
 
 remove ($config)
 
 flush ($config)
 
 cleanup ($config)
 

Public Attributes

 $type
 

Detailed Description

Abstract class representing Definition cache managers that implements useful common methods and is a factory.

Definition at line 3165 of file HTMLPurifier.standalone.php.

Constructor & Destructor Documentation

◆ __construct()

HTMLPurifier_DefinitionCache::__construct (   $type)
Parameters
string$typeType of definition objects this instance of the cache will handle.

Definition at line 3176 of file HTMLPurifier.standalone.php.

Member Function Documentation

◆ add()

HTMLPurifier_DefinitionCache::add (   $def,
  $config 
)
abstract

◆ checkDefType()

HTMLPurifier_DefinitionCache::checkDefType (   $def)

Checks if a definition's type jives with the cache's type

Note
Throws an error on failure
Parameters
HTMLPurifier_Definition$defDefinition object to check
Returns
bool true if good, false if not

Definition at line 3225 of file HTMLPurifier.standalone.php.

◆ cleanup()

HTMLPurifier_DefinitionCache::cleanup (   $config)
abstract

Clears all expired (older version or revision) objects from cache

Note
Be careful implementing this method as flush. Flush must not interfere with other Definition types, and cleanup() should not be repeatedly called by userland code.
Parameters
HTMLPurifier_Config$config

Reimplemented in HTMLPurifier_DefinitionCache_Serializer, HTMLPurifier_DefinitionCache_Null, and HTMLPurifier_DefinitionCache_Decorator.

◆ flush()

HTMLPurifier_DefinitionCache::flush (   $config)
abstract

◆ generateKey()

HTMLPurifier_DefinitionCache::generateKey (   $config)

Generates a unique identifier for a particular configuration

Parameters
HTMLPurifier_Config$configInstance of HTMLPurifier_Config
Returns
string

Definition at line 3186 of file HTMLPurifier.standalone.php.

◆ get()

HTMLPurifier_DefinitionCache::get (   $config)
abstract

◆ isOld()

HTMLPurifier_DefinitionCache::isOld (   $key,
  $config 
)

Tests whether or not a key is old with respect to the configuration's version and revision number.

Parameters
string$keyKey to test
HTMLPurifier_Config$configInstance of HTMLPurifier_Config to test against
Returns
bool

Definition at line 3200 of file HTMLPurifier.standalone.php.

◆ remove()

HTMLPurifier_DefinitionCache::remove (   $config)
abstract

Removes a definition object to the cache

Parameters
HTMLPurifier_Config$config

Reimplemented in HTMLPurifier_DefinitionCache_Serializer, HTMLPurifier_DefinitionCache_Null, and HTMLPurifier_DefinitionCache_Decorator.

◆ replace()

HTMLPurifier_DefinitionCache::replace (   $def,
  $config 
)
abstract

◆ set()

HTMLPurifier_DefinitionCache::set (   $def,
  $config 
)
abstract

Member Data Documentation

◆ $type

HTMLPurifier_DefinitionCache::$type

@type string

Definition at line 3170 of file HTMLPurifier.standalone.php.


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