mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
17 lines
357 B
PHP
17 lines
357 B
PHP
|
<?php
|
||
|
|
||
|
abstract class HarbormasterPlanController extends PhabricatorController {
|
||
|
|
||
|
public function buildApplicationCrumbs() {
|
||
|
$crumbs = parent::buildApplicationCrumbs();
|
||
|
|
||
|
$crumbs->addCrumb(
|
||
|
id(new PhabricatorCrumbView())
|
||
|
->setName(pht('Build Plans'))
|
||
|
->setHref($this->getApplicationURI('plan/')));
|
||
|
|
||
|
return $crumbs;
|
||
|
}
|
||
|
|
||
|
}
|