Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/order/PhabricatorProjectColumnOrder.php
| Show First 20 Lines • Show All 190 Lines • ▼ Show 20 Lines | final protected function newTransaction($object) { | ||||
| return $object->getApplicationTransactionTemplate(); | return $object->getApplicationTransactionTemplate(); | ||||
| } | } | ||||
| final protected function newHeader() { | final protected function newHeader() { | ||||
| return id(new PhabricatorProjectColumnHeader()) | return id(new PhabricatorProjectColumnHeader()) | ||||
| ->setOrderKey($this->getColumnOrderKey()); | ->setOrderKey($this->getColumnOrderKey()); | ||||
| } | } | ||||
| final protected function newEffect() { | |||||
| return new PhabricatorProjectDropEffect(); | |||||
| } | |||||
| final public function toDictionary() { | final public function toDictionary() { | ||||
| return array( | return array( | ||||
| 'orderKey' => $this->getColumnOrderKey(), | 'orderKey' => $this->getColumnOrderKey(), | ||||
| 'hasHeaders' => $this->getHasHeaders(), | 'hasHeaders' => $this->getHasHeaders(), | ||||
| 'canReorder' => $this->getCanReorder(), | 'canReorder' => $this->getCanReorder(), | ||||
| ); | ); | ||||
| } | } | ||||
| } | } | ||||