Cheetah
|
Public Member Functions | |
__construct ($config, $context) | |
load () | |
getMessage ($key) | |
getErrorName ($int) | |
listify ($array) | |
formatMessage ($key, $args=array()) | |
Public Attributes | |
$code = 'en' | |
$fallback = false | |
$messages = array() | |
$errorNames = array() | |
$error = false | |
$_loaded = false | |
Protected Attributes | |
$config | |
$context | |
Represents a language and defines localizable string formatting and other functions, as well as the localized messages for HTML Purifier.
Definition at line 7051 of file HTMLPurifier.standalone.php.
HTMLPurifier_Language::__construct | ( | $config, | |
$context | |||
) |
HTMLPurifier_Config | $config | |
HTMLPurifier_Context | $context |
Definition at line 7107 of file HTMLPurifier.standalone.php.
HTMLPurifier_Language::formatMessage | ( | $key, | |
$args = array() |
|||
) |
Formats a localised message with passed parameters
string | $key | string identifier of message |
array | $args | Parameters to substitute in |
Definition at line 7192 of file HTMLPurifier.standalone.php.
HTMLPurifier_Language::getErrorName | ( | $int | ) |
Retrieves a localised error name.
int | $int | error number, corresponding to PHP's error reporting |
Definition at line 7151 of file HTMLPurifier.standalone.php.
HTMLPurifier_Language::getMessage | ( | $key | ) |
Retrieves a localised message.
string | $key | string identifier of message |
Definition at line 7135 of file HTMLPurifier.standalone.php.
HTMLPurifier_Language::listify | ( | $array | ) |
Converts an array list into a string readable representation
array | $array |
Definition at line 7167 of file HTMLPurifier.standalone.php.
HTMLPurifier_Language::load | ( | ) |
Loads language object with necessary info from factory cache
Definition at line 7117 of file HTMLPurifier.standalone.php.
HTMLPurifier_Language::$_loaded = false |
Has the language object been loaded yet? @type bool
Definition at line 7091 of file HTMLPurifier.standalone.php.
HTMLPurifier_Language::$code = 'en' |
ISO 639 language code of language. Prefers shortest possible version. @type string
Definition at line 7058 of file HTMLPurifier.standalone.php.
|
protected |
@type HTMLPurifier_Config
Definition at line 7096 of file HTMLPurifier.standalone.php.
|
protected |
@type HTMLPurifier_Context
Definition at line 7101 of file HTMLPurifier.standalone.php.
HTMLPurifier_Language::$error = false |
True if no message file was found for this language, so English is being used instead. Check this if you'd like to notify the user that they've used a non-supported language. @type bool
Definition at line 7084 of file HTMLPurifier.standalone.php.
HTMLPurifier_Language::$errorNames = array() |
Array of localizable error codes. @type array
Definition at line 7076 of file HTMLPurifier.standalone.php.
HTMLPurifier_Language::$fallback = false |
Fallback language code. @type bool|string
Definition at line 7064 of file HTMLPurifier.standalone.php.
HTMLPurifier_Language::$messages = array() |
Array of localizable messages. @type array
Definition at line 7070 of file HTMLPurifier.standalone.php.