-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathUtil_Environment_Exceptions.php
95 lines (84 loc) · 1.42 KB
/
Util_Environment_Exceptions.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
<?php
/**
* File: Util_Environment_Exceptions.php
*
* @package W3TC
*/
namespace W3TC;
/**
* Class Util_Environment_Exceptions
*/
class Util_Environment_Exceptions extends \Exception {
/**
* Exceptions
*
* @var Exception[]
*/
private $exceptions;
/**
* Credentials form
*
* @var string
*/
private $credentials_form;
/**
* Constructor
*
* @return void
*/
public function __construct() {
parent::__construct();
$this->exceptions = array();
}
/**
* Push
*
* @param object $ex Exception.
*
* @return void
*/
public function push( $ex ) {
if ( $ex instanceof Util_Environment_Exceptions ) {
foreach ( $ex->exceptions() as $ex2 ) {
$this->push( $ex2 );
}
} else {
if (
null === $this->credentials_form &&
$ex instanceof Util_WpFile_FilesystemOperationException &&
null !== $ex->credentials_form()
) {
$this->credentials_form = $ex->credentials_form();
}
$this->exceptions[] = $ex;
}
}
/**
* Get exceptions
*
* @return Exception[]
*/
public function exceptions() {
return $this->exceptions;
}
/**
* Get credentials form
*
* @return string
*/
public function credentials_form() {
return $this->credentials_form;
}
/**
* Get combined message
*
* @return string
*/
public function getCombinedMessage() {
$s = '';
foreach ( $this->exceptions as $m ) {
$s .= $m->getMessage() . "\r\n";
}
return $s;
}
}