diff options
author | Urban Müller | 2007-09-17 15:44:30 +0000 |
---|---|---|
committer | Urban Müller | 2007-09-17 15:44:30 +0000 |
commit | a5a9f6822e3508ee6d0c28b872a4f260cd29bfa2 (patch) | |
tree | b490a334e8ba5bf4484384c9c6167a2c64cbb799 | |
parent | df8760daf63e7e90832263f2d88ec9bd5ae4bb0e (diff) | |
download | itools-a5a9f6822e3508ee6d0c28b872a4f260cd29bfa2.tar.gz itools-a5a9f6822e3508ee6d0c28b872a4f260cd29bfa2.tar.bz2 itools-a5a9f6822e3508ee6d0c28b872a4f260cd29bfa2.zip |
function docs
-rw-r--r-- | it_text.class | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/it_text.class b/it_text.class index 0782a37..ab9f3ad 100644 --- a/it_text.class +++ b/it_text.class @@ -92,7 +92,7 @@ function init() /** - * Return a text in the selected language. + * INTERNAL function for T(): Return a text in the selected language. * @param $label Label of text to return * @param $raw Optional unused obsolete parameter * @param $language Optional language to return text in. @@ -122,7 +122,7 @@ function text($label, $raw = null, $language = null) /** - * Return a text in the selected language, with correctly encoded umlauts. + * INTERNAL function for ET(): Return a text in the selected language * Replaces variables of the form {obj.var} with value, e.g. {user.name} * NOTE: Invalid object names or non-existing variables are simply deleted. * @param $label Label of text to return @@ -137,7 +137,7 @@ function etext($label, $values = null, $language = null) /** - * Change language + * INTERNAL function for T_set_language(): Change language * @param $language New language to set * @param $setcookie Optional flag if a cookie is to be set (default: true) */ @@ -162,7 +162,7 @@ function set_language($language, $setcookie = true) /** - * Get active language + * INTERNAL function for T_lang(): Get active language * @return currently active language */ function get_language() @@ -172,7 +172,7 @@ function get_language() /** - * Check if a text entry for a specific label exists + * INTERNAL function for T_exists(): Check if a text entry for a specific label exists * @param $label Label to check * @return true if text exists in actual (or supplied) language, false otherwise. */ |