-
Notifications
You must be signed in to change notification settings - Fork 691
Expand file tree
/
Copy pathDeprecatedPanel.php
More file actions
80 lines (68 loc) · 1.9 KB
/
DeprecatedPanel.php
File metadata and controls
80 lines (68 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\debug;
use Craft;
use yii\debug\Panel;
use yii\helpers\ArrayHelper;
use yii\web\NotFoundHttpException;
/**
* Debugger panel that collects and displays deprecation warnings.
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0.0
*/
class DeprecatedPanel extends Panel
{
/**
* @inheritdoc
*/
public function getName(): string
{
return 'Deprecated';
}
/**
* @inheritdoc
*/
public function getSummary(): string
{
return Craft::$app->getView()->render('@app/views/debug/deprecated/summary', [
'panel' => $this,
]);
}
/**
* @inheritdoc
* @throws NotFoundHttpException if a `trace` parameter is in the query string, but its value isn’t a valid deprecation warning’s ID
*/
public function getDetail(): string
{
$request = Craft::$app->getRequest();
if ($request->getQueryParam('clear')) {
Craft::$app->getDeprecator()->deleteAllLogs();
}
$logId = $request->getQueryParam('trace');
if ($logId) {
$log = Craft::$app->getDeprecator()->getLogById($logId);
if ($log === null) {
throw new NotFoundHttpException('The requested deprecation warning could not be found.');
}
return Craft::$app->getView()->render('@app/views/debug/deprecated/traces', [
'panel' => $this,
'log' => $log,
]);
}
return Craft::$app->getView()->render('@app/views/debug/deprecated/detail', [
'panel' => $this,
]);
}
/**
* @inheritdoc
*/
public function save()
{
return ArrayHelper::toArray(Craft::$app->getDeprecator()->getRequestLogs());
}
}