. if (!defined('EG')) die('Direct access not allowed!'); class Lang_ResultStrings { public $string = array(); //method to get the string $stringName public function getString($stringName) { if (isset($this->string[$stringName])) { return $this->string[$stringName]; } else { return 'result string not defined!'; } } }