Differential D20639 Diff 49225 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 280 Lines • ▼ Show 20 Lines | foreach ($all_tasks as $task) { | ||||
| $properties[$task->getPHID()] = | $properties[$task->getPHID()] = | ||||
| PhabricatorBoardResponseEngine::newTaskProperties($task); | PhabricatorBoardResponseEngine::newTaskProperties($task); | ||||
| } | } | ||||
| $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/'), | ||||
| 'reloadURI' => phutil_string_cast($state->newWorkboardURI('reload/')), | |||||
| 'chunkThreshold' => PhabricatorFileStorageEngine::getChunkThreshold(), | 'chunkThreshold' => PhabricatorFileStorageEngine::getChunkThreshold(), | ||||
| 'pointsEnabled' => ManiphestTaskPoints::getIsEnabled(), | 'pointsEnabled' => ManiphestTaskPoints::getIsEnabled(), | ||||
| 'boardPHID' => $project->getPHID(), | 'boardPHID' => $project->getPHID(), | ||||
| 'order' => $state->getOrder(), | 'order' => $state->getOrder(), | ||||
| 'orders' => $order_maps, | 'orders' => $order_maps, | ||||
| 'headers' => $headers, | 'headers' => $headers, | ||||
| 'headerKeys' => $header_keys, | 'headerKeys' => $header_keys, | ||||
| ▲ Show 20 Lines • Show All 743 Lines • Show Last 20 Lines | |||||