mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +01:00
82 lines
1.8 KiB
PHP
82 lines
1.8 KiB
PHP
<?php
|
|
|
|
final class SubscriptionListDialogBuilder extends Phobject {
|
|
|
|
private $viewer;
|
|
private $handles;
|
|
private $objectPHID;
|
|
private $title;
|
|
|
|
public function setViewer(PhabricatorUser $viewer) {
|
|
$this->viewer = $viewer;
|
|
return $this;
|
|
}
|
|
|
|
public function getViewer() {
|
|
return $this->viewer;
|
|
}
|
|
|
|
public function setHandles(array $handles) {
|
|
assert_instances_of($handles, 'PhabricatorObjectHandle');
|
|
$this->handles = $handles;
|
|
return $this;
|
|
}
|
|
|
|
public function getHandles() {
|
|
return $this->handles;
|
|
}
|
|
|
|
public function setObjectPHID($object_phid) {
|
|
$this->objectPHID = $object_phid;
|
|
return $this;
|
|
}
|
|
|
|
public function getObjectPHID() {
|
|
return $this->objectPHID;
|
|
}
|
|
|
|
public function setTitle($title) {
|
|
$this->title = $title;
|
|
return $this;
|
|
}
|
|
|
|
public function getTitle() {
|
|
return $this->title;
|
|
}
|
|
|
|
public function buildDialog() {
|
|
$phid = $this->getObjectPHID();
|
|
$handles = $this->getHandles();
|
|
$object_handle = $handles[$phid];
|
|
unset($handles[$phid]);
|
|
|
|
return id(new AphrontDialogView())
|
|
->setUser($this->getViewer())
|
|
->setWidth(AphrontDialogView::WIDTH_FORM)
|
|
->setTitle($this->getTitle())
|
|
->appendChild($this->buildBody($this->getViewer(), $handles))
|
|
->addCancelButton($object_handle->getURI(), pht('Close'));
|
|
}
|
|
|
|
private function buildBody(PhabricatorUser $viewer, array $handles) {
|
|
|
|
$list = id(new PHUIObjectItemListView())
|
|
->setUser($viewer)
|
|
->setFlush(true);
|
|
foreach ($handles as $handle) {
|
|
$item = id(new PHUIObjectItemView())
|
|
->setHeader($handle->getFullName())
|
|
->setHref($handle->getURI())
|
|
->setDisabled($handle->isDisabled());
|
|
|
|
if ($handle->getImageURI()) {
|
|
$item->setImageURI($handle->getImageURI());
|
|
}
|
|
|
|
$list->addItem($item);
|
|
}
|
|
|
|
return $list;
|
|
}
|
|
|
|
}
|