Differential D20248 Diff 48377 src/applications/project/controller/PhabricatorProjectBoardViewController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/controller/PhabricatorProjectBoardViewController.php
| Show First 20 Lines • Show All 645 Lines • ▼ Show 20 Lines | foreach ($priorities as $priority) { | ||||
| 'class' => 'workboard-group-header', | 'class' => 'workboard-group-header', | ||||
| ), | ), | ||||
| array( | array( | ||||
| $icon_view, | $icon_view, | ||||
| $priority_name, | $priority_name, | ||||
| )); | )); | ||||
| $headers[] = array( | $headers[] = array( | ||||
| 'order' => 'priority', | 'order' => PhabricatorProjectColumn::ORDER_PRIORITY, | ||||
| 'key' => $header_key, | 'key' => $header_key, | ||||
| 'template' => hsprintf('%s', $template), | 'template' => hsprintf('%s', $template), | ||||
| 'vector' => array( | 'vector' => array( | ||||
| (int)-$priority, | (int)-$priority, | ||||
| PhabricatorProjectColumn::NODETYPE_HEADER, | |||||
| ), | |||||
| 'editProperties' => array( | |||||
| PhabricatorProjectColumn::ORDER_PRIORITY => (int)$priority, | |||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| $behavior_config = array( | $behavior_config = array( | ||||
| 'moveURI' => $this->getApplicationURI('move/'.$project->getID().'/'), | 'moveURI' => $this->getApplicationURI('move/'.$project->getID().'/'), | ||||
| 'uploadURI' => '/file/dropupload/', | 'uploadURI' => '/file/dropupload/', | ||||
| 'coverURI' => $this->getApplicationURI('cover/'), | 'coverURI' => $this->getApplicationURI('cover/'), | ||||
| ▲ Show 20 Lines • Show All 758 Lines • Show Last 20 Lines | |||||