Add empty subproject/milestone controllers

Summary: Ref T10010. These do nothing yet.

Test Plan: Clicked 'em.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10010

Differential Revision: https://secure.phabricator.com/D14894
This commit is contained in:
epriestley
2015-12-27 04:47:08 -08:00
parent 373ff7f9d4
commit 11e53f2948
6 changed files with 80 additions and 1 deletions

View File

@@ -151,6 +151,12 @@ abstract class PhabricatorProjectController extends PhabricatorController {
$nav->addIcon("members/{$id}/", pht('Members'), 'fa-group');
$nav->addIcon("details/{$id}/", pht('Edit Details'), 'fa-pencil');
if (PhabricatorEnv::getEnvConfig('phabricator.show-prototypes')) {
$nav->addIcon("subprojects/{$id}/", pht('Subprojects'), 'fa-sitemap');
$nav->addIcon("milestones/{$id}/", pht('Milestones'), 'fa-map-marker');
}
return $nav;
}