예제 #1
0
 /**
  * Обновляет значение поля топика
  *
  * @param ModuleTopic_EntityContentValues $oValue    Объект поля
  *
  * @return bool
  */
 public function UpdateContentFieldValue($oValue)
 {
     if ($this->oMapper->UpdateContentFieldValue($oValue)) {
         //чистим зависимые кеши
         E::ModuleCache()->CleanByTags(array('topic_update'));
         return true;
     }
     return false;
 }