mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 16:22:43 +01:00
18 lines
386 B
PHP
18 lines
386 B
PHP
|
<?php
|
||
|
|
||
|
abstract class HarbormasterController extends PhabricatorController {
|
||
|
|
||
|
public function buildApplicationCrumbs() {
|
||
|
$crumbs = parent::buildApplicationCrumbs();
|
||
|
|
||
|
$crumbs->addAction(
|
||
|
id(new PHUIListItemView())
|
||
|
->setName(pht('New Build Plan'))
|
||
|
->setHref($this->getApplicationURI('plan/edit/'))
|
||
|
->setIcon('create'));
|
||
|
|
||
|
return $crumbs;
|
||
|
}
|
||
|
|
||
|
}
|