コード例 #1
0
ファイル: Extended.php プロジェクト: knatorski/SMS
 /**
  * @return Base_Dictionary_Dictionary
  */
 public function getDictionary($hashId = false, $separator = ' ')
 {
     $this->_tmpCacheId = null;
     if ($this->_source instanceof DictionaryEntry) {
         return new Base_Dictionary_Dictionary(parent::getDictionary($hashId = false, $separator), $this->_dictType, $this->_backendApplicationId, $this->_buildCacheId());
     } else {
         return parent::getDictionary($hashId = false, $separator);
     }
 }
コード例 #2
0
ファイル: Dictionary.php プロジェクト: knatorski/SMS
 /**
  * Proxy do getDictionary handlera
  * 
  * @return array
  */
 public function getDictionary($hashId = false, $separator = ' ')
 {
     return $this->_handler->getDictionary($hashId, $separator);
 }