@@ -19,266 +19,266 @@ |
||
19 | 19 | class Notice implements NoticeInterface |
20 | 20 | { |
21 | 21 | |
22 | - const ERROR = 'error'; |
|
22 | + const ERROR = 'error'; |
|
23 | 23 | |
24 | - const SUCCESS = 'success'; |
|
24 | + const SUCCESS = 'success'; |
|
25 | 25 | |
26 | - const ATTENTION = 'attention'; // alias for warning |
|
26 | + const ATTENTION = 'attention'; // alias for warning |
|
27 | 27 | |
28 | - const INFORMATION = 'information'; |
|
28 | + const INFORMATION = 'information'; |
|
29 | 29 | |
30 | - /** |
|
31 | - * @var string $type |
|
32 | - */ |
|
33 | - private $type; |
|
30 | + /** |
|
31 | + * @var string $type |
|
32 | + */ |
|
33 | + private $type; |
|
34 | 34 | |
35 | 35 | |
36 | - /** |
|
37 | - * @var string $message |
|
38 | - */ |
|
39 | - private $message; |
|
36 | + /** |
|
37 | + * @var string $message |
|
38 | + */ |
|
39 | + private $message; |
|
40 | 40 | |
41 | 41 | |
42 | - /** |
|
43 | - * @var string $file |
|
44 | - */ |
|
45 | - private $file; |
|
42 | + /** |
|
43 | + * @var string $file |
|
44 | + */ |
|
45 | + private $file; |
|
46 | 46 | |
47 | 47 | |
48 | - /** |
|
49 | - * @var string $func |
|
50 | - */ |
|
51 | - private $func; |
|
48 | + /** |
|
49 | + * @var string $func |
|
50 | + */ |
|
51 | + private $func; |
|
52 | 52 | |
53 | 53 | |
54 | - /** |
|
55 | - * @var string $line |
|
56 | - */ |
|
57 | - private $line; |
|
54 | + /** |
|
55 | + * @var string $line |
|
56 | + */ |
|
57 | + private $line; |
|
58 | 58 | |
59 | 59 | |
60 | - /** |
|
61 | - * @var boolean $dismissible |
|
62 | - */ |
|
63 | - private $dismissible; |
|
60 | + /** |
|
61 | + * @var boolean $dismissible |
|
62 | + */ |
|
63 | + private $dismissible; |
|
64 | 64 | |
65 | 65 | |
66 | 66 | |
67 | - /** |
|
68 | - * Notice constructor. |
|
69 | - * |
|
70 | - * @param string $type |
|
71 | - * @param string $message |
|
72 | - * @param bool $dismissible |
|
73 | - * @param string $file |
|
74 | - * @param string $func |
|
75 | - * @param string $line |
|
76 | - * @throws InvalidDataTypeException |
|
77 | - */ |
|
78 | - public function __construct($type, $message, $dismissible = true, $file = '', $func = '', $line = '') |
|
79 | - { |
|
80 | - $this->setType($type); |
|
81 | - $this->setMessage($message); |
|
82 | - $this->setDismissible($dismissible); |
|
83 | - $this->setFile($file); |
|
84 | - $this->setFunc($func); |
|
85 | - $this->setLine($line); |
|
86 | - } |
|
67 | + /** |
|
68 | + * Notice constructor. |
|
69 | + * |
|
70 | + * @param string $type |
|
71 | + * @param string $message |
|
72 | + * @param bool $dismissible |
|
73 | + * @param string $file |
|
74 | + * @param string $func |
|
75 | + * @param string $line |
|
76 | + * @throws InvalidDataTypeException |
|
77 | + */ |
|
78 | + public function __construct($type, $message, $dismissible = true, $file = '', $func = '', $line = '') |
|
79 | + { |
|
80 | + $this->setType($type); |
|
81 | + $this->setMessage($message); |
|
82 | + $this->setDismissible($dismissible); |
|
83 | + $this->setFile($file); |
|
84 | + $this->setFunc($func); |
|
85 | + $this->setLine($line); |
|
86 | + } |
|
87 | 87 | |
88 | 88 | |
89 | 89 | |
90 | - /** |
|
91 | - * @return array |
|
92 | - */ |
|
93 | - private function types() |
|
94 | - { |
|
95 | - return (array)apply_filters( |
|
96 | - 'FHEE__EventEspresso_core_services_notices_Notice__types', |
|
97 | - array( |
|
98 | - Notice::ERROR, |
|
99 | - Notice::SUCCESS, |
|
100 | - Notice::ATTENTION, |
|
101 | - Notice::INFORMATION, |
|
102 | - ) |
|
103 | - ); |
|
104 | - } |
|
105 | - |
|
106 | - |
|
107 | - |
|
108 | - /** |
|
109 | - * @return string |
|
110 | - */ |
|
111 | - public function type() |
|
112 | - { |
|
113 | - return $this->type; |
|
114 | - } |
|
115 | - |
|
116 | - |
|
117 | - |
|
118 | - /** |
|
119 | - * @return string |
|
120 | - */ |
|
121 | - public function message() |
|
122 | - { |
|
123 | - return $this->message; |
|
124 | - } |
|
125 | - |
|
126 | - |
|
127 | - |
|
128 | - /** |
|
129 | - * @return string |
|
130 | - */ |
|
131 | - public function file() |
|
132 | - { |
|
133 | - return $this->file; |
|
134 | - } |
|
135 | - |
|
136 | - |
|
137 | - |
|
138 | - /** |
|
139 | - * @return string |
|
140 | - */ |
|
141 | - public function func() |
|
142 | - { |
|
143 | - return $this->func; |
|
144 | - } |
|
145 | - |
|
146 | - |
|
147 | - |
|
148 | - /** |
|
149 | - * @return string |
|
150 | - */ |
|
151 | - public function line() |
|
152 | - { |
|
153 | - return $this->line; |
|
154 | - } |
|
155 | - |
|
156 | - |
|
157 | - /** |
|
158 | - * @return bool |
|
159 | - */ |
|
160 | - public function isDismissible() |
|
161 | - { |
|
162 | - return $this->dismissible; |
|
163 | - } |
|
164 | - |
|
165 | - |
|
166 | - /** |
|
167 | - * @param string $type |
|
168 | - * @throws InvalidDataTypeException |
|
169 | - */ |
|
170 | - private function setType($type) |
|
171 | - { |
|
172 | - if (! in_array($type, $this->types(), true)) { |
|
173 | - throw new InvalidDataTypeException( |
|
174 | - '$type', |
|
175 | - $type, |
|
176 | - $this->invalidTypeMessage() |
|
177 | - ); |
|
178 | - } |
|
179 | - $this->type = $type; |
|
180 | - } |
|
181 | - |
|
182 | - |
|
183 | - |
|
184 | - /** |
|
185 | - * gets the $invalid_type_message string |
|
186 | - */ |
|
187 | - private function invalidTypeMessage() |
|
188 | - { |
|
189 | - return apply_filters( |
|
190 | - 'FHEE__EventEspresso_core_services_notices_Notice__invalidTypeMessage', |
|
191 | - sprintf( |
|
192 | - esc_html__( |
|
193 | - ' one of the following notice types was expected: %1$s %2$s', |
|
194 | - 'event_espresso' |
|
195 | - ), |
|
196 | - '<br />', |
|
197 | - var_export($this->types(), true) |
|
198 | - ) |
|
199 | - ); |
|
200 | - } |
|
201 | - |
|
202 | - |
|
203 | - |
|
204 | - /** |
|
205 | - * @param string $message |
|
206 | - * @throws InvalidDataTypeException |
|
207 | - */ |
|
208 | - private function setMessage($message) |
|
209 | - { |
|
210 | - if (empty($message) || ! is_string($message)) { |
|
211 | - throw new InvalidDataTypeException( |
|
212 | - '$message', |
|
213 | - $message, |
|
214 | - esc_html__('non empty string', 'event_espresso') |
|
215 | - ); |
|
216 | - } |
|
217 | - $this->message = $message; |
|
218 | - } |
|
219 | - |
|
220 | - |
|
221 | - |
|
222 | - /** |
|
223 | - * @param string $file |
|
224 | - * @throws InvalidDataTypeException |
|
225 | - */ |
|
226 | - private function setFile($file) |
|
227 | - { |
|
228 | - if ($this->type === Notice::ERROR && (empty($file) || ! is_string($file))) { |
|
229 | - throw new InvalidDataTypeException( |
|
230 | - '$file', |
|
231 | - $file, |
|
232 | - esc_html__('non empty string', 'event_espresso') |
|
233 | - ); |
|
234 | - } |
|
235 | - $this->file = $file; |
|
236 | - } |
|
237 | - |
|
238 | - |
|
239 | - |
|
240 | - /** |
|
241 | - * @param string $func |
|
242 | - * @throws InvalidDataTypeException |
|
243 | - */ |
|
244 | - private function setFunc($func) |
|
245 | - { |
|
246 | - if ($this->type === Notice::ERROR && (empty($func) || ! is_string($func))) { |
|
247 | - throw new InvalidDataTypeException( |
|
248 | - '$func', |
|
249 | - $func, |
|
250 | - esc_html__('non empty string', 'event_espresso') |
|
251 | - ); |
|
252 | - } |
|
253 | - $this->func = $func; |
|
254 | - } |
|
255 | - |
|
256 | - |
|
257 | - |
|
258 | - /** |
|
259 | - * @param int $line |
|
260 | - * @throws InvalidDataTypeException |
|
261 | - */ |
|
262 | - private function setLine($line) |
|
263 | - { |
|
264 | - $line = absint($line); |
|
265 | - if ($this->type === Notice::ERROR && $line === 0) { |
|
266 | - throw new InvalidDataTypeException( |
|
267 | - '$line', |
|
268 | - $line, |
|
269 | - esc_html__('integer', 'event_espresso') |
|
270 | - ); |
|
271 | - } |
|
272 | - $this->line = $line; |
|
273 | - } |
|
274 | - |
|
275 | - |
|
276 | - /** |
|
277 | - * @param boolean $dismissible |
|
278 | - */ |
|
279 | - private function setDismissible($dismissible = true) |
|
280 | - { |
|
281 | - $this->dismissible = filter_var($dismissible, FILTER_VALIDATE_BOOLEAN); |
|
282 | - } |
|
90 | + /** |
|
91 | + * @return array |
|
92 | + */ |
|
93 | + private function types() |
|
94 | + { |
|
95 | + return (array)apply_filters( |
|
96 | + 'FHEE__EventEspresso_core_services_notices_Notice__types', |
|
97 | + array( |
|
98 | + Notice::ERROR, |
|
99 | + Notice::SUCCESS, |
|
100 | + Notice::ATTENTION, |
|
101 | + Notice::INFORMATION, |
|
102 | + ) |
|
103 | + ); |
|
104 | + } |
|
105 | + |
|
106 | + |
|
107 | + |
|
108 | + /** |
|
109 | + * @return string |
|
110 | + */ |
|
111 | + public function type() |
|
112 | + { |
|
113 | + return $this->type; |
|
114 | + } |
|
115 | + |
|
116 | + |
|
117 | + |
|
118 | + /** |
|
119 | + * @return string |
|
120 | + */ |
|
121 | + public function message() |
|
122 | + { |
|
123 | + return $this->message; |
|
124 | + } |
|
125 | + |
|
126 | + |
|
127 | + |
|
128 | + /** |
|
129 | + * @return string |
|
130 | + */ |
|
131 | + public function file() |
|
132 | + { |
|
133 | + return $this->file; |
|
134 | + } |
|
135 | + |
|
136 | + |
|
137 | + |
|
138 | + /** |
|
139 | + * @return string |
|
140 | + */ |
|
141 | + public function func() |
|
142 | + { |
|
143 | + return $this->func; |
|
144 | + } |
|
145 | + |
|
146 | + |
|
147 | + |
|
148 | + /** |
|
149 | + * @return string |
|
150 | + */ |
|
151 | + public function line() |
|
152 | + { |
|
153 | + return $this->line; |
|
154 | + } |
|
155 | + |
|
156 | + |
|
157 | + /** |
|
158 | + * @return bool |
|
159 | + */ |
|
160 | + public function isDismissible() |
|
161 | + { |
|
162 | + return $this->dismissible; |
|
163 | + } |
|
164 | + |
|
165 | + |
|
166 | + /** |
|
167 | + * @param string $type |
|
168 | + * @throws InvalidDataTypeException |
|
169 | + */ |
|
170 | + private function setType($type) |
|
171 | + { |
|
172 | + if (! in_array($type, $this->types(), true)) { |
|
173 | + throw new InvalidDataTypeException( |
|
174 | + '$type', |
|
175 | + $type, |
|
176 | + $this->invalidTypeMessage() |
|
177 | + ); |
|
178 | + } |
|
179 | + $this->type = $type; |
|
180 | + } |
|
181 | + |
|
182 | + |
|
183 | + |
|
184 | + /** |
|
185 | + * gets the $invalid_type_message string |
|
186 | + */ |
|
187 | + private function invalidTypeMessage() |
|
188 | + { |
|
189 | + return apply_filters( |
|
190 | + 'FHEE__EventEspresso_core_services_notices_Notice__invalidTypeMessage', |
|
191 | + sprintf( |
|
192 | + esc_html__( |
|
193 | + ' one of the following notice types was expected: %1$s %2$s', |
|
194 | + 'event_espresso' |
|
195 | + ), |
|
196 | + '<br />', |
|
197 | + var_export($this->types(), true) |
|
198 | + ) |
|
199 | + ); |
|
200 | + } |
|
201 | + |
|
202 | + |
|
203 | + |
|
204 | + /** |
|
205 | + * @param string $message |
|
206 | + * @throws InvalidDataTypeException |
|
207 | + */ |
|
208 | + private function setMessage($message) |
|
209 | + { |
|
210 | + if (empty($message) || ! is_string($message)) { |
|
211 | + throw new InvalidDataTypeException( |
|
212 | + '$message', |
|
213 | + $message, |
|
214 | + esc_html__('non empty string', 'event_espresso') |
|
215 | + ); |
|
216 | + } |
|
217 | + $this->message = $message; |
|
218 | + } |
|
219 | + |
|
220 | + |
|
221 | + |
|
222 | + /** |
|
223 | + * @param string $file |
|
224 | + * @throws InvalidDataTypeException |
|
225 | + */ |
|
226 | + private function setFile($file) |
|
227 | + { |
|
228 | + if ($this->type === Notice::ERROR && (empty($file) || ! is_string($file))) { |
|
229 | + throw new InvalidDataTypeException( |
|
230 | + '$file', |
|
231 | + $file, |
|
232 | + esc_html__('non empty string', 'event_espresso') |
|
233 | + ); |
|
234 | + } |
|
235 | + $this->file = $file; |
|
236 | + } |
|
237 | + |
|
238 | + |
|
239 | + |
|
240 | + /** |
|
241 | + * @param string $func |
|
242 | + * @throws InvalidDataTypeException |
|
243 | + */ |
|
244 | + private function setFunc($func) |
|
245 | + { |
|
246 | + if ($this->type === Notice::ERROR && (empty($func) || ! is_string($func))) { |
|
247 | + throw new InvalidDataTypeException( |
|
248 | + '$func', |
|
249 | + $func, |
|
250 | + esc_html__('non empty string', 'event_espresso') |
|
251 | + ); |
|
252 | + } |
|
253 | + $this->func = $func; |
|
254 | + } |
|
255 | + |
|
256 | + |
|
257 | + |
|
258 | + /** |
|
259 | + * @param int $line |
|
260 | + * @throws InvalidDataTypeException |
|
261 | + */ |
|
262 | + private function setLine($line) |
|
263 | + { |
|
264 | + $line = absint($line); |
|
265 | + if ($this->type === Notice::ERROR && $line === 0) { |
|
266 | + throw new InvalidDataTypeException( |
|
267 | + '$line', |
|
268 | + $line, |
|
269 | + esc_html__('integer', 'event_espresso') |
|
270 | + ); |
|
271 | + } |
|
272 | + $this->line = $line; |
|
273 | + } |
|
274 | + |
|
275 | + |
|
276 | + /** |
|
277 | + * @param boolean $dismissible |
|
278 | + */ |
|
279 | + private function setDismissible($dismissible = true) |
|
280 | + { |
|
281 | + $this->dismissible = filter_var($dismissible, FILTER_VALIDATE_BOOLEAN); |
|
282 | + } |
|
283 | 283 | |
284 | 284 | } |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | */ |
93 | 93 | private function types() |
94 | 94 | { |
95 | - return (array)apply_filters( |
|
95 | + return (array) apply_filters( |
|
96 | 96 | 'FHEE__EventEspresso_core_services_notices_Notice__types', |
97 | 97 | array( |
98 | 98 | Notice::ERROR, |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | */ |
170 | 170 | private function setType($type) |
171 | 171 | { |
172 | - if (! in_array($type, $this->types(), true)) { |
|
172 | + if ( ! in_array($type, $this->types(), true)) { |
|
173 | 173 | throw new InvalidDataTypeException( |
174 | 174 | '$type', |
175 | 175 | $type, |
@@ -17,79 +17,79 @@ |
||
17 | 17 | abstract class NoticeConverter implements NoticeConverterInterface |
18 | 18 | { |
19 | 19 | |
20 | - /** |
|
21 | - * @var NoticesContainerInterface $notices |
|
22 | - */ |
|
23 | - private $notices; |
|
20 | + /** |
|
21 | + * @var NoticesContainerInterface $notices |
|
22 | + */ |
|
23 | + private $notices; |
|
24 | 24 | |
25 | - /** |
|
26 | - * if set to true, then errors will be thrown as exceptions |
|
27 | - * |
|
28 | - * @var boolean $throw_exceptions |
|
29 | - */ |
|
30 | - private $throw_exceptions; |
|
25 | + /** |
|
26 | + * if set to true, then errors will be thrown as exceptions |
|
27 | + * |
|
28 | + * @var boolean $throw_exceptions |
|
29 | + */ |
|
30 | + private $throw_exceptions; |
|
31 | 31 | |
32 | 32 | |
33 | 33 | |
34 | - /** |
|
35 | - * NoticeConverter constructor. |
|
36 | - * |
|
37 | - * @param bool $throw_exceptions |
|
38 | - */ |
|
39 | - public function __construct($throw_exceptions = false) |
|
40 | - { |
|
41 | - $this->throw_exceptions = $throw_exceptions; |
|
42 | - } |
|
34 | + /** |
|
35 | + * NoticeConverter constructor. |
|
36 | + * |
|
37 | + * @param bool $throw_exceptions |
|
38 | + */ |
|
39 | + public function __construct($throw_exceptions = false) |
|
40 | + { |
|
41 | + $this->throw_exceptions = $throw_exceptions; |
|
42 | + } |
|
43 | 43 | |
44 | 44 | |
45 | 45 | |
46 | - /** |
|
47 | - * @return NoticesContainerInterface |
|
48 | - */ |
|
49 | - public function getNotices() |
|
50 | - { |
|
51 | - return $this->notices; |
|
52 | - } |
|
46 | + /** |
|
47 | + * @return NoticesContainerInterface |
|
48 | + */ |
|
49 | + public function getNotices() |
|
50 | + { |
|
51 | + return $this->notices; |
|
52 | + } |
|
53 | 53 | |
54 | 54 | |
55 | 55 | |
56 | - /** |
|
57 | - * @param NoticesContainerInterface $notices |
|
58 | - */ |
|
59 | - protected function setNotices(NoticesContainerInterface $notices) |
|
60 | - { |
|
61 | - $this->notices = $notices; |
|
62 | - } |
|
56 | + /** |
|
57 | + * @param NoticesContainerInterface $notices |
|
58 | + */ |
|
59 | + protected function setNotices(NoticesContainerInterface $notices) |
|
60 | + { |
|
61 | + $this->notices = $notices; |
|
62 | + } |
|
63 | 63 | |
64 | 64 | |
65 | 65 | |
66 | - /** |
|
67 | - * @return bool |
|
68 | - */ |
|
69 | - public function getThrowExceptions() |
|
70 | - { |
|
71 | - return $this->throw_exceptions; |
|
72 | - } |
|
66 | + /** |
|
67 | + * @return bool |
|
68 | + */ |
|
69 | + public function getThrowExceptions() |
|
70 | + { |
|
71 | + return $this->throw_exceptions; |
|
72 | + } |
|
73 | 73 | |
74 | 74 | |
75 | 75 | |
76 | - /** |
|
77 | - * @param bool $throw_exceptions |
|
78 | - */ |
|
79 | - public function setThrowExceptions($throw_exceptions) |
|
80 | - { |
|
81 | - $this->throw_exceptions = filter_var($throw_exceptions, FILTER_VALIDATE_BOOLEAN); |
|
82 | - } |
|
76 | + /** |
|
77 | + * @param bool $throw_exceptions |
|
78 | + */ |
|
79 | + public function setThrowExceptions($throw_exceptions) |
|
80 | + { |
|
81 | + $this->throw_exceptions = filter_var($throw_exceptions, FILTER_VALIDATE_BOOLEAN); |
|
82 | + } |
|
83 | 83 | |
84 | 84 | |
85 | 85 | |
86 | - /** |
|
87 | - * @return void; |
|
88 | - */ |
|
89 | - public function clearNotices() |
|
90 | - { |
|
91 | - $this->notices = null; |
|
92 | - } |
|
86 | + /** |
|
87 | + * @return void; |
|
88 | + */ |
|
89 | + public function clearNotices() |
|
90 | + { |
|
91 | + $this->notices = null; |
|
92 | + } |
|
93 | 93 | |
94 | 94 | |
95 | 95 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php if ( ! defined('ABSPATH')) { |
2 | - exit('No direct script access allowed'); |
|
2 | + exit('No direct script access allowed'); |
|
3 | 3 | } |
4 | 4 | /* |
5 | 5 | Plugin Name: Event Espresso |
@@ -40,243 +40,243 @@ discard block |
||
40 | 40 | * @since 4.0 |
41 | 41 | */ |
42 | 42 | if (function_exists('espresso_version')) { |
43 | - /** |
|
44 | - * espresso_duplicate_plugin_error |
|
45 | - * displays if more than one version of EE is activated at the same time |
|
46 | - */ |
|
47 | - function espresso_duplicate_plugin_error() |
|
48 | - { |
|
49 | - ?> |
|
43 | + /** |
|
44 | + * espresso_duplicate_plugin_error |
|
45 | + * displays if more than one version of EE is activated at the same time |
|
46 | + */ |
|
47 | + function espresso_duplicate_plugin_error() |
|
48 | + { |
|
49 | + ?> |
|
50 | 50 | <div class="error"> |
51 | 51 | <p> |
52 | 52 | <?php echo esc_html__( |
53 | - 'Can not run multiple versions of Event Espresso! One version has been automatically deactivated. Please verify that you have the correct version you want still active.', |
|
54 | - 'event_espresso' |
|
55 | - ); ?> |
|
53 | + 'Can not run multiple versions of Event Espresso! One version has been automatically deactivated. Please verify that you have the correct version you want still active.', |
|
54 | + 'event_espresso' |
|
55 | + ); ?> |
|
56 | 56 | </p> |
57 | 57 | </div> |
58 | 58 | <?php |
59 | - espresso_deactivate_plugin(plugin_basename(__FILE__)); |
|
60 | - } |
|
59 | + espresso_deactivate_plugin(plugin_basename(__FILE__)); |
|
60 | + } |
|
61 | 61 | |
62 | - add_action('admin_notices', 'espresso_duplicate_plugin_error', 1); |
|
62 | + add_action('admin_notices', 'espresso_duplicate_plugin_error', 1); |
|
63 | 63 | } else { |
64 | - define('EE_MIN_PHP_VER_REQUIRED', '5.3.9'); |
|
65 | - if ( ! version_compare(PHP_VERSION, EE_MIN_PHP_VER_REQUIRED, '>=')) { |
|
66 | - /** |
|
67 | - * espresso_minimum_php_version_error |
|
68 | - * |
|
69 | - * @return void |
|
70 | - */ |
|
71 | - function espresso_minimum_php_version_error() |
|
72 | - { |
|
73 | - ?> |
|
64 | + define('EE_MIN_PHP_VER_REQUIRED', '5.3.9'); |
|
65 | + if ( ! version_compare(PHP_VERSION, EE_MIN_PHP_VER_REQUIRED, '>=')) { |
|
66 | + /** |
|
67 | + * espresso_minimum_php_version_error |
|
68 | + * |
|
69 | + * @return void |
|
70 | + */ |
|
71 | + function espresso_minimum_php_version_error() |
|
72 | + { |
|
73 | + ?> |
|
74 | 74 | <div class="error"> |
75 | 75 | <p> |
76 | 76 | <?php |
77 | - printf( |
|
78 | - esc_html__( |
|
79 | - 'We\'re sorry, but Event Espresso requires PHP version %1$s or greater in order to operate. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', |
|
80 | - 'event_espresso' |
|
81 | - ), |
|
82 | - EE_MIN_PHP_VER_REQUIRED, |
|
83 | - PHP_VERSION, |
|
84 | - '<br/>', |
|
85 | - '<a href="http://php.net/downloads.php">http://php.net/downloads.php</a>' |
|
86 | - ); |
|
87 | - ?> |
|
77 | + printf( |
|
78 | + esc_html__( |
|
79 | + 'We\'re sorry, but Event Espresso requires PHP version %1$s or greater in order to operate. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', |
|
80 | + 'event_espresso' |
|
81 | + ), |
|
82 | + EE_MIN_PHP_VER_REQUIRED, |
|
83 | + PHP_VERSION, |
|
84 | + '<br/>', |
|
85 | + '<a href="http://php.net/downloads.php">http://php.net/downloads.php</a>' |
|
86 | + ); |
|
87 | + ?> |
|
88 | 88 | </p> |
89 | 89 | </div> |
90 | 90 | <?php |
91 | - espresso_deactivate_plugin(plugin_basename(__FILE__)); |
|
92 | - } |
|
91 | + espresso_deactivate_plugin(plugin_basename(__FILE__)); |
|
92 | + } |
|
93 | 93 | |
94 | - add_action('admin_notices', 'espresso_minimum_php_version_error', 1); |
|
95 | - } else { |
|
96 | - /** |
|
97 | - * espresso_version |
|
98 | - * Returns the plugin version |
|
99 | - * |
|
100 | - * @return string |
|
101 | - */ |
|
102 | - function espresso_version() |
|
103 | - { |
|
104 | - return apply_filters('FHEE__espresso__espresso_version', '4.9.47.rc.047'); |
|
105 | - } |
|
94 | + add_action('admin_notices', 'espresso_minimum_php_version_error', 1); |
|
95 | + } else { |
|
96 | + /** |
|
97 | + * espresso_version |
|
98 | + * Returns the plugin version |
|
99 | + * |
|
100 | + * @return string |
|
101 | + */ |
|
102 | + function espresso_version() |
|
103 | + { |
|
104 | + return apply_filters('FHEE__espresso__espresso_version', '4.9.47.rc.047'); |
|
105 | + } |
|
106 | 106 | |
107 | - // define versions |
|
108 | - define('EVENT_ESPRESSO_VERSION', espresso_version()); |
|
109 | - define('EE_MIN_WP_VER_REQUIRED', '4.1'); |
|
110 | - define('EE_MIN_WP_VER_RECOMMENDED', '4.4.2'); |
|
111 | - define('EE_MIN_PHP_VER_RECOMMENDED', '5.4.44'); |
|
112 | - define('EVENT_ESPRESSO_MAIN_FILE', __FILE__); |
|
113 | - //used to be DIRECTORY_SEPARATOR, but that caused issues on windows |
|
114 | - if ( ! defined('DS')) { |
|
115 | - define('DS', '/'); |
|
116 | - } |
|
117 | - if ( ! defined('PS')) { |
|
118 | - define('PS', PATH_SEPARATOR); |
|
119 | - } |
|
120 | - if ( ! defined('SP')) { |
|
121 | - define('SP', ' '); |
|
122 | - } |
|
123 | - if ( ! defined('EENL')) { |
|
124 | - define('EENL', "\n"); |
|
125 | - } |
|
126 | - define('EE_SUPPORT_EMAIL', '[email protected]'); |
|
127 | - // define the plugin directory and URL |
|
128 | - define('EE_PLUGIN_BASENAME', plugin_basename(EVENT_ESPRESSO_MAIN_FILE)); |
|
129 | - define('EE_PLUGIN_DIR_PATH', plugin_dir_path(EVENT_ESPRESSO_MAIN_FILE)); |
|
130 | - define('EE_PLUGIN_DIR_URL', plugin_dir_url(EVENT_ESPRESSO_MAIN_FILE)); |
|
131 | - // main root folder paths |
|
132 | - define('EE_ADMIN_PAGES', EE_PLUGIN_DIR_PATH . 'admin_pages' . DS); |
|
133 | - define('EE_CORE', EE_PLUGIN_DIR_PATH . 'core' . DS); |
|
134 | - define('EE_MODULES', EE_PLUGIN_DIR_PATH . 'modules' . DS); |
|
135 | - define('EE_PUBLIC', EE_PLUGIN_DIR_PATH . 'public' . DS); |
|
136 | - define('EE_SHORTCODES', EE_PLUGIN_DIR_PATH . 'shortcodes' . DS); |
|
137 | - define('EE_WIDGETS', EE_PLUGIN_DIR_PATH . 'widgets' . DS); |
|
138 | - define('EE_PAYMENT_METHODS', EE_PLUGIN_DIR_PATH . 'payment_methods' . DS); |
|
139 | - define('EE_CAFF_PATH', EE_PLUGIN_DIR_PATH . 'caffeinated' . DS); |
|
140 | - // core system paths |
|
141 | - define('EE_ADMIN', EE_CORE . 'admin' . DS); |
|
142 | - define('EE_CPTS', EE_CORE . 'CPTs' . DS); |
|
143 | - define('EE_CLASSES', EE_CORE . 'db_classes' . DS); |
|
144 | - define('EE_INTERFACES', EE_CORE . 'interfaces' . DS); |
|
145 | - define('EE_BUSINESS', EE_CORE . 'business' . DS); |
|
146 | - define('EE_MODELS', EE_CORE . 'db_models' . DS); |
|
147 | - define('EE_HELPERS', EE_CORE . 'helpers' . DS); |
|
148 | - define('EE_LIBRARIES', EE_CORE . 'libraries' . DS); |
|
149 | - define('EE_TEMPLATES', EE_CORE . 'templates' . DS); |
|
150 | - define('EE_THIRD_PARTY', EE_CORE . 'third_party_libs' . DS); |
|
151 | - define('EE_GLOBAL_ASSETS', EE_TEMPLATES . 'global_assets' . DS); |
|
152 | - define('EE_FORM_SECTIONS', EE_LIBRARIES . 'form_sections' . DS); |
|
153 | - // gateways |
|
154 | - define('EE_GATEWAYS', EE_MODULES . 'gateways' . DS); |
|
155 | - define('EE_GATEWAYS_URL', EE_PLUGIN_DIR_URL . 'modules' . DS . 'gateways' . DS); |
|
156 | - // asset URL paths |
|
157 | - define('EE_TEMPLATES_URL', EE_PLUGIN_DIR_URL . 'core' . DS . 'templates' . DS); |
|
158 | - define('EE_GLOBAL_ASSETS_URL', EE_TEMPLATES_URL . 'global_assets' . DS); |
|
159 | - define('EE_IMAGES_URL', EE_GLOBAL_ASSETS_URL . 'images' . DS); |
|
160 | - define('EE_THIRD_PARTY_URL', EE_PLUGIN_DIR_URL . 'core' . DS . 'third_party_libs' . DS); |
|
161 | - define('EE_HELPERS_ASSETS', EE_PLUGIN_DIR_URL . 'core/helpers/assets/'); |
|
162 | - define('EE_LIBRARIES_URL', EE_PLUGIN_DIR_URL . 'core/libraries/'); |
|
163 | - // define upload paths |
|
164 | - $uploads = wp_upload_dir(); |
|
165 | - // define the uploads directory and URL |
|
166 | - define('EVENT_ESPRESSO_UPLOAD_DIR', $uploads['basedir'] . DS . 'espresso' . DS); |
|
167 | - define('EVENT_ESPRESSO_UPLOAD_URL', $uploads['baseurl'] . DS . 'espresso' . DS); |
|
168 | - // define the templates directory and URL |
|
169 | - define('EVENT_ESPRESSO_TEMPLATE_DIR', $uploads['basedir'] . DS . 'espresso' . DS . 'templates' . DS); |
|
170 | - define('EVENT_ESPRESSO_TEMPLATE_URL', $uploads['baseurl'] . DS . 'espresso' . DS . 'templates' . DS); |
|
171 | - // define the gateway directory and URL |
|
172 | - define('EVENT_ESPRESSO_GATEWAY_DIR', $uploads['basedir'] . DS . 'espresso' . DS . 'gateways' . DS); |
|
173 | - define('EVENT_ESPRESSO_GATEWAY_URL', $uploads['baseurl'] . DS . 'espresso' . DS . 'gateways' . DS); |
|
174 | - // languages folder/path |
|
175 | - define('EE_LANGUAGES_SAFE_LOC', '..' . DS . 'uploads' . DS . 'espresso' . DS . 'languages' . DS); |
|
176 | - define('EE_LANGUAGES_SAFE_DIR', EVENT_ESPRESSO_UPLOAD_DIR . 'languages' . DS); |
|
177 | - //check for dompdf fonts in uploads |
|
178 | - if (file_exists(EVENT_ESPRESSO_UPLOAD_DIR . 'fonts' . DS)) { |
|
179 | - define('DOMPDF_FONT_DIR', EVENT_ESPRESSO_UPLOAD_DIR . 'fonts' . DS); |
|
180 | - } |
|
181 | - //ajax constants |
|
182 | - define( |
|
183 | - 'EE_FRONT_AJAX', |
|
184 | - isset($_REQUEST['ee_front_ajax']) || isset($_REQUEST['data']['ee_front_ajax']) ? true : false |
|
185 | - ); |
|
186 | - define( |
|
187 | - 'EE_ADMIN_AJAX', |
|
188 | - isset($_REQUEST['ee_admin_ajax']) || isset($_REQUEST['data']['ee_admin_ajax']) ? true : false |
|
189 | - ); |
|
190 | - //just a handy constant occasionally needed for finding values representing infinity in the DB |
|
191 | - //you're better to use this than its straight value (currently -1) in case you ever |
|
192 | - //want to change its default value! or find when -1 means infinity |
|
193 | - define('EE_INF_IN_DB', -1); |
|
194 | - define('EE_INF', INF > (float)PHP_INT_MAX ? INF : PHP_INT_MAX); |
|
195 | - define('EE_DEBUG', false); |
|
196 | - // for older WP versions |
|
197 | - if ( ! defined('MONTH_IN_SECONDS')) { |
|
198 | - define('MONTH_IN_SECONDS', DAY_IN_SECONDS * 30); |
|
199 | - } |
|
200 | - /** |
|
201 | - * espresso_plugin_activation |
|
202 | - * adds a wp-option to indicate that EE has been activated via the WP admin plugins page |
|
203 | - */ |
|
204 | - function espresso_plugin_activation() |
|
205 | - { |
|
206 | - update_option('ee_espresso_activation', true); |
|
207 | - } |
|
107 | + // define versions |
|
108 | + define('EVENT_ESPRESSO_VERSION', espresso_version()); |
|
109 | + define('EE_MIN_WP_VER_REQUIRED', '4.1'); |
|
110 | + define('EE_MIN_WP_VER_RECOMMENDED', '4.4.2'); |
|
111 | + define('EE_MIN_PHP_VER_RECOMMENDED', '5.4.44'); |
|
112 | + define('EVENT_ESPRESSO_MAIN_FILE', __FILE__); |
|
113 | + //used to be DIRECTORY_SEPARATOR, but that caused issues on windows |
|
114 | + if ( ! defined('DS')) { |
|
115 | + define('DS', '/'); |
|
116 | + } |
|
117 | + if ( ! defined('PS')) { |
|
118 | + define('PS', PATH_SEPARATOR); |
|
119 | + } |
|
120 | + if ( ! defined('SP')) { |
|
121 | + define('SP', ' '); |
|
122 | + } |
|
123 | + if ( ! defined('EENL')) { |
|
124 | + define('EENL', "\n"); |
|
125 | + } |
|
126 | + define('EE_SUPPORT_EMAIL', '[email protected]'); |
|
127 | + // define the plugin directory and URL |
|
128 | + define('EE_PLUGIN_BASENAME', plugin_basename(EVENT_ESPRESSO_MAIN_FILE)); |
|
129 | + define('EE_PLUGIN_DIR_PATH', plugin_dir_path(EVENT_ESPRESSO_MAIN_FILE)); |
|
130 | + define('EE_PLUGIN_DIR_URL', plugin_dir_url(EVENT_ESPRESSO_MAIN_FILE)); |
|
131 | + // main root folder paths |
|
132 | + define('EE_ADMIN_PAGES', EE_PLUGIN_DIR_PATH . 'admin_pages' . DS); |
|
133 | + define('EE_CORE', EE_PLUGIN_DIR_PATH . 'core' . DS); |
|
134 | + define('EE_MODULES', EE_PLUGIN_DIR_PATH . 'modules' . DS); |
|
135 | + define('EE_PUBLIC', EE_PLUGIN_DIR_PATH . 'public' . DS); |
|
136 | + define('EE_SHORTCODES', EE_PLUGIN_DIR_PATH . 'shortcodes' . DS); |
|
137 | + define('EE_WIDGETS', EE_PLUGIN_DIR_PATH . 'widgets' . DS); |
|
138 | + define('EE_PAYMENT_METHODS', EE_PLUGIN_DIR_PATH . 'payment_methods' . DS); |
|
139 | + define('EE_CAFF_PATH', EE_PLUGIN_DIR_PATH . 'caffeinated' . DS); |
|
140 | + // core system paths |
|
141 | + define('EE_ADMIN', EE_CORE . 'admin' . DS); |
|
142 | + define('EE_CPTS', EE_CORE . 'CPTs' . DS); |
|
143 | + define('EE_CLASSES', EE_CORE . 'db_classes' . DS); |
|
144 | + define('EE_INTERFACES', EE_CORE . 'interfaces' . DS); |
|
145 | + define('EE_BUSINESS', EE_CORE . 'business' . DS); |
|
146 | + define('EE_MODELS', EE_CORE . 'db_models' . DS); |
|
147 | + define('EE_HELPERS', EE_CORE . 'helpers' . DS); |
|
148 | + define('EE_LIBRARIES', EE_CORE . 'libraries' . DS); |
|
149 | + define('EE_TEMPLATES', EE_CORE . 'templates' . DS); |
|
150 | + define('EE_THIRD_PARTY', EE_CORE . 'third_party_libs' . DS); |
|
151 | + define('EE_GLOBAL_ASSETS', EE_TEMPLATES . 'global_assets' . DS); |
|
152 | + define('EE_FORM_SECTIONS', EE_LIBRARIES . 'form_sections' . DS); |
|
153 | + // gateways |
|
154 | + define('EE_GATEWAYS', EE_MODULES . 'gateways' . DS); |
|
155 | + define('EE_GATEWAYS_URL', EE_PLUGIN_DIR_URL . 'modules' . DS . 'gateways' . DS); |
|
156 | + // asset URL paths |
|
157 | + define('EE_TEMPLATES_URL', EE_PLUGIN_DIR_URL . 'core' . DS . 'templates' . DS); |
|
158 | + define('EE_GLOBAL_ASSETS_URL', EE_TEMPLATES_URL . 'global_assets' . DS); |
|
159 | + define('EE_IMAGES_URL', EE_GLOBAL_ASSETS_URL . 'images' . DS); |
|
160 | + define('EE_THIRD_PARTY_URL', EE_PLUGIN_DIR_URL . 'core' . DS . 'third_party_libs' . DS); |
|
161 | + define('EE_HELPERS_ASSETS', EE_PLUGIN_DIR_URL . 'core/helpers/assets/'); |
|
162 | + define('EE_LIBRARIES_URL', EE_PLUGIN_DIR_URL . 'core/libraries/'); |
|
163 | + // define upload paths |
|
164 | + $uploads = wp_upload_dir(); |
|
165 | + // define the uploads directory and URL |
|
166 | + define('EVENT_ESPRESSO_UPLOAD_DIR', $uploads['basedir'] . DS . 'espresso' . DS); |
|
167 | + define('EVENT_ESPRESSO_UPLOAD_URL', $uploads['baseurl'] . DS . 'espresso' . DS); |
|
168 | + // define the templates directory and URL |
|
169 | + define('EVENT_ESPRESSO_TEMPLATE_DIR', $uploads['basedir'] . DS . 'espresso' . DS . 'templates' . DS); |
|
170 | + define('EVENT_ESPRESSO_TEMPLATE_URL', $uploads['baseurl'] . DS . 'espresso' . DS . 'templates' . DS); |
|
171 | + // define the gateway directory and URL |
|
172 | + define('EVENT_ESPRESSO_GATEWAY_DIR', $uploads['basedir'] . DS . 'espresso' . DS . 'gateways' . DS); |
|
173 | + define('EVENT_ESPRESSO_GATEWAY_URL', $uploads['baseurl'] . DS . 'espresso' . DS . 'gateways' . DS); |
|
174 | + // languages folder/path |
|
175 | + define('EE_LANGUAGES_SAFE_LOC', '..' . DS . 'uploads' . DS . 'espresso' . DS . 'languages' . DS); |
|
176 | + define('EE_LANGUAGES_SAFE_DIR', EVENT_ESPRESSO_UPLOAD_DIR . 'languages' . DS); |
|
177 | + //check for dompdf fonts in uploads |
|
178 | + if (file_exists(EVENT_ESPRESSO_UPLOAD_DIR . 'fonts' . DS)) { |
|
179 | + define('DOMPDF_FONT_DIR', EVENT_ESPRESSO_UPLOAD_DIR . 'fonts' . DS); |
|
180 | + } |
|
181 | + //ajax constants |
|
182 | + define( |
|
183 | + 'EE_FRONT_AJAX', |
|
184 | + isset($_REQUEST['ee_front_ajax']) || isset($_REQUEST['data']['ee_front_ajax']) ? true : false |
|
185 | + ); |
|
186 | + define( |
|
187 | + 'EE_ADMIN_AJAX', |
|
188 | + isset($_REQUEST['ee_admin_ajax']) || isset($_REQUEST['data']['ee_admin_ajax']) ? true : false |
|
189 | + ); |
|
190 | + //just a handy constant occasionally needed for finding values representing infinity in the DB |
|
191 | + //you're better to use this than its straight value (currently -1) in case you ever |
|
192 | + //want to change its default value! or find when -1 means infinity |
|
193 | + define('EE_INF_IN_DB', -1); |
|
194 | + define('EE_INF', INF > (float)PHP_INT_MAX ? INF : PHP_INT_MAX); |
|
195 | + define('EE_DEBUG', false); |
|
196 | + // for older WP versions |
|
197 | + if ( ! defined('MONTH_IN_SECONDS')) { |
|
198 | + define('MONTH_IN_SECONDS', DAY_IN_SECONDS * 30); |
|
199 | + } |
|
200 | + /** |
|
201 | + * espresso_plugin_activation |
|
202 | + * adds a wp-option to indicate that EE has been activated via the WP admin plugins page |
|
203 | + */ |
|
204 | + function espresso_plugin_activation() |
|
205 | + { |
|
206 | + update_option('ee_espresso_activation', true); |
|
207 | + } |
|
208 | 208 | |
209 | - register_activation_hook(EVENT_ESPRESSO_MAIN_FILE, 'espresso_plugin_activation'); |
|
210 | - /** |
|
211 | - * espresso_load_error_handling |
|
212 | - * this function loads EE's class for handling exceptions and errors |
|
213 | - */ |
|
214 | - function espresso_load_error_handling() |
|
215 | - { |
|
216 | - // load debugging tools |
|
217 | - if (WP_DEBUG === true && is_readable(EE_HELPERS . 'EEH_Debug_Tools.helper.php')) { |
|
218 | - require_once(EE_HELPERS . 'EEH_Debug_Tools.helper.php'); |
|
219 | - EEH_Debug_Tools::instance(); |
|
220 | - } |
|
221 | - // load error handling |
|
222 | - if (is_readable(EE_CORE . 'EE_Error.core.php')) { |
|
223 | - require_once(EE_CORE . 'EE_Error.core.php'); |
|
224 | - } else { |
|
225 | - wp_die(esc_html__('The EE_Error core class could not be loaded.', 'event_espresso')); |
|
226 | - } |
|
227 | - } |
|
209 | + register_activation_hook(EVENT_ESPRESSO_MAIN_FILE, 'espresso_plugin_activation'); |
|
210 | + /** |
|
211 | + * espresso_load_error_handling |
|
212 | + * this function loads EE's class for handling exceptions and errors |
|
213 | + */ |
|
214 | + function espresso_load_error_handling() |
|
215 | + { |
|
216 | + // load debugging tools |
|
217 | + if (WP_DEBUG === true && is_readable(EE_HELPERS . 'EEH_Debug_Tools.helper.php')) { |
|
218 | + require_once(EE_HELPERS . 'EEH_Debug_Tools.helper.php'); |
|
219 | + EEH_Debug_Tools::instance(); |
|
220 | + } |
|
221 | + // load error handling |
|
222 | + if (is_readable(EE_CORE . 'EE_Error.core.php')) { |
|
223 | + require_once(EE_CORE . 'EE_Error.core.php'); |
|
224 | + } else { |
|
225 | + wp_die(esc_html__('The EE_Error core class could not be loaded.', 'event_espresso')); |
|
226 | + } |
|
227 | + } |
|
228 | 228 | |
229 | - /** |
|
230 | - * espresso_load_required |
|
231 | - * given a class name and path, this function will load that file or throw an exception |
|
232 | - * |
|
233 | - * @param string $classname |
|
234 | - * @param string $full_path_to_file |
|
235 | - * @throws EE_Error |
|
236 | - */ |
|
237 | - function espresso_load_required($classname, $full_path_to_file) |
|
238 | - { |
|
239 | - static $error_handling_loaded = false; |
|
240 | - if ( ! $error_handling_loaded) { |
|
241 | - espresso_load_error_handling(); |
|
242 | - $error_handling_loaded = true; |
|
243 | - } |
|
244 | - if (is_readable($full_path_to_file)) { |
|
245 | - require_once($full_path_to_file); |
|
246 | - } else { |
|
247 | - throw new EE_Error ( |
|
248 | - sprintf( |
|
249 | - esc_html__( |
|
250 | - 'The %s class file could not be located or is not readable due to file permissions.', |
|
251 | - 'event_espresso' |
|
252 | - ), |
|
253 | - $classname |
|
254 | - ) |
|
255 | - ); |
|
256 | - } |
|
257 | - } |
|
229 | + /** |
|
230 | + * espresso_load_required |
|
231 | + * given a class name and path, this function will load that file or throw an exception |
|
232 | + * |
|
233 | + * @param string $classname |
|
234 | + * @param string $full_path_to_file |
|
235 | + * @throws EE_Error |
|
236 | + */ |
|
237 | + function espresso_load_required($classname, $full_path_to_file) |
|
238 | + { |
|
239 | + static $error_handling_loaded = false; |
|
240 | + if ( ! $error_handling_loaded) { |
|
241 | + espresso_load_error_handling(); |
|
242 | + $error_handling_loaded = true; |
|
243 | + } |
|
244 | + if (is_readable($full_path_to_file)) { |
|
245 | + require_once($full_path_to_file); |
|
246 | + } else { |
|
247 | + throw new EE_Error ( |
|
248 | + sprintf( |
|
249 | + esc_html__( |
|
250 | + 'The %s class file could not be located or is not readable due to file permissions.', |
|
251 | + 'event_espresso' |
|
252 | + ), |
|
253 | + $classname |
|
254 | + ) |
|
255 | + ); |
|
256 | + } |
|
257 | + } |
|
258 | 258 | |
259 | - espresso_load_required('EEH_Base', EE_CORE . 'helpers' . DS . 'EEH_Base.helper.php'); |
|
260 | - espresso_load_required('EEH_File', EE_CORE . 'helpers' . DS . 'EEH_File.helper.php'); |
|
261 | - espresso_load_required('EE_Bootstrap', EE_CORE . 'EE_Bootstrap.core.php'); |
|
262 | - new EE_Bootstrap(); |
|
263 | - } |
|
259 | + espresso_load_required('EEH_Base', EE_CORE . 'helpers' . DS . 'EEH_Base.helper.php'); |
|
260 | + espresso_load_required('EEH_File', EE_CORE . 'helpers' . DS . 'EEH_File.helper.php'); |
|
261 | + espresso_load_required('EE_Bootstrap', EE_CORE . 'EE_Bootstrap.core.php'); |
|
262 | + new EE_Bootstrap(); |
|
263 | + } |
|
264 | 264 | } |
265 | 265 | if ( ! function_exists('espresso_deactivate_plugin')) { |
266 | - /** |
|
267 | - * deactivate_plugin |
|
268 | - * usage: espresso_deactivate_plugin( plugin_basename( __FILE__ )); |
|
269 | - * |
|
270 | - * @access public |
|
271 | - * @param string $plugin_basename - the results of plugin_basename( __FILE__ ) for the plugin's main file |
|
272 | - * @return void |
|
273 | - */ |
|
274 | - function espresso_deactivate_plugin($plugin_basename = '') |
|
275 | - { |
|
276 | - if ( ! function_exists('deactivate_plugins')) { |
|
277 | - require_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
278 | - } |
|
279 | - unset($_GET['activate'], $_REQUEST['activate']); |
|
280 | - deactivate_plugins($plugin_basename); |
|
281 | - } |
|
266 | + /** |
|
267 | + * deactivate_plugin |
|
268 | + * usage: espresso_deactivate_plugin( plugin_basename( __FILE__ )); |
|
269 | + * |
|
270 | + * @access public |
|
271 | + * @param string $plugin_basename - the results of plugin_basename( __FILE__ ) for the plugin's main file |
|
272 | + * @return void |
|
273 | + */ |
|
274 | + function espresso_deactivate_plugin($plugin_basename = '') |
|
275 | + { |
|
276 | + if ( ! function_exists('deactivate_plugins')) { |
|
277 | + require_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
278 | + } |
|
279 | + unset($_GET['activate'], $_REQUEST['activate']); |
|
280 | + deactivate_plugins($plugin_basename); |
|
281 | + } |
|
282 | 282 | } |
283 | 283 | \ No newline at end of file |