Differential D20278 Diff 48417 src/applications/project/order/PhabricatorProjectColumnStatusOrder.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/order/PhabricatorProjectColumnStatusOrder.php
| Show All 16 Lines | public function getHasHeaders() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function getCanReorder() { | public function getCanReorder() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function getMenuOrder() { | public function getMenuOrder() { | ||||
| return 3000; | return 4000; | ||||
| } | } | ||||
| protected function newHeaderKeyForObject($object) { | protected function newHeaderKeyForObject($object) { | ||||
| return $this->newHeaderKeyForStatus($object->getStatus()); | return $this->newHeaderKeyForStatus($object->getStatus()); | ||||
| } | } | ||||
| private function newHeaderKeyForStatus($status) { | private function newHeaderKeyForStatus($status) { | ||||
| return sprintf('status(%s)', $status); | return sprintf('status(%s)', $status); | ||||
| ▲ Show 20 Lines • Show All 73 Lines • Show Last 20 Lines | |||||