-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathclass-debug.php
More file actions
55 lines (46 loc) · 932 Bytes
/
class-debug.php
File metadata and controls
55 lines (46 loc) · 932 Bytes
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
<?php
/**
* Submit UI Component.
*
* @package Cloudinary
*/
namespace Cloudinary\UI\Component;
use Cloudinary\UI\Component;
use Cloudinary\Sync;
use Cloudinary\Utils;
/**
* Class Component
*
* @package Cloudinary\UI
*/
class Debug extends Component {
/**
* Holds the components build blueprint.
*
* @var string
*/
protected $blueprint = 'wrap|viewer/|/wrap';
/**
* Filter the viewer parts structure.
*
* @param array $struct The array structure.
*
* @return array
*/
protected function viewer( $struct ) {
$struct['element'] = 'pre';
$messages = Utils::get_debug_messages();
$list = array();
foreach ( $messages as $key => $message ) {
if ( is_array( $message ) ) {
$list[] = $key . ':';
$list[] = implode( "\n", $message );
$list[] = '----------';
} else {
$list[] = $message;
}
}
$struct['content'] = implode( "\n", $list );
return $struct;
}
}