Differential D14891 Diff 35999 src/applications/project/controller/PhabricatorProjectProfileController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/controller/PhabricatorProjectProfileController.php
| Show All 40 Lines | public function handleRequest(AphrontRequest $request) { | ||||
| $timeline = $this->buildTransactionTimeline( | $timeline = $this->buildTransactionTimeline( | ||||
| $project, | $project, | ||||
| new PhabricatorProjectTransactionQuery()); | new PhabricatorProjectTransactionQuery()); | ||||
| $timeline->setShouldTerminate(true); | $timeline->setShouldTerminate(true); | ||||
| $nav = $this->buildIconNavView($project); | $nav = $this->buildIconNavView($project); | ||||
| $nav->selectFilter("profile/{$id}/"); | $nav->selectFilter("profile/{$id}/"); | ||||
| $crumbs = $this->buildApplicationCrumbs(); | |||||
| return $this->newPage() | return $this->newPage() | ||||
| ->setNavigation($nav) | ->setNavigation($nav) | ||||
| ->setCrumbs($crumbs) | |||||
| ->setTitle($project->getName()) | ->setTitle($project->getName()) | ||||
| ->setPageObjectPHIDs(array($project->getPHID())) | ->setPageObjectPHIDs(array($project->getPHID())) | ||||
| ->appendChild($object_box) | ->appendChild($object_box) | ||||
| ->appendChild($timeline); | ->appendChild($timeline); | ||||
| } | } | ||||
| private function buildActionListView(PhabricatorProject $project) { | private function buildActionListView(PhabricatorProject $project) { | ||||
| $request = $this->getRequest(); | $request = $this->getRequest(); | ||||
| ▲ Show 20 Lines • Show All 148 Lines • Show Last 20 Lines | |||||