Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/storage/PhabricatorProjectColumn.php
| Show First 20 Lines • Show All 206 Lines • ▼ Show 20 Lines | public function canHaveTrigger() { | ||||
| if ($this->getProxy()) { | if ($this->getProxy()) { | ||||
| return false; | return false; | ||||
| } | } | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function getBoardURI() { | public function getWorkboardURI() { | ||||
| return urisprintf( | return $this->getProject()->getWorkboardURI(); | ||||
| '/project/board/%d/', | |||||
| $this->getProject()->getID()); | |||||
| } | } | ||||
| public function getDropEffects() { | public function getDropEffects() { | ||||
| $effects = array(); | $effects = array(); | ||||
| $proxy = $this->getProxy(); | $proxy = $this->getProxy(); | ||||
| if ($proxy && $proxy->isMilestone()) { | if ($proxy && $proxy->isMilestone()) { | ||||
| $effects[] = id(new PhabricatorProjectDropEffect()) | $effects[] = id(new PhabricatorProjectDropEffect()) | ||||
| ▲ Show 20 Lines • Show All 138 Lines • Show Last 20 Lines | |||||