mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 21:32:43 +01:00
Update Multimeter to new UI
Summary: Converts to two column UI Test Plan: Review a multiple sample page Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15584
This commit is contained in:
parent
2992b5277a
commit
bdeb5cf141
1 changed files with 20 additions and 13 deletions
|
@ -230,17 +230,15 @@ final class MultimeterSampleController extends MultimeterController {
|
|||
));
|
||||
|
||||
$box = id(new PHUIObjectBoxView())
|
||||
->setHeaderText(
|
||||
pht(
|
||||
'Samples (%s - %s)',
|
||||
phabricator_datetime($ago, $viewer),
|
||||
phabricator_datetime($now, $viewer)))
|
||||
->setHeaderText(pht('Samples'))
|
||||
->setBackground(PHUIObjectBoxView::BLUE_PROPERTY)
|
||||
->setTable($table);
|
||||
|
||||
$crumbs = $this->buildApplicationCrumbs();
|
||||
$crumbs->addTextCrumb(
|
||||
pht('Samples'),
|
||||
$this->getGroupURI(array(), true));
|
||||
$crumbs->setBorder(true);
|
||||
|
||||
$crumb_map = array(
|
||||
'host' => pht('By Host'),
|
||||
|
@ -262,14 +260,23 @@ final class MultimeterSampleController extends MultimeterController {
|
|||
$this->getGroupURI($parts, true));
|
||||
}
|
||||
|
||||
return $this->buildApplicationPage(
|
||||
array(
|
||||
$crumbs,
|
||||
$box,
|
||||
),
|
||||
array(
|
||||
'title' => pht('Samples'),
|
||||
));
|
||||
$header = id(new PHUIHeaderView())
|
||||
->setHeader(
|
||||
pht(
|
||||
'Samples (%s - %s)',
|
||||
phabricator_datetime($ago, $viewer),
|
||||
phabricator_datetime($now, $viewer)))
|
||||
->setHeaderIcon('fa-motorcycle');
|
||||
|
||||
$view = id(new PHUITwoColumnView())
|
||||
->setHeader($header)
|
||||
->setFooter($box);
|
||||
|
||||
return $this->newPage()
|
||||
->setTitle(pht('Samples'))
|
||||
->setCrumbs($crumbs)
|
||||
->appendChild($view);
|
||||
|
||||
}
|
||||
|
||||
private function renderGroupingLink(array $group, $key, $name = null) {
|
||||
|
|
Loading…
Reference in a new issue