Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/people/controller/PhabricatorPeopleInviteController.php
12262 views
1
<?php
2
3
abstract class PhabricatorPeopleInviteController
4
extends PhabricatorPeopleController {
5
6
protected function buildApplicationCrumbs() {
7
$crumbs = parent::buildApplicationCrumbs();
8
$crumbs->addTextCrumb(
9
pht('Invites'),
10
$this->getApplicationURI('invite/'));
11
return $crumbs;
12
}
13
14
}
15
16