\HTMLPurifier_DefinitionCache_Decorator

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

Summary

Methods
Properties
Constants
__construct()
generateKey()
isOld()
checkDefType()
add()
set()
replace()
get()
remove()
flush()
cleanup()
decorate()
copy()
$type
$cache
$name
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
No private properties found
N/A

Properties

$type

$type : 

Type

$cache

$cache : 

Cache object we are decorating

Type

$name

$name : string

The name of the decorator

Type

string

Methods

__construct()

__construct() 

generateKey()

generateKey(\HTMLPurifier_Config  $config) : string

Generates a unique identifier for a particular configuration

Parameters

\HTMLPurifier_Config $config

Instance of HTMLPurifier_Config

Returns

string

isOld()

isOld(string  $key, \HTMLPurifier_Config  $config) : boolean

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

Parameters

string $key

Key to test

\HTMLPurifier_Config $config

Instance of HTMLPurifier_Config to test against

Returns

boolean

checkDefType()

checkDefType(\HTMLPurifier_Definition  $def) : boolean

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

Parameters

\HTMLPurifier_Definition $def

Definition object to check

Returns

boolean —

true if good, false if not

get()

get(\HTMLPurifier_Config  $config) : mixed

Retrieves a definition object from the cache

Parameters

\HTMLPurifier_Config $config

Returns

mixed

remove()

remove(\HTMLPurifier_Config  $config) : mixed

Removes a definition object to the cache

Parameters

\HTMLPurifier_Config $config

Returns

mixed

flush()

flush(\HTMLPurifier_Config  $config) : mixed

Clears all objects from cache

Parameters

\HTMLPurifier_Config $config

Returns

mixed

cleanup()

cleanup(\HTMLPurifier_Config  $config) : mixed

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

Parameters

\HTMLPurifier_Config $config

Returns

mixed