-
Notifications
You must be signed in to change notification settings - Fork 1
/
fb.php
297 lines (283 loc) · 7.85 KB
/
fb.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
<?php
/**
* ***** BEGIN LICENSE BLOCK *****
*
* [MIT License](http://www.opensource.org/licenses/mit-license.php)
*
* Copyright (c) 2017+ [Iurii Bell](http://www.bel-tech.ru/)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* ***** END LICENSE BLOCK *****
*
* @copyright Copyright (C) 2017+
* @author Bell
* @license MIT
* @package FirePHP
*/
if (!class_exists('ChromePhp', false)) {
if (file_exists( dirname(__FILE__) . DIRECTORY_SEPARATOR . 'ChromePhp.php')){
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'ChromePhp.php';
}
}
ChromePhp::getInstance()->addSetting(ChromePhp::BACKTRACE_LEVEL, 3);
/**
* Sends the given data to the FirePHP Firefox Extension.
* The data can be displayed in the Firebug Console or in the
* "Server" request tab.
*
* @see http://firephp.bel-tech.ru
* @param mixed $Object
* @return true
* @throws Exception
*/
function fb()
{
$instance = ChromePhp::getInstance(true);
$args = func_get_args();
if ( count($args) == 1) $args = reset($args);
return FB::send(ChromePhp::LOG, $args);
}
class FB
{
/**
* Flag to enable/disable logging
*
* @var boolean
*/
protected static $enabled = true;
/**
* Set an Insight console to direct all logging calls to
*
* @param object $console The console object to log to
* @return void
*/
public static function setLogToInsightConsole($console)
{
//FirePHP::getInstance(true)->setLogToInsightConsole($console);
}
/**
* Enable and disable logging to Firebug
*
* @see FirePHP->setEnabled()
* @param boolean $enabled TRUE to enable, FALSE to disable
* @return void
*/
public static function setEnabled($enable)
{
self::$enabled = $enable;
}
/**
* Check if logging is enabled
*
* @see FirePHP->getEnabled()
* @return boolean TRUE if enabled
*/
public static function getEnabled()
{
return self::$enabled;
}
/**
* Specify a filter to be used when encoding an object
*
* Filters are used to exclude object members.
*
* @see FirePHP->setObjectFilter()
* @param string $class The class name of the object
* @param array $filter An array or members to exclude
* @return void
*/
public static function setObjectFilter($class, $filter)
{
return false;//FirePHP::getInstance(true)->setObjectFilter($class, $filter);
}
/**
* Set some options for the library
*
* @see FirePHP->setOptions()
* @param array $options The options to be set
* @return void
*/
public static function setOptions($options)
{
return ChromePhp::getInstance()->setSettings($options);
}
/**
* Get options for the library
*
* @see FirePHP->getOptions()
* @return array The options
*/
public static function getOptions()
{
return ChromePhp::getInstance()->getSettings();
}
/**
* Log object to firebug
*
* @see
* @param mixed $object
* @return true
* @throws Exception
*/
public static function send()
{
if (!self::$enabled) return false;
$args = func_get_args();
return call_user_func_array(array(ChromePhp::getInstance(), $args[0] ), $args);
}
/**
* Start a group for following messages
*
* Options:
* Collapsed: [true|false]
* Color: [#RRGGBB|ColorName]
*
* @param string $name
* @param array $options OPTIONAL Instructions on how to log the group
* @return true
*/
public static function group()
{
$args = func_get_args();
return self::send(ChromePhp::GROUP,$args);
//return ChromePhp::getInstance()->group(ChromePhp::GROUP_END,$name, $options);
}
/**
* Ends a group you have started before
*
* @return true
* @throws Exception
*/
public static function groupEnd()
{
return self::send(ChromePhp::GROUP_END );
}
/**
* Log object with label to firebug console
*
* @see FirePHP::LOG
* @param mixed $object
* @param string $label
* @return true
* @throws Exception
*/
public static function log($object, $label=null)
{
return self::send( ChromePhp::LOG, $object);
}
/**
* Log object with label to firebug console
*
* @see FirePHP::INFO
* @param mixed $object
* @param string $label
* @return true
* @throws Exception
*/
public static function info($object, $label=null)
{
return self::send(ChromePhp::INFO, $object);
}
/**
* Log object with label to firebug console
*
* @see FirePHP::WARN
* @param mixed $object
* @param string $label
* @return true
* @throws Exception
*/
public static function warn($object, $label=null)
{
return self::send(ChromePhp::WARN, $object);
}
/**
* Log object with label to firebug console
*
* @see FirePHP::ERROR
* @param mixed $object
* @param string $label
* @return true
* @throws Exception
*/
public static function error($object, $label=null)
{
return self::send(ChromePhp::ERROR, $object);
}
/**
* Dumps key and variable to firebug server panel
*
* @see FirePHP::DUMP
* @param string $key
* @param mixed $variable
* @return true
* @throws Exception
*/
public static function dump($key, $variable)
{
return self::send(ChromePhp::LOG, $variable, $key );
}
/**
* Set settings a trace in the firebug console
*
* @see FirePHP::TRACE
* @param string $label
* @return true
* @throws Exception
*/
public static function settings()
{
$args = func_get_args();
if ( count($args) == 1 && ( gettype($args[0]) == 'string' ) ){
return ChromePhp::getInstance()->getSetting($args[0]);
}elseif( gettype($args[0]) == 'array' ){
return ChromePhp::getInstance()->setSetting($args[0]);
}elseif( count($args) == 2 ){
return ChromePhp::getInstance()->setSetting($args[0],$args[1]);
}
return false;
}
/**
* Log a trace in the firebug console
*
* @see FirePHP::TRACE
* @param string $label
* @return true
* @throws Exception
*/
public static function trace($type = ChromePhp::TABLE)
{
return self::send( $type, debug_backtrace() );
}
/**
* Log a table in the firebug console
*
* @see FirePHP::TABLE
* @param string $label
* @param string $table
* @return true
* @throws Exception
*/
public static function table($label, $table = null)
{
if ( $table === null ) $table = $label;
return self::send(ChromePhp::TABLE, $table );
}
}