mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-05 17:08:27 +02:00
Summary: Ref T5446. - For all callsites which do not specify a value, set `false` explicitly. - Make `true` the default. Test Plan: Used `grep`, then manually went through everything. Reviewers: chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T5446 Differential Revision: https://secure.phabricator.com/D9687
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
<?php
|
|
|
|
final class PhabricatorDaemonLogEventViewController
|
|
extends PhabricatorDaemonController {
|
|
|
|
private $id;
|
|
|
|
public function willProcessRequest(array $data) {
|
|
$this->id = $data['id'];
|
|
}
|
|
|
|
public function processRequest() {
|
|
$request = $this->getRequest();
|
|
|
|
$event = id(new PhabricatorDaemonLogEvent())->load($this->id);
|
|
if (!$event) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$event_view = id(new PhabricatorDaemonLogEventsView())
|
|
->setEvents(array($event))
|
|
->setUser($request->getUser())
|
|
->setCombinedLog(true)
|
|
->setShowFullMessage(true);
|
|
|
|
$log_panel = new AphrontPanelView();
|
|
$log_panel->appendChild($event_view);
|
|
$log_panel->setNoBackground();
|
|
|
|
$daemon_id = $event->getLogID();
|
|
|
|
$crumbs = $this->buildApplicationCrumbs()
|
|
->addTextCrumb(
|
|
pht('Daemon %s', $daemon_id),
|
|
$this->getApplicationURI("log/{$daemon_id}/"))
|
|
->addTextCrumb(pht('Event %s', $event->getID()));
|
|
|
|
|
|
return $this->buildApplicationPage(
|
|
array(
|
|
$crumbs,
|
|
$log_panel,
|
|
),
|
|
array(
|
|
'title' => pht('Combined Daemon Log'),
|
|
'device' => false,
|
|
));
|
|
}
|
|
|
|
}
|