public function __construct()
 {
     $this->orm = Record::getInstance();
     $this->cache = new Cache();
 }
 /**
  * Sets the Meta Main Data.
  *
  * @param string $sSection
  * @param string $sValue
  * @param string $sLangId
  * @return void
  */
 public static function setMetaMain($sSection, $sValue, $sLangId)
 {
     Engine\Record::getInstance()->update('MetaMain', $sSection, $sValue, 'langId', $sLangId);
 }