mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-01 01:18:22 +01:00
3e704f6c78
Summary: Ref T5833. This differentiates address spaces like the public internet from VPNs, so when a service is available at `192.168.0.1`, we'll know it's on some specific NAT block or whatever. Test Plan: See screenshots. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T5833 Differential Revision: https://secure.phabricator.com/D10715
14 lines
307 B
PHP
14 lines
307 B
PHP
<?php
|
|
|
|
abstract class AlmanacNetworkController extends AlmanacController {
|
|
|
|
public function buildApplicationCrumbs() {
|
|
$crumbs = parent::buildApplicationCrumbs();
|
|
|
|
$list_uri = $this->getApplicationURI('network/');
|
|
$crumbs->addTextCrumb(pht('Networks'), $list_uri);
|
|
|
|
return $crumbs;
|
|
}
|
|
|
|
}
|