-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathsfWebDebugPanel.class.php
192 lines (167 loc) · 5.6 KB
/
sfWebDebugPanel.class.php
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<?php
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* sfWebDebugPanel represents a web debug panel.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
abstract class sfWebDebugPanel
{
protected $webDebug;
protected $status = sfLogger::INFO;
/**
* Constructor.
*
* @param sfWebDebug $webDebug The web debug toolbar instance
*/
public function __construct(sfWebDebug $webDebug)
{
$this->webDebug = $webDebug;
}
/**
* Gets the link URL for the link.
*
* @return string The URL link
*/
public function getTitleUrl()
{
}
/**
* Gets the text for the link.
*
* @return string The link text
*/
abstract public function getTitle();
/**
* Gets the title of the panel.
*
* @return string The panel title
*/
abstract public function getPanelTitle();
/**
* Gets the panel HTML content.
*
* @return string The panel HTML content
*/
abstract public function getPanelContent();
/**
* Returns the current status.
*
* @return int A {@link sfLogger} priority constant
*/
public function getStatus()
{
return $this->status;
}
/**
* Sets the current panel's status.
*
* @param int $status A {@link sfLogger} priority constant
*/
public function setStatus($status)
{
$this->status = $status;
}
/**
* Returns a toggler element.
*
* @param string $element The value of an element's DOM id attribute
* @param string $title A title attribute
*
* @return string
*/
public function getToggler($element, $title = 'Toggle details')
{
return '<a href="#" onclick="sfWebDebugToggle(\''.$element.'\'); return false;" title="'.$title.'"><img src="'.$this->webDebug->getOption('image_root_path').'/toggle.gif" alt="'.$title.'"/></a>';
}
/**
* Returns a toggleable presentation of a debug stack.
*
* @param array $debugStack
*
* @return string
*/
public function getToggleableDebugStack($debugStack)
{
static $i = 1;
if (!$debugStack) {
return '';
}
$element = get_class($this).'Debug'.$i++;
$keys = array_reverse(array_keys($debugStack));
$html = $this->getToggler($element, 'Toggle debug stack');
$html .= '<div class="sfWebDebugDebugInfo" id="'.$element.'" style="display:none">';
foreach ($debugStack as $j => $trace) {
$file = isset($trace['file']) ? $trace['file'] : null;
$line = isset($trace['line']) ? $trace['line'] : null;
$isProjectFile = $file && str_starts_with($file, sfConfig::get('sf_root_dir')) && !preg_match('/(cache|plugins|vendor)/', $file);
$html .= sprintf('<span%s>#%s » ', $isProjectFile ? ' class="sfWebDebugHighlight"' : '', $keys[$j] + 1);
if (isset($trace['function'])) {
$html .= sprintf(
'in <span class="sfWebDebugLogInfo">%s%s%s()</span> ',
isset($trace['class']) ? $trace['class'] : '',
isset($trace['type']) ? $trace['type'] : '',
$trace['function']
);
}
$html .= sprintf('from %s line %s', $this->formatFileLink($file, $line), $line);
$html .= '</span><br/>';
}
$html .= "</div>\n";
return $html;
}
/**
* Formats a file link.
*
* @param string $file A file path or class name
* @param int $line
* @param string $text Text to use for the link
*
* @return string
*/
public function formatFileLink($file, $line = null, $text = null)
{
// this method is called a lot so we avoid calling class_exists()
if ($file && !sfToolkit::isPathAbsolute($file)) {
if (null === $text) {
$text = $file;
}
// translate class to file name
$r = new ReflectionClass($file);
$file = $r->getFileName();
}
$shortFile = sfDebug::shortenFilePath($file);
if ($linkFormat = sfConfig::get('sf_file_link_format', ini_get('xdebug.file_link_format'))) {
// return a link
return sprintf(
'<a href="%s" class="sfWebDebugFileLink" title="%s">%s</a>',
htmlspecialchars(strtr($linkFormat, ['%f' => $file, '%l' => $line]), ENT_QUOTES, sfConfig::get('sf_charset')),
htmlspecialchars($shortFile, ENT_QUOTES, sfConfig::get('sf_charset')),
null === $text ? $shortFile : $text
);
}
if (null === $text) {
// return the shortened file path
return $shortFile;
}
// return the provided text with the shortened file path as a tooltip
return sprintf('<span title="%s">%s</span>', $shortFile, $text);
}
/**
* Format a SQL string with some colors on SQL keywords to make it more readable.
*
* @param string $sql SQL string to format
*
* @return string $newSql The new formatted SQL string
*/
public function formatSql($sql)
{
return preg_replace('/\b(UPDATE|SET|SELECT|FROM|AS|LIMIT|ASC|COUNT|DESC|WHERE|LEFT JOIN|INNER JOIN|RIGHT JOIN|ORDER BY|GROUP BY|IN|LIKE|DISTINCT|DELETE|INSERT|INTO|VALUES)\b/', '<span class="sfWebDebugLogInfo">\\1</span>', $sql);
}
}