Moodle  2.2.1
http://www.collinsharper.com
HTMLPurifier_Injector_SafeObject Class Reference
Inheritance diagram for HTMLPurifier_Injector_SafeObject:
Collaboration diagram for HTMLPurifier_Injector_SafeObject:

Public Member Functions

 prepare ($config, $context)
 handleElement (&$token)
 handleEnd (&$token)

Data Fields

 $name = 'SafeObject'
 $needed = array('object', 'param')

Protected Attributes

 $objectStack = array()
 $paramStack = array()
 $addParam
 $allowedParam

Detailed Description

Adds important param elements to inside of object in order to make things safe.

Definition at line 7 of file SafeObject.php.


Member Function Documentation

handleElement ( &$  token)

Handler that is called when a start or empty token is processed

Reimplemented from HTMLPurifier_Injector.

Definition at line 32 of file SafeObject.php.

handleEnd ( &$  token)

Handler that is called when an end token is processed

Reimplemented from HTMLPurifier_Injector.

Definition at line 79 of file SafeObject.php.

prepare ( config,
context 
)

Prepares the injector by giving it the config and context objects: this allows references to important variables to be made within the injector. This function also checks if the HTML environment will work with the Injector (see checkNeeded()).

Parameters:
$configInstance of HTMLPurifier_Config
$contextInstance of HTMLPurifier_Context
Returns:
Boolean false if success, string of missing needed element/attribute if failure

Reimplemented from HTMLPurifier_Injector.

Definition at line 28 of file SafeObject.php.


Field Documentation

$addParam [protected]
Initial value:
 array(
        'allowScriptAccess' => 'never',
        'allowNetworking' => 'internal',
    )

Definition at line 16 of file SafeObject.php.

$allowedParam [protected]
Initial value:
 array(
        'wmode' => true,
        'movie' => true,
        'flashvars' => true,
        'src' => true,
        'allowFullScreen' => true, 
    )

Definition at line 20 of file SafeObject.php.

$name = 'SafeObject'

Advisory name of injector, this is for friendly error messages

Reimplemented from HTMLPurifier_Injector.

Definition at line 9 of file SafeObject.php.

$needed = array('object', 'param')

Array of elements and attributes this injector creates and therefore need to be allowed by the definition. Takes form of array('element' => array('attr', 'attr2'), 'element2')

Reimplemented from HTMLPurifier_Injector.

Definition at line 10 of file SafeObject.php.

$objectStack = array() [protected]

Definition at line 12 of file SafeObject.php.

$paramStack = array() [protected]

Definition at line 13 of file SafeObject.php.


The documentation for this class was generated from the following file:
 All Data Structures Namespaces Files Functions Variables Enumerations