Differential D20278 Diff 48417 src/applications/project/order/PhabricatorProjectColumnPointsOrder.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/order/PhabricatorProjectColumnPointsOrder.php
| Show All 20 Lines | public function getHasHeaders() { | ||||
| return false; | return false; | ||||
| } | } | ||||
| public function getCanReorder() { | public function getCanReorder() { | ||||
| return false; | return false; | ||||
| } | } | ||||
| public function getMenuOrder() { | public function getMenuOrder() { | ||||
| return 4000; | return 6000; | ||||
| } | } | ||||
| protected function newSortVectorForObject($object) { | protected function newSortVectorForObject($object) { | ||||
| $points = $object->getPoints(); | $points = $object->getPoints(); | ||||
| // Put cards with no points on top. | // Put cards with no points on top. | ||||
| $has_points = ($points !== null); | $has_points = ($points !== null); | ||||
| if (!$has_points) { | if (!$has_points) { | ||||
| Show All 13 Lines | |||||