Exemple #1
0
 public static function getClientStaticText($identifier, $lang = null)
 {
     if (is_null($lang)) {
         $lang = Zend_Registry::get('languageID');
     }
     $staticText = new StaticTexts();
     $select = $staticText->select()->where("ST_Identifier = ?", $identifier)->where("ST_LangID = ?", $lang);
     //die($select);
     return $staticText->fetchRow($select);
 }