static public function toolBar()
{
var_dump(static::$_lang);
var_dump(static::$_lang->getVal('Index'));
return <<< EOC
<a href="index.php">{${static::$_lang->getVal('Index')}}</a> |
<a href="?view=login">{${static::$_lang->getVal('Login')}}</a> |
EOC;
}
The Expression {${static::$_lang->getVal('Index')}} return nothing instead of the string
There is any workaround for this problem?
Thanks in advance