[ Index ] |
PHP Cross Reference of Unnamed Project |
[Source view] [Print] [Project Stats]
(no description)
File Size: | 314 lines (11 kb) |
Included or required: | 1 time |
Referenced: | 0 times |
Includes or requires: | 0 files |
HTMLPurifier_URI:: (6 methods):
__construct()
getSchemeObj()
validate()
toString()
isLocal()
isBenign()
Class: HTMLPurifier_URI - X-Ref
HTML Purifier's internal representation of a URI.__construct($scheme, $userinfo, $host, $port, $path, $query, $fragment) X-Ref |
param: string $scheme param: string $userinfo param: string $host param: int $port param: string $path param: string $query param: string $fragment |
getSchemeObj($config, $context) X-Ref |
Retrieves a scheme object corresponding to the URI's scheme/default param: HTMLPurifier_Config $config param: HTMLPurifier_Context $context return: HTMLPurifier_URIScheme Scheme object appropriate for validating this URI |
validate($config, $context) X-Ref |
Generic validation method applicable for all schemes. May modify this URI in order to get it into a compliant form. param: HTMLPurifier_Config $config param: HTMLPurifier_Context $context return: bool True if validation/filtering succeeds, false if failure |
toString() X-Ref |
Convert URI back to string return: string URI appropriate for output |
isLocal($config, $context) X-Ref |
Returns true if this URL might be considered a 'local' URL given the current context. This is true when the host is null, or when it matches the host supplied to the configuration. Note that this does not do any scheme checking, so it is mostly only appropriate for metadata that doesn't care about protocol security. isBenign is probably what you actually want. param: HTMLPurifier_Config $config param: HTMLPurifier_Context $context return: bool |
isBenign($config, $context) X-Ref |
Returns true if this URL should be considered a 'benign' URL, that is: - It is a local URL (isLocal), and - It has a equal or better level of security param: HTMLPurifier_Config $config param: HTMLPurifier_Context $context return: bool |
Generated: Tue Mar 17 22:47:18 2015 | Cross-referenced by PHPXref 0.7.1 |