Tags
Table of Contents
- $cachefile : mixed
- String filename for cache
- $current_data : mixed
- String Current data value.
- $current_key : mixed
- String Current tu -> tuid value.
- $current_language : mixed
- String Current tuv -> xml:lang value.
- $language : mixed
- String ISO language identifier (a two- or three-letter code)
- $resource : mixed
- Array used to contain key-translation couples.
- $segdata : mixed
- Boolean value true when we are inside a seg element
- __construct() : mixed
- Class constructor.
- __destruct() : mixed
- Class destructor; resets $resource array.
- getResource() : mixed
- Returns the resource array containing the translated word/sentences.
- endElementHandler() : mixed
- Sets the end element handler function for the XML parser parser.end_element_handler.
- segContentHandler() : mixed
- Sets the character data handler function for the XML parser parser.handler.
- startElementHandler() : mixed
- Sets the start element handler function for the XML parser parser.start_element_handler.
Properties
$cachefile
String filename for cache
private mixed $cachefile = ''
Tags
$current_data
String Current data value.
private mixed $current_data = ''
Tags
$current_key
String Current tu -> tuid value.
private mixed $current_key = ''
Tags
$current_language
String Current tuv -> xml:lang value.
private mixed $current_language =
''
Tags
$language
String ISO language identifier (a two- or three-letter code)
private mixed $language = ''
Tags
$resource
Array used to contain key-translation couples.
private mixed $resource = array()
Tags
$segdata
Boolean value true when we are inside a seg element
private mixed $segdata = \false
Tags
Methods
__construct()
Class constructor.
public __construct( $tmxfile,
$language[,
$cachefile
= ''
]) : mixed
Parameters
- $tmxfile :
-
(string) TMX (XML) file name
- $language :
-
(string) ISO language identifier (a two- or three-letter code)
- $cachefile : = ''
-
(string) set filename for cache (leave blank to exclude cache)
Return values
mixed —__destruct()
Class destructor; resets $resource array.
public __destruct()
: mixed
Return values
mixed —getResource()
Returns the resource array containing the translated word/sentences.
public getResource()
: mixed
Return values
mixed —endElementHandler()
Sets the end element handler function for the XML parser parser.end_element_handler.
private endElementHandler( $parser,
$name)
: mixed
Parameters
- $parser :
-
(resource) The first parameter, parser, is a reference to the XML parser calling the handler.
- $name :
-
(string) The second parameter, name, contains the name of the element for which this handler is called. If case-folding is in effect for this parser, the element name will be in uppercase letters.
Tags
Return values
mixed —segContentHandler()
Sets the character data handler function for the XML parser parser.handler.
private segContentHandler( $parser,
$data)
: mixed
Parameters
- $parser :
-
(resource) The first parameter, parser, is a reference to the XML parser calling the handler.
- $data :
-
(string) The second parameter, data, contains the character data as a string.
Tags
Return values
mixed —startElementHandler()
Sets the start element handler function for the XML parser parser.start_element_handler.
private startElementHandler( $parser,
$name,
$attribs)
: mixed
Parameters
- $parser :
-
(resource) The first parameter, parser, is a reference to the XML parser calling the handler.
- $name :
-
(string) The second parameter, name, contains the name of the element for which this handler is called. If case-folding is in effect for this parser, the element name will be in uppercase letters.
- $attribs :
-
(array) The third parameter, attribs, contains an associative array with the element's attributes (if any). The keys of this array are the attribute names, the values are the attribute values. Attribute names are case-folded on the same criteria as element names. Attribute values are not case-folded. The original order of the attributes can be retrieved by walking through attribs the normal way, using each(). The first key in the array was the first attribute, and so on.