1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +01:00

Update Owners edit paths page to new UI

Summary: Brings the edit paths page in owners up to new UI

Test Plan: Edit some paths, yo.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D15596
This commit is contained in:
Chad Little 2016-04-03 12:24:58 -07:00 committed by Chad Little
parent 88d15ce799
commit 7694a6729f

View file

@ -139,8 +139,9 @@ final class PhabricatorOwnersPathsController
->addCancelButton($cancel_uri)
->setValue(pht('Save Paths')));
$form_box = id(new PHUIObjectBoxView())
->setHeaderText(pht('Edit Paths'))
$box = id(new PHUIObjectBoxView())
->setHeaderText(pht('Paths'))
->setBackground(PHUIObjectBoxView::BLUE_PROPERTY)
->setForm($form);
$crumbs = $this->buildApplicationCrumbs();
@ -148,18 +149,23 @@ final class PhabricatorOwnersPathsController
$package->getName(),
$this->getApplicationURI('package/'.$package->getID().'/'));
$crumbs->addTextCrumb(pht('Edit Paths'));
$crumbs->setBorder(true);
return $this->buildApplicationPage(
array(
$crumbs,
$form_box,
),
array(
'title' => array(
$package->getName(),
pht('Edit Paths'),
),
));
}
$header = id(new PHUIHeaderView())
->setHeader(pht('Edit Paths: %s', $package->getName()))
->setHeaderIcon('fa-pencil');
$view = id(new PHUITwoColumnView())
->setHeader($header)
->setFooter($box);
$title = array($package->getName(), pht('Edit Paths'));
return $this->newPage()
->setTitle($title)
->setCrumbs($crumbs)
->appendChild($view);
}
}