Changeset View
Changeset View
Standalone View
Standalone View
src/applications/maniphest/storage/ManiphestTask.php
| Show First 20 Lines • Show All 246 Lines • ▼ Show 20 Lines | final class ManiphestTask extends ManiphestDAO | ||||
| public function getCoverImageThumbnailPHID() { | public function getCoverImageThumbnailPHID() { | ||||
| return idx($this->properties, 'cover.thumbnailPHID'); | return idx($this->properties, 'cover.thumbnailPHID'); | ||||
| } | } | ||||
| public function getWorkboardOrderVectors() { | public function getWorkboardOrderVectors() { | ||||
| return array( | return array( | ||||
| PhabricatorProjectColumn::ORDER_PRIORITY => array( | PhabricatorProjectColumn::ORDER_PRIORITY => array( | ||||
| (int)-$this->getPriority(), | (int)-$this->getPriority(), | ||||
| PhabricatorProjectColumn::NODETYPE_CARD, | |||||
| (double)-$this->getSubpriority(), | (double)-$this->getSubpriority(), | ||||
| (int)-$this->getID(), | (int)-$this->getID(), | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| public function getPriorityKeyword() { | public function getPriorityKeyword() { | ||||
| $priority = $this->getPriority(); | $priority = $this->getPriority(); | ||||
| ▲ Show 20 Lines • Show All 400 Lines • Show Last 20 Lines | |||||