Differential D10585 Diff 25583 src/applications/config/controller/PhabricatorConfigListController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/controller/PhabricatorConfigListController.php
| Show All 15 Lines | public function processRequest() { | ||||
| $title = pht('Phabricator Configuration'); | $title = pht('Phabricator Configuration'); | ||||
| $box = id(new PHUIObjectBoxView()) | $box = id(new PHUIObjectBoxView()) | ||||
| ->setHeaderText($title) | ->setHeaderText($title) | ||||
| ->appendChild($list); | ->appendChild($list); | ||||
| $nav->appendChild( | $nav->appendChild( | ||||
| array( | array( | ||||
| $box | $box, | ||||
| )); | )); | ||||
| $crumbs = $this | $crumbs = $this | ||||
| ->buildApplicationCrumbs() | ->buildApplicationCrumbs() | ||||
| ->addTextCrumb(pht('Config'), $this->getApplicationURI()); | ->addTextCrumb(pht('Config'), $this->getApplicationURI()); | ||||
| $nav->setCrumbs($crumbs); | $nav->setCrumbs($crumbs); | ||||
| Show All 25 Lines | |||||