Differential D20415 Diff 48758 src/applications/dashboard/controller/panel/PhabricatorDashboardPanelViewController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/dashboard/controller/panel/PhabricatorDashboardPanelViewController.php
| Show All 34 Lines | public function handleRequest(AphrontRequest $request) { | ||||
| $header = $this->buildHeaderView($panel); | $header = $this->buildHeaderView($panel); | ||||
| $curtain = $this->buildCurtainView($panel); | $curtain = $this->buildCurtainView($panel); | ||||
| $usage_box = $this->newUsageView($panel); | $usage_box = $this->newUsageView($panel); | ||||
| $timeline = $this->buildTransactionTimeline( | $timeline = $this->buildTransactionTimeline( | ||||
| $panel, | $panel, | ||||
| new PhabricatorDashboardPanelTransactionQuery()); | new PhabricatorDashboardPanelTransactionQuery()); | ||||
| $timeline->setShouldTerminate(true); | |||||
| $rendered_panel = id(new PhabricatorDashboardPanelRenderingEngine()) | $rendered_panel = id(new PhabricatorDashboardPanelRenderingEngine()) | ||||
| ->setViewer($viewer) | ->setViewer($viewer) | ||||
| ->setPanel($panel) | ->setPanel($panel) | ||||
| ->setContextObject($panel) | ->setContextObject($panel) | ||||
| ->setPanelPHID($panel->getPHID()) | ->setPanelPHID($panel->getPHID()) | ||||
| ->setParentPanelPHIDs(array()) | ->setParentPanelPHIDs(array()) | ||||
| ->setEditMode(true) | ->setEditMode(true) | ||||
| ▲ Show 20 Lines • Show All 125 Lines • Show Last 20 Lines | |||||