WIKINDX CLASSES

LANGUAGE

Class Call:
include_once("core/messages/LANGUAGE.php");
$language = new LANGUAGE();

Description:
This class is called internally by WIKINDX and provides an associative array comprising all languages WIKINDX supports. For example:
	$this->tongue = array(
		'en'	=>	'English',
		'de'	=>	'Deutsch',
	);

The two-character key of this array must match the method names within classes such as MESSAGES and ERRORS. For example, each of those classes has methods called 'en' and 'de' that hold message strings and their translations.

Methods:
There are no public methods.

WIKINDX home      WIKINDX usage      WIKINDX classes