Changeset View
Changeset View
Standalone View
Standalone View
src/applications/maniphest/query/ManiphestTaskQuery.php
| Show First 20 Lines • Show All 748 Lines • ▼ Show 20 Lines | private function getIgnoreGroupedProjectPHIDs() { | ||||
| return array_mergev($phids); | return array_mergev($phids); | ||||
| } | } | ||||
| protected function getResultCursor($result) { | protected function getResultCursor($result) { | ||||
| $id = $result->getID(); | $id = $result->getID(); | ||||
| if ($this->groupBy == self::GROUP_PROJECT) { | if ($this->groupBy == self::GROUP_PROJECT) { | ||||
| return rtrim($id.'.'.$result->getGroupByProjectPHID(), '.');; | return rtrim($id.'.'.$result->getGroupByProjectPHID(), '.'); | ||||
| } | } | ||||
| return $id; | return $id; | ||||
| } | } | ||||
| public function getOrderableColumns() { | public function getOrderableColumns() { | ||||
| return parent::getOrderableColumns() + array( | return parent::getOrderableColumns() + array( | ||||
| 'priority' => array( | 'priority' => array( | ||||
| ▲ Show 20 Lines • Show All 97 Lines • Show Last 20 Lines | |||||