mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
afc5333bb3
Summary: Searched for `AphrontFormView` and then for `appendChild()`. Test Plan: /login/ Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2432 Differential Revision: https://secure.phabricator.com/D4855
51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group maniphest
|
|
*/
|
|
final class ManiphestTaskListView extends ManiphestView {
|
|
|
|
private $tasks;
|
|
private $handles;
|
|
private $showBatchControls;
|
|
private $showSubpriorityControls;
|
|
|
|
public function setTasks(array $tasks) {
|
|
assert_instances_of($tasks, 'ManiphestTask');
|
|
$this->tasks = $tasks;
|
|
return $this;
|
|
}
|
|
|
|
public function setHandles(array $handles) {
|
|
assert_instances_of($handles, 'PhabricatorObjectHandle');
|
|
$this->handles = $handles;
|
|
return $this;
|
|
}
|
|
|
|
public function setShowBatchControls($show_batch_controls) {
|
|
$this->showBatchControls = $show_batch_controls;
|
|
return $this;
|
|
}
|
|
|
|
public function setShowSubpriorityControls($show_subpriority_controls) {
|
|
$this->showSubpriorityControls = $show_subpriority_controls;
|
|
return $this;
|
|
}
|
|
|
|
public function render() {
|
|
|
|
$views = array();
|
|
foreach ($this->tasks as $task) {
|
|
$view = new ManiphestTaskSummaryView();
|
|
$view->setTask($task);
|
|
$view->setShowBatchControls($this->showBatchControls);
|
|
$view->setShowSubpriorityControls($this->showSubpriorityControls);
|
|
$view->setUser($this->user);
|
|
$view->setHandles($this->handles);
|
|
$views[] = $view->render();
|
|
}
|
|
|
|
return $this->renderHTMLView($views);
|
|
}
|
|
|
|
}
|