Moodle PHP Documentation 4.5
Moodle 4.5dev (Build: 20240606) (d3ae1391abe)
|
Public Member Functions | |
__construct ($definition, $parent=null) | |
Constructor. | |
autoFinalize () | |
Finalizes configuration only if auto finalize is on and not already finalized. | |
finalize () | |
Finalizes a configuration object, prohibiting further change. | |
get ($key, $a=null) | |
Retrieves a value from the configuration. | |
getAll () | |
Retrieves all directives, organized by namespace. | |
getBatch ($namespace) | |
Retrieves an array of directives to values from a given namespace. | |
getBatchSerial ($namespace) | |
Returns a SHA-1 signature of a segment of the configuration object that uniquely identifies that particular configuration. | |
getCSSDefinition ($raw=false, $optimized=false) | |
Retrieves object reference to the CSS definition. | |
getDefinition ($type, $raw=false, $optimized=false) | |
Retrieves a definition. | |
getHTMLDefinition ($raw=false, $optimized=false) | |
Retrieves object reference to the HTML definition. | |
getSerial () | |
Returns a SHA-1 signature for the entire configuration object that uniquely identifies that particular configuration. | |
getURIDefinition ($raw=false, $optimized=false) | |
Retrieves object reference to the URI definition. | |
isFinalized ($error=false) | |
Checks whether or not the configuration object is finalized. | |
loadArray ($config_array) | |
Loads configuration values from an array with the following structure: Namespace.Directive => Value. | |
loadIni ($filename) | |
Loads configuration values from an ini file. | |
maybeGetRawCSSDefinition () | |
maybeGetRawDefinition ($name) | |
maybeGetRawHTMLDefinition () | |
maybeGetRawURIDefinition () | |
mergeArrayFromForm ($array, $index=false, $allowed=true, $mq_fix=true) | |
Merges in configuration values from $_GET/$_POST to object. | |
serialize () | |
Returns a serialized form of the configuration object that can be reconstituted. | |
set ($key, $value, $a=null) | |
Sets a value to configuration. | |
Static Public Member Functions | |
static | create ($config, $schema=null) |
Convenience constructor that creates a config object based on a mixed var. | |
static | createDefault () |
Convenience constructor that creates a default configuration object. | |
static | getAllowedDirectivesForForm ($allowed, $schema=null) |
Returns a list of array(namespace, directive) for all directives that are allowed in a web-form context as per an allowed namespaces/directives list. | |
static | inherit (HTMLPurifier_Config $config) |
Creates a new config object that inherits from a previous one. | |
static | loadArrayFromForm ($array, $index=false, $allowed=true, $mq_fix=true, $schema=null) |
Loads configuration values from $_GET/$_POST that were posted via ConfigForm. | |
static | prepareArrayFromForm ($array, $index=false, $allowed=true, $mq_fix=true, $schema=null) |
Prepares an array from a form into something usable for the more strict parts of HTMLPurifier_Config. | |
Public Attributes | |
$autoFinalize = true | |
Whether or not to automatically finalize the object if a read operation is done. | |
$chatty = true | |
Set to false if you do not want line and file numbers in errors. | |
$def | |
Reference HTMLPurifier_ConfigSchema for value checking. | |
$version = '4.17.0' | |
HTML Purifier's version @type string. | |
Protected Member Functions | |
triggerError ($msg, $no) | |
Produces a nicely formatted error message by supplying the stack frame information OUTSIDE of HTMLPurifier_Config. | |
Protected Attributes | |
$definitions | |
Indexed array of definitions. | |
$finalized = false | |
Whether or not config is finalized. | |
$parser = null | |
Parser for variables. | |
$plist | |
Property list containing configuration directives. | |
$serial | |
Serial for entire configuration object. | |
$serials = array() | |
Namespace indexed array of serials for specific namespaces. | |
HTMLPurifier_Config::__construct | ( | $definition, | |
$parent = null ) |
Constructor.
HTMLPurifier_ConfigSchema | $definition | ConfigSchema that defines what directives are allowed. |
HTMLPurifier_PropertyList | $parent |
|
static |
Convenience constructor that creates a config object based on a mixed var.
mixed | $config | Variable that defines the state of the config object. Can be: a HTMLPurifier_Config() object, an array of directives based on loadArray(), or a string filename of an ini file. |
HTMLPurifier_ConfigSchema | $schema | Schema object |
HTMLPurifier_Config | Configured object |
|
static |
Convenience constructor that creates a default configuration object.
HTMLPurifier_Config | default object. |
HTMLPurifier_Config::get | ( | $key, | |
$a = null ) |
Retrieves a value from the configuration.
string | $key | String key |
mixed | $a |
mixed |
HTMLPurifier_Config::getAll | ( | ) |
Retrieves all directives, organized by namespace.
|
static |
Returns a list of array(namespace, directive) for all directives that are allowed in a web-form context as per an allowed namespaces/directives list.
array | $allowed | List of allowed namespaces/directives |
HTMLPurifier_ConfigSchema | $schema | Schema to use, if not global copy |
array |
HTMLPurifier_Config::getBatch | ( | $namespace | ) |
Retrieves an array of directives to values from a given namespace.
string | $namespace | String namespace |
array |
HTMLPurifier_Config::getBatchSerial | ( | $namespace | ) |
Returns a SHA-1 signature of a segment of the configuration object that uniquely identifies that particular configuration.
string | $namespace | Namespace to get serial for |
string |
HTMLPurifier_Config::getCSSDefinition | ( | $raw = false, | |
$optimized = false ) |
Retrieves object reference to the CSS definition.
bool | $raw | Return a copy that has not been setup yet. Must be called before it's been setup, otherwise won't work. |
bool | $optimized | If true, this method may return null, to indicate that a cached version of the modified definition object is available and no further edits are necessary. Consider using maybeGetRawCSSDefinition, which is more explicitly named, instead. |
HTMLPurifier_CSSDefinition|null |
HTMLPurifier_Config::getDefinition | ( | $type, | |
$raw = false, | |||
$optimized = false ) |
Retrieves a definition.
string | $type | Type of definition: HTML, CSS, etc |
bool | $raw | Whether or not definition should be returned raw |
bool | $optimized | Only has an effect when $raw is true. Whether or not to return null if the result is already present in the cache. This is off by default for backwards compatibility reasons, but you need to do things this way in order to ensure that caching is done properly. Check out enduser-customize.html for more details. We probably won't ever change this default, as much as the maybe semantics is the "right thing to do." |
HTMLPurifier_Exception |
HTMLPurifier_Definition|null |
HTMLPurifier_Config::getHTMLDefinition | ( | $raw = false, | |
$optimized = false ) |
Retrieves object reference to the HTML definition.
bool | $raw | Return a copy that has not been setup yet. Must be called before it's been setup, otherwise won't work. |
bool | $optimized | If true, this method may return null, to indicate that a cached version of the modified definition object is available and no further edits are necessary. Consider using maybeGetRawHTMLDefinition, which is more explicitly named, instead. |
HTMLPurifier_HTMLDefinition|null |
HTMLPurifier_Config::getSerial | ( | ) |
Returns a SHA-1 signature for the entire configuration object that uniquely identifies that particular configuration.
string |
HTMLPurifier_Config::getURIDefinition | ( | $raw = false, | |
$optimized = false ) |
Retrieves object reference to the URI definition.
bool | $raw | Return a copy that has not been setup yet. Must be called before it's been setup, otherwise won't work. |
bool | $optimized | If true, this method may return null, to indicate that a cached version of the modified definition object is available and no further edits are necessary. Consider using maybeGetRawURIDefinition, which is more explicitly named, instead. |
HTMLPurifier_URIDefinition|null |
|
static |
Creates a new config object that inherits from a previous one.
HTMLPurifier_Config | $config | Configuration object to inherit from. |
HTMLPurifier_Config | object with $config as its parent. |
HTMLPurifier_Config::isFinalized | ( | $error = false | ) |
Checks whether or not the configuration object is finalized.
string | bool | $error | String error message, or false for no error |
bool |
HTMLPurifier_Config::loadArray | ( | $config_array | ) |
Loads configuration values from an array with the following structure: Namespace.Directive => Value.
array | $config_array | Configuration associative array |
|
static |
Loads configuration values from $_GET/$_POST that were posted via ConfigForm.
array | $array | $_GET or $_POST array to import |
string | bool | $index | Index/name that the config variables are in |
array | bool | $allowed | List of allowed namespaces/directives |
bool | $mq_fix | Boolean whether or not to enable magic quotes fix |
HTMLPurifier_ConfigSchema | $schema | Schema to use, if not global copy |
mixed |
HTMLPurifier_Config::loadIni | ( | $filename | ) |
Loads configuration values from an ini file.
string | $filename | Name of ini file |
HTMLPurifier_Config::maybeGetRawCSSDefinition | ( | ) |
HTMLPurifier_CSSDefinition|null |
HTMLPurifier_Config::maybeGetRawHTMLDefinition | ( | ) |
HTMLPurifier_HTMLDefinition|null |
HTMLPurifier_Config::maybeGetRawURIDefinition | ( | ) |
HTMLPurifier_URIDefinition|null |
HTMLPurifier_Config::mergeArrayFromForm | ( | $array, | |
$index = false, | |||
$allowed = true, | |||
$mq_fix = true ) |
Merges in configuration values from $_GET/$_POST to object.
NOT STATIC.
array | $array | $_GET or $_POST array to import |
string | bool | $index | Index/name that the config variables are in |
array | bool | $allowed | List of allowed namespaces/directives |
bool | $mq_fix | Boolean whether or not to enable magic quotes fix |
|
static |
Prepares an array from a form into something usable for the more strict parts of HTMLPurifier_Config.
array | $array | $_GET or $_POST array to import |
string | bool | $index | Index/name that the config variables are in |
array | bool | $allowed | List of allowed namespaces/directives |
bool | $mq_fix | Boolean whether or not to enable magic quotes fix |
HTMLPurifier_ConfigSchema | $schema | Schema to use, if not global copy |
array |
HTMLPurifier_Config::serialize | ( | ) |
Returns a serialized form of the configuration object that can be reconstituted.
string |
HTMLPurifier_Config::set | ( | $key, | |
$value, | |||
$a = null ) |
Sets a value to configuration.
string | $key | key |
mixed | $value | value |
mixed | $a |
|
protected |
Produces a nicely formatted error message by supplying the stack frame information OUTSIDE of HTMLPurifier_Config.
string | $msg | An error message |
int | $no | An error number |
HTMLPurifier_Config::$autoFinalize = true |
Whether or not to automatically finalize the object if a read operation is done.
@type bool
HTMLPurifier_Config::$chatty = true |
Set to false if you do not want line and file numbers in errors.
(useful when unit testing). This will also compress some errors and exceptions. @type bool
HTMLPurifier_Config::$def |
Reference HTMLPurifier_ConfigSchema for value checking.
@type HTMLPurifier_ConfigSchema
|
protected |
Indexed array of definitions.
@type HTMLPurifier_Definition[]
|
protected |
Whether or not config is finalized.
@type bool
|
protected |
Parser for variables.
|
protected |
Property list containing configuration directives.
@type array
|
protected |
Serial for entire configuration object.
@type string
|
protected |
Namespace indexed array of serials for specific namespaces.