ILIAS
Release_5_0_x_branch Revision 61816
|
Class responsible for generating HTMLPurifier_Language objects, managing caching and fallbacks. More...
Public Member Functions | |
setup () | |
Sets up the singleton, much like a constructor. | |
create ($config, $context, $code=false) | |
Creates a language object, handles class fallbacks. | |
getFallbackFor ($code) | |
Returns the fallback language for language. | |
loadLanguage ($code) | |
Loads language into the cache, handles message file and fallbacks. |
Static Public Member Functions | |
static | instance ($prototype=null) |
Retrieve sole instance of the factory. |
Data Fields | |
$cache | |
Cache of language code information used to load HTMLPurifier_Language objects. | |
$keys = array('fallback', 'messages', 'errorNames') | |
Valid keys in the HTMLPurifier_Language object. |
Protected Attributes | |
$validator | |
Instance to validate language codes. | |
$dir | |
Cached copy of dirname(FILE), directory of current file without trailing slash. | |
$mergeable_keys_map = array('messages' => true, 'errorNames' => true) | |
Keys whose contents are a hash map and can be merged. | |
$mergeable_keys_list = array() | |
Keys whose contents are a list and can be merged. |
Class responsible for generating HTMLPurifier_Language objects, managing caching and fallbacks.
Definition at line 10 of file LanguageFactory.php.
HTMLPurifier_LanguageFactory::create | ( | $config, | |
$context, | |||
$code = false |
|||
) |
Creates a language object, handles class fallbacks.
HTMLPurifier_Config | $config | |
HTMLPurifier_Context | $context | |
bool | string | $code | Code to override configuration with. Private parameter. |
Definition at line 88 of file LanguageFactory.php.
References $fallback, $file, $lang, and getFallbackFor().
HTMLPurifier_LanguageFactory::getFallbackFor | ( | $code | ) |
Returns the fallback language for language.
string | $code | language code |
Definition at line 136 of file LanguageFactory.php.
References loadLanguage().
Referenced by create().
|
static |
Retrieve sole instance of the factory.
HTMLPurifier_LanguageFactory | $prototype | Optional prototype to overload sole instance with, or bool true to reset to default factory. |
Definition at line 59 of file LanguageFactory.php.
Referenced by HTMLPurifier_Language\load().
HTMLPurifier_LanguageFactory::loadLanguage | ( | $code | ) |
Loads language into the cache, handles message file and fallbacks.
string | $code | language code |
Definition at line 146 of file LanguageFactory.php.
References $cache, $fallback, and $filename.
Referenced by getFallbackFor().
HTMLPurifier_LanguageFactory::setup | ( | ) |
Sets up the singleton, much like a constructor.
Definition at line 75 of file LanguageFactory.php.
HTMLPurifier_LanguageFactory::$cache |
Cache of language code information used to load HTMLPurifier_Language objects.
Structure is: $factory->cache[$language_code][$key] = $value array
Definition at line 18 of file LanguageFactory.php.
Referenced by loadLanguage().
|
protected |
Cached copy of dirname(FILE), directory of current file without trailing slash.
string
Definition at line 39 of file LanguageFactory.php.
HTMLPurifier_LanguageFactory::$keys = array('fallback', 'messages', 'errorNames') |
Valid keys in the HTMLPurifier_Language object.
Designates which variables to slurp out of a message file. array
Definition at line 25 of file LanguageFactory.php.
|
protected |
Keys whose contents are a list and can be merged.
array lookup
Definition at line 51 of file LanguageFactory.php.
|
protected |
Keys whose contents are a hash map and can be merged.
array
Definition at line 45 of file LanguageFactory.php.
|
protected |
Instance to validate language codes.
Definition at line 32 of file LanguageFactory.php.