Differential D19861 Diff 47440 src/applications/transactions/storage/PhabricatorApplicationTransaction.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/transactions/storage/PhabricatorApplicationTransaction.php
| Show First 20 Lines • Show All 1,656 Lines • ▼ Show 20 Lines | return pht( | ||||
| 'acted upon. Some transactions - in particular, comments - are '. | 'acted upon. Some transactions - in particular, comments - are '. | ||||
| 'editable by the transaction author.'); | 'editable by the transaction author.'); | ||||
| } | } | ||||
| public function getModularType() { | public function getModularType() { | ||||
| return null; | return null; | ||||
| } | } | ||||
| public function setForceNotifyPHIDs(array $phids) { | |||||
| $this->setMetadataValue('notify.force', $phids); | |||||
| return $this; | |||||
| } | |||||
| public function getForceNotifyPHIDs() { | |||||
| return $this->getMetadataValue('notify.force', array()); | |||||
| } | |||||
| /* -( PhabricatorDestructibleInterface )----------------------------------- */ | /* -( PhabricatorDestructibleInterface )----------------------------------- */ | ||||
| public function destroyObjectPermanently( | public function destroyObjectPermanently( | ||||
| PhabricatorDestructionEngine $engine) { | PhabricatorDestructionEngine $engine) { | ||||
| $this->openTransaction(); | $this->openTransaction(); | ||||
| Show All 22 Lines | |||||