Differential D19501 Diff 46638 src/applications/config/controller/PhabricatorConfigEditController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/controller/PhabricatorConfigEditController.php
| Show First 20 Lines • Show All 225 Lines • ▼ Show 20 Lines | if ($group) { | ||||
| 'href' => $group_uri, | 'href' => $group_uri, | ||||
| ), | ), | ||||
| $group->getName()); | $group->getName()); | ||||
| $box_header[] = " \xC2\xBB "; | $box_header[] = " \xC2\xBB "; | ||||
| } | } | ||||
| $box_header[] = $key; | $box_header[] = $key; | ||||
| $crumbs = $this->buildApplicationCrumbs(); | $crumbs = $this->buildApplicationCrumbs(); | ||||
| $crumbs->addTextCrumb(pht('Config'), $this->getApplicationURI()); | |||||
| if ($group) { | if ($group) { | ||||
| $crumbs->addTextCrumb($group->getName(), $group_uri); | $crumbs->addTextCrumb($group->getName(), $group_uri); | ||||
| } | } | ||||
| $crumbs->addTextCrumb($key, '/config/edit/'.$key); | $crumbs->addTextCrumb($key, '/config/edit/'.$key); | ||||
| $crumbs->setBorder(true); | $crumbs->setBorder(true); | ||||
| $form_box = $this->buildConfigBoxView($box_header, $form, $tag); | $form_box = $this->buildConfigBoxView($box_header, $form, $tag); | ||||
| ▲ Show 20 Lines • Show All 264 Lines • Show Last 20 Lines | |||||