Documentation
setLanguage
usage
Sushee_Shell->setLanguage(string languageISOcode)
Forces all the commands to be executed for a specific language, even if the visitor's language is different.
exemples
include_once('../sushee/common.php');
$shell = new Sushee_Shell();
$shell->setLanguage('eng');
$shell->addCommand(
'<GET>
<MEDIA ID="25"/>
</GET>'
);
$shell->execute();