Exemplo n.º 1
0
 protected function getCustomTransactionOldValue(PhabricatorLiskDAO $object, PhabricatorApplicationTransaction $xaction)
 {
     switch ($xaction->getTransactionType()) {
         case ConpherenceTransactionType::TYPE_TITLE:
             return $object->getTitle();
         case ConpherenceTransactionType::TYPE_PARTICIPANTS:
             return $object->getParticipantPHIDs();
         case ConpherenceTransactionType::TYPE_FILES:
             return $object->getFilePHIDs();
     }
 }
 protected function getCustomTransactionOldValue(PhabricatorLiskDAO $object, PhabricatorApplicationTransaction $xaction)
 {
     switch ($xaction->getTransactionType()) {
         case ConpherenceTransaction::TYPE_TITLE:
             return $object->getTitle();
         case ConpherenceTransaction::TYPE_TOPIC:
             return $object->getTopic();
         case ConpherenceTransaction::TYPE_PICTURE:
             return $object->getProfileImagePHID();
         case ConpherenceTransaction::TYPE_PARTICIPANTS:
             if ($this->getIsNewObject()) {
                 return array();
             }
             return $object->getParticipantPHIDs();
     }
 }
Exemplo n.º 3
0
 protected function getCustomTransactionOldValue(PhabricatorLiskDAO $object, PhabricatorApplicationTransaction $xaction)
 {
     switch ($xaction->getTransactionType()) {
         case ConpherenceTransaction::TYPE_TITLE:
             return $object->getTitle();
         case ConpherenceTransaction::TYPE_PICTURE:
             return $object->getImagePHID(ConpherenceImageData::SIZE_ORIG);
         case ConpherenceTransaction::TYPE_PICTURE_CROP:
             return $object->getImagePHID(ConpherenceImageData::SIZE_CROP);
         case ConpherenceTransaction::TYPE_PARTICIPANTS:
             if ($this->getIsNewObject()) {
                 return array();
             }
             return $object->getParticipantPHIDs();
         case ConpherenceTransaction::TYPE_FILES:
             return $object->getFilePHIDs();
     }
 }