Esempio n. 1
0
 public function __construct()
 {
     $tpl = $this->getTPL('blocks/head/head');
     $toReplace = array('{lang}', '{allLangs}');
     $langM = new Modules_Controllers_Lang();
     $replace = array(Config::$lang, $langM->genLangHTML());
     $html = str_replace($toReplace, $replace, $tpl);
     $this->render($html);
 }