-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTempusTools.php
More file actions
239 lines (218 loc) · 5.28 KB
/
TempusTools.php
File metadata and controls
239 lines (218 loc) · 5.28 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
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
<?php
/**
* TempusTools.php
*
* description
*
* @version 1.1
*
* @author Joey Kimsey <JoeyKimsey@thetempusproject.com>
*
* @link https://.com
*
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
*/
namespace TempusDebugger;
if (!class_exists('TempusDebugger', false)) {
require_once 'TempusDebugger.php';
}
/**
* Sends the given data to the TempusTools Chrome Extension.
* The data can be displayed in devtools.
*
* @param mixed $Object
*
* @return true
*
* @throws Exception
*/
function tt()
{
$instance = TempusDebugger::getInstance(true);
$args = func_get_args();
return call_user_func_array(array($instance, 'tt'), $args);
}
class TempusTools
{
/**
* 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)
{
TempusDebugger::getInstance(true)->setLogToInsightConsole($console);
}
/**
* Enable and disable logging to TempusTools
*
* @param boolean $enabled TRUE to enable, FALSE to disable
* @return void
*/
public static function setEnabled($enabled)
{
TempusDebugger::getInstance(true)->setEnabled($enabled);
}
/**
* Check if logging is enabled
*
* @return boolean TRUE if enabled
*/
public static function getEnabled()
{
return TempusDebugger::getInstance(true)->getEnabled();
}
/**
* Specify a filter to be used when encoding an object
*
* Filters are used to exclude object members.
*
* @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)
{
TempusDebugger::getInstance(true)->setObjectFilter($class, $filter);
}
/**
* Set some options for the library
*
* @param array $options The options to be set
* @return void
*/
public static function setOptions($options)
{
TempusDebugger::getInstance(true)->setOptions($options);
}
/**
* Get options for the library
*
* @return array The options
*/
public static function getOptions()
{
return TempusDebugger::getInstance(true)->getOptions();
}
/**
* Log object to console
*
* @param mixed $object
* @return true
* @throws Exception
*/
public static function send()
{
$args = func_get_args();
return call_user_func_array(array(TempusDebugger::getInstance(true), 'tt'), $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($name, $options = null)
{
return TempusDebugger::getInstance(true)->group($name, $options);
}
/**
* Ends a group you have started before
*
* @return true
* @throws Exception
*/
public static function groupEnd()
{
return self::send(null, null, TempusDebugger::GROUP_END);
}
/**
* Log object with label to the console
*
* @param mixes $object
* @param string $label
* @return true
* @throws Exception
*/
public static function log($object, $label = null)
{
return self::send($object, $label, TempusDebugger::LOG);
}
/**
* Log object with label to the console
*
* @param mixes $object
* @param string $label
* @return true
* @throws Exception
*/
public static function info($object, $label = null)
{
return self::send($object, $label, TempusDebugger::INFO);
}
/**
* Log object with label to the console
*
* @param mixes $object
* @param string $label
* @return true
* @throws Exception
*/
public static function warn($object, $label = null)
{
return self::send($object, $label, TempusDebugger::WARN);
}
/**
* Log object with label to the console
*
* @param mixes $object
* @param string $label
* @return true
* @throws Exception
*/
public static function error($object, $label = null)
{
return self::send($object, $label, TempusDebugger::ERROR);
}
/**
* Dumps key and variable to console
*
* @param string $key
* @param mixed $variable
* @return true
* @throws Exception
*/
public static function dump($key, $variable)
{
return self::send($variable, $key, TempusDebugger::DUMP);
}
/**
* Log a trace in the console
*
* @param string $label
* @return true
* @throws Exception
*/
public static function trace($label)
{
return self::send($label, TempusDebugger::TRACE);
}
/**
* Log a table in the console
*
* @param string $label
* @param string $table
* @return true
* @throws Exception
*/
public static function table($label, $table)
{
return self::send($table, $label, TempusDebugger::TABLE);
}
}