Completed
Push — develop ( cb7ecf...5e631f )
by Dmytro
17s
created
manager/media/rss/rss_fetch.inc 1 patch
Spacing   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -24,19 +24,19 @@  discard block
 block discarded – undo
24 24
 }
25 25
 
26 26
 if (!defined('MAGPIE_DIR')) {
27
-    define('MAGPIE_DIR', dirname(__FILE__) . DIR_SEP);
27
+    define('MAGPIE_DIR', dirname(__FILE__).DIR_SEP);
28 28
 }
29 29
 
30 30
 if (!defined('MAGPIE_CACHE_DIR')) {
31
-    define('MAGPIE_CACHE_DIR', MODX_BASE_PATH . 'assets/cache/rss');
31
+    define('MAGPIE_CACHE_DIR', MODX_BASE_PATH.'assets/cache/rss');
32 32
 }
33 33
 
34
-require_once( MAGPIE_DIR . 'rss_parse.inc' );
35
-require_once( MAGPIE_DIR . 'rss_cache.inc' );
34
+require_once(MAGPIE_DIR.'rss_parse.inc');
35
+require_once(MAGPIE_DIR.'rss_cache.inc');
36 36
 
37 37
 // for including 3rd party libraries
38
-define('MAGPIE_EXTLIB', MAGPIE_DIR . 'extlib' . DIR_SEP);
39
-require_once( MAGPIE_EXTLIB . 'Snoopy.class.inc');
38
+define('MAGPIE_EXTLIB', MAGPIE_DIR.'extlib'.DIR_SEP);
39
+require_once(MAGPIE_EXTLIB.'Snoopy.class.inc');
40 40
 
41 41
 
42 42
 /*
@@ -89,21 +89,21 @@  discard block
 block discarded – undo
89 89
 
90 90
 $MAGPIE_ERROR = "";
91 91
 
92
-function fetch_rss ($url) {
92
+function fetch_rss($url){
93 93
     // initialize constants
94 94
     init();
95 95
 
96
-    if ( !isset($url) ) {
96
+    if (!isset($url)) {
97 97
         error("fetch_rss called without a url");
98 98
         return false;
99 99
     }
100 100
 
101 101
     // if cache is disabled
102
-    if ( !MAGPIE_CACHE_ON ) {
102
+    if (!MAGPIE_CACHE_ON) {
103 103
         // fetch file, and parse it
104
-        $resp = _fetch_remote_file( $url );
105
-        if ( is_success( $resp->status ) ) {
106
-            return _response_to_rss( $resp );
104
+        $resp = _fetch_remote_file($url);
105
+        if (is_success($resp->status)) {
106
+            return _response_to_rss($resp);
107 107
         }
108 108
         else {
109 109
             error("Failed to fetch $url and cache is off");
@@ -118,34 +118,34 @@  discard block
 block discarded – undo
118 118
         // 3. if cached obj fails freshness check, fetch remote
119 119
         // 4. if remote fails, return stale object, or error
120 120
 
121
-        $cache = new RSSCache( MAGPIE_CACHE_DIR, MAGPIE_CACHE_AGE );
121
+        $cache = new RSSCache(MAGPIE_CACHE_DIR, MAGPIE_CACHE_AGE);
122 122
 
123 123
         if (MAGPIE_DEBUG and $cache->ERROR) {
124 124
             debug($cache->ERROR, E_USER_WARNING);
125 125
         }
126 126
 
127 127
 
128
-        $cache_status    = 0;       // response of check_cache
128
+        $cache_status    = 0; // response of check_cache
129 129
         $request_headers = array(); // HTTP headers to send with fetch
130
-        $rss             = 0;       // parsed RSS object
131
-        $errormsg        = 0;       // errors, if any
130
+        $rss             = 0; // parsed RSS object
131
+        $errormsg        = 0; // errors, if any
132 132
 
133 133
         // store parsed XML by desired output encoding
134 134
         // as character munging happens at parse time
135
-        $cache_key       = $url . MAGPIE_OUTPUT_ENCODING;
135
+        $cache_key = $url.MAGPIE_OUTPUT_ENCODING;
136 136
 
137 137
         if (!$cache->ERROR) {
138 138
             // return cache HIT, MISS, or STALE
139
-            $cache_status = $cache->check_cache( $cache_key);
139
+            $cache_status = $cache->check_cache($cache_key);
140 140
         }
141 141
 
142 142
         // if object cached, and cache is fresh, return cached obj
143
-        if ( $cache_status == 'HIT' ) {
144
-            $rss = $cache->get( $cache_key );
145
-            if ( isset($rss) and $rss ) {
143
+        if ($cache_status == 'HIT') {
144
+            $rss = $cache->get($cache_key);
145
+            if (isset($rss) and $rss) {
146 146
                 // should be cache age
147 147
                 $rss->from_cache = 1;
148
-                if ( MAGPIE_DEBUG > 1) {
148
+                if (MAGPIE_DEBUG > 1) {
149 149
                     debug("MagpieRSS: Cache HIT", E_USER_NOTICE);
150 150
                 }
151 151
                 return $rss;
@@ -155,50 +155,50 @@  discard block
 block discarded – undo
155 155
         // else attempt a conditional get
156 156
 
157 157
         // setup headers
158
-        if ( $cache_status == 'STALE' ) {
159
-            $rss = $cache->get( $cache_key );
160
-            if ( $rss and $rss->etag and $rss->last_modified ) {
158
+        if ($cache_status == 'STALE') {
159
+            $rss = $cache->get($cache_key);
160
+            if ($rss and $rss->etag and $rss->last_modified) {
161 161
                 $request_headers['If-None-Match'] = $rss->etag;
162 162
                 $request_headers['If-Last-Modified'] = $rss->last_modified;
163 163
             }
164 164
         }
165 165
 
166
-        $resp = _fetch_remote_file( $url, $request_headers );
166
+        $resp = _fetch_remote_file($url, $request_headers);
167 167
 
168 168
         if (isset($resp) and $resp) {
169
-          if ($resp->status == '304' ) {
169
+          if ($resp->status == '304') {
170 170
                 // we have the most current copy
171
-                if ( MAGPIE_DEBUG > 1) {
171
+                if (MAGPIE_DEBUG > 1) {
172 172
                     debug("Got 304 for $url");
173 173
                 }
174 174
                 // reset cache on 304 (at minutillo insistent prodding)
175 175
                 $cache->set($cache_key, $rss);
176 176
                 return $rss;
177 177
             }
178
-            elseif ( is_success( $resp->status ) ) {
179
-                $rss = _response_to_rss( $resp );
180
-                if ( $rss ) {
178
+            elseif (is_success($resp->status)) {
179
+                $rss = _response_to_rss($resp);
180
+                if ($rss) {
181 181
                     if (MAGPIE_DEBUG > 1) {
182 182
                         debug("Fetch successful");
183 183
                     }
184 184
                     // add object to cache
185
-                    $cache->set( $cache_key, $rss );
185
+                    $cache->set($cache_key, $rss);
186 186
                     return $rss;
187 187
                 }
188 188
             }
189 189
             else {
190 190
                 $errormsg = "Failed to fetch $url ";
191
-                if ( $resp->status == '-100' ) {
192
-                    $errormsg .= "(Request timed out after " . MAGPIE_FETCH_TIME_OUT . " seconds)";
191
+                if ($resp->status == '-100') {
192
+                    $errormsg .= "(Request timed out after ".MAGPIE_FETCH_TIME_OUT." seconds)";
193 193
                 }
194
-                elseif ( $resp->error ) {
194
+                elseif ($resp->error) {
195 195
                     # compensate for Snoopy's annoying habbit to tacking
196 196
                     # on '\n'
197 197
                     $http_error = substr($resp->error, 0, -2);
198 198
                     $errormsg .= "(HTTP Error: $http_error)";
199 199
                 }
200 200
                 else {
201
-                    $errormsg .=  "(HTTP Response: " . $resp->response_code .')';
201
+                    $errormsg .= "(HTTP Response: ".$resp->response_code.')';
202 202
                 }
203 203
             }
204 204
         }
@@ -210,14 +210,14 @@  discard block
 block discarded – undo
210 210
 
211 211
         // attempt to return cached object
212 212
         if ($rss) {
213
-            if ( MAGPIE_DEBUG ) {
213
+            if (MAGPIE_DEBUG) {
214 214
                 debug("Returning STALE object for $url");
215 215
             }
216 216
             return $rss;
217 217
         }
218 218
 
219 219
         // else we totally failed
220
-        error( $errormsg );
220
+        error($errormsg);
221 221
 
222 222
         return false;
223 223
 
@@ -229,21 +229,21 @@  discard block
 block discarded – undo
229 229
     Purpose:    set MAGPIE_ERROR, and trigger error
230 230
 \*=======================================================================*/
231 231
 
232
-function error ($errormsg, $lvl=E_USER_WARNING) {
232
+function error($errormsg, $lvl = E_USER_WARNING){
233 233
         global $MAGPIE_ERROR;
234 234
 
235 235
         // append PHP's error message if track_errors enabled
236
-        if ( isset($php_errormsg) ) {
236
+        if (isset($php_errormsg)) {
237 237
             $errormsg .= " ($php_errormsg)";
238 238
         }
239
-        if ( $errormsg ) {
239
+        if ($errormsg) {
240 240
             $errormsg = "MagpieRSS: $errormsg";
241 241
             $MAGPIE_ERROR = $errormsg;
242
-            trigger_error( $errormsg, $lvl);
242
+            trigger_error($errormsg, $lvl);
243 243
         }
244 244
 }
245 245
 
246
-function debug ($debugmsg, $lvl=E_USER_NOTICE) {
246
+function debug($debugmsg, $lvl = E_USER_NOTICE){
247 247
     trigger_error("MagpieRSS [debug] $debugmsg", $lvl);
248 248
 }
249 249
 
@@ -251,10 +251,10 @@  discard block
 block discarded – undo
251 251
     Function:   magpie_error
252 252
     Purpose:    accessor for the magpie error variable
253 253
 \*=======================================================================*/
254
-function magpie_error ($errormsg="") {
254
+function magpie_error($errormsg = ""){
255 255
     global $MAGPIE_ERROR;
256 256
 
257
-    if ( isset($errormsg) and $errormsg ) {
257
+    if (isset($errormsg) and $errormsg) {
258 258
         $MAGPIE_ERROR = $errormsg;
259 259
     }
260 260
 
@@ -268,13 +268,13 @@  discard block
 block discarded – undo
268 268
                 headers to send along with the request (optional)
269 269
     Output:     an HTTP response object (see Snoopy.class.inc)
270 270
 \*=======================================================================*/
271
-function _fetch_remote_file ($url, $headers = "" ) {
271
+function _fetch_remote_file($url, $headers = ""){
272 272
     // Snoopy is an HTTP client in PHP
273 273
     $client = new Snoopy();
274 274
     $client->agent = MAGPIE_USER_AGENT;
275 275
     $client->read_timeout = MAGPIE_FETCH_TIME_OUT;
276 276
     $client->use_gzip = MAGPIE_USE_GZIP;
277
-    if (is_array($headers) ) {
277
+    if (is_array($headers)) {
278 278
         $client->rawheaders = $headers;
279 279
     }
280 280
 
@@ -289,14 +289,14 @@  discard block
 block discarded – undo
289 289
     Input:      an HTTP response object (see Snoopy)
290 290
     Output:     parsed RSS object (see rss_parse)
291 291
 \*=======================================================================*/
292
-function _response_to_rss ($resp) {
293
-    $rss = new MagpieRSS( $resp->results, MAGPIE_OUTPUT_ENCODING, MAGPIE_INPUT_ENCODING, MAGPIE_DETECT_ENCODING );
292
+function _response_to_rss($resp){
293
+    $rss = new MagpieRSS($resp->results, MAGPIE_OUTPUT_ENCODING, MAGPIE_INPUT_ENCODING, MAGPIE_DETECT_ENCODING);
294 294
 
295 295
     // if RSS parsed successfully
296
-    if ( $rss and !$rss->ERROR) {
296
+    if ($rss and !$rss->ERROR) {
297 297
 
298 298
         // find Etag, and Last-Modified
299
-        foreach($resp->headers as $h) {
299
+        foreach ($resp->headers as $h) {
300 300
             // 2003-03-02 - Nicola Asuni (www.tecnick.com) - fixed bug "Undefined offset: 1"
301 301
             if (strpos($h, ": ")) {
302 302
                 list($field, $val) = explode(": ", $h, 2);
@@ -306,11 +306,11 @@  discard block
 block discarded – undo
306 306
                 $val = "";
307 307
             }
308 308
 
309
-            if ( $field == 'ETag' ) {
309
+            if ($field == 'ETag') {
310 310
                 $rss->etag = $val;
311 311
             }
312 312
 
313
-            if ( $field == 'Last-Modified' ) {
313
+            if ($field == 'Last-Modified') {
314 314
                 $rss->last_modified = $val;
315 315
             }
316 316
         }
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
         $errormsg = "Failed to parse RSS file.";
322 322
 
323 323
         if ($rss) {
324
-            $errormsg .= " (" . $rss->ERROR . ")";
324
+            $errormsg .= " (".$rss->ERROR.")";
325 325
         }
326 326
         error($errormsg);
327 327
 
@@ -334,67 +334,67 @@  discard block
 block discarded – undo
334 334
     Purpose:    setup constants with default values
335 335
                 check for user overrides
336 336
 \*=======================================================================*/
337
-function init () {
338
-    if ( defined('MAGPIE_INITALIZED') ) {
337
+function init(){
338
+    if (defined('MAGPIE_INITALIZED')) {
339 339
         return;
340 340
     }
341 341
     else {
342 342
         define('MAGPIE_INITALIZED', true);
343 343
     }
344 344
 
345
-    if ( !defined('MAGPIE_CACHE_ON') ) {
345
+    if (!defined('MAGPIE_CACHE_ON')) {
346 346
         define('MAGPIE_CACHE_ON', true);
347 347
     }
348 348
 
349
-    if ( !defined('MAGPIE_CACHE_DIR') ) {
349
+    if (!defined('MAGPIE_CACHE_DIR')) {
350 350
         define('MAGPIE_CACHE_DIR', './cache');
351 351
     }
352 352
 
353
-    if ( !defined('MAGPIE_CACHE_AGE') ) {
354
-        define('MAGPIE_CACHE_AGE', 60*60); // one hour
353
+    if (!defined('MAGPIE_CACHE_AGE')) {
354
+        define('MAGPIE_CACHE_AGE', 60 * 60); // one hour
355 355
     }
356 356
 
357
-    if ( !defined('MAGPIE_CACHE_FRESH_ONLY') ) {
357
+    if (!defined('MAGPIE_CACHE_FRESH_ONLY')) {
358 358
         define('MAGPIE_CACHE_FRESH_ONLY', false);
359 359
     }
360 360
 
361
-    if ( !defined('MAGPIE_OUTPUT_ENCODING') ) {
361
+    if (!defined('MAGPIE_OUTPUT_ENCODING')) {
362 362
         global $modx_manager_charset;
363
-        if(empty($modx_manager_charset)) $modx_manager_charset = 'ISO-8859-1';
363
+        if (empty($modx_manager_charset)) $modx_manager_charset = 'ISO-8859-1';
364 364
         define('MAGPIE_OUTPUT_ENCODING', $modx_manager_charset);
365 365
     }
366 366
 
367
-    if ( !defined('MAGPIE_INPUT_ENCODING') ) {
367
+    if (!defined('MAGPIE_INPUT_ENCODING')) {
368 368
         define('MAGPIE_INPUT_ENCODING', null);
369 369
     }
370 370
 
371
-    if ( !defined('MAGPIE_DETECT_ENCODING') ) {
371
+    if (!defined('MAGPIE_DETECT_ENCODING')) {
372 372
         define('MAGPIE_DETECT_ENCODING', true);
373 373
     }
374 374
 
375
-    if ( !defined('MAGPIE_DEBUG') ) {
375
+    if (!defined('MAGPIE_DEBUG')) {
376 376
         define('MAGPIE_DEBUG', 0);
377 377
     }
378 378
 
379
-    if ( !defined('MAGPIE_USER_AGENT') ) {
380
-        $ua = 'MagpieRSS/'. MAGPIE_VERSION . ' (+http://magpierss.sf.net';
379
+    if (!defined('MAGPIE_USER_AGENT')) {
380
+        $ua = 'MagpieRSS/'.MAGPIE_VERSION.' (+http://magpierss.sf.net';
381 381
 
382
-        if ( MAGPIE_CACHE_ON ) {
383
-            $ua = $ua . ')';
382
+        if (MAGPIE_CACHE_ON) {
383
+            $ua = $ua.')';
384 384
         }
385 385
         else {
386
-            $ua = $ua . '; No cache)';
386
+            $ua = $ua.'; No cache)';
387 387
         }
388 388
 
389 389
         define('MAGPIE_USER_AGENT', $ua);
390 390
     }
391 391
 
392
-    if ( !defined('MAGPIE_FETCH_TIME_OUT') ) {
392
+    if (!defined('MAGPIE_FETCH_TIME_OUT')) {
393 393
         define('MAGPIE_FETCH_TIME_OUT', 5); // 5 second timeout
394 394
     }
395 395
 
396 396
     // use gzip encoding to fetch rss files if supported?
397
-    if ( !defined('MAGPIE_USE_GZIP') ) {
397
+    if (!defined('MAGPIE_USE_GZIP')) {
398 398
         define('MAGPIE_USE_GZIP', true);
399 399
     }
400 400
 }
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
     Function:   is_info
418 418
     Purpose:    return true if Informational status code
419 419
 \*=======================================================================*/
420
-function is_info ($sc) {
420
+function is_info($sc){
421 421
     return $sc >= 100 && $sc < 200;
422 422
 }
423 423
 
@@ -425,7 +425,7 @@  discard block
 block discarded – undo
425 425
     Function:   is_success
426 426
     Purpose:    return true if Successful status code
427 427
 \*=======================================================================*/
428
-function is_success ($sc) {
428
+function is_success($sc){
429 429
     return $sc >= 200 && $sc < 300;
430 430
 }
431 431
 
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
     Function:   is_redirect
434 434
     Purpose:    return true if Redirection status code
435 435
 \*=======================================================================*/
436
-function is_redirect ($sc) {
436
+function is_redirect($sc){
437 437
     return $sc >= 300 && $sc < 400;
438 438
 }
439 439
 
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
     Function:   is_error
442 442
     Purpose:    return true if Error status code
443 443
 \*=======================================================================*/
444
-function is_error ($sc) {
444
+function is_error($sc){
445 445
     return $sc >= 400 && $sc < 600;
446 446
 }
447 447
 
@@ -449,7 +449,7 @@  discard block
 block discarded – undo
449 449
     Function:   is_client_error
450 450
     Purpose:    return true if Error status code, and its a client error
451 451
 \*=======================================================================*/
452
-function is_client_error ($sc) {
452
+function is_client_error($sc){
453 453
     return $sc >= 400 && $sc < 500;
454 454
 }
455 455
 
@@ -457,6 +457,6 @@  discard block
 block discarded – undo
457 457
     Function:   is_client_error
458 458
     Purpose:    return true if Error status code, and its a server error
459 459
 \*=======================================================================*/
460
-function is_server_error ($sc) {
460
+function is_server_error($sc){
461 461
     return $sc >= 500 && $sc < 600;
462 462
 }
Please login to merge, or discard this patch.
manager/media/browser/mcpuk/js_localize.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     header("Content-Type: text/javascript");
19 19
     die;
20 20
 }
21
-$file = "lang/" . $input->get['lng'] . ".php";
21
+$file = "lang/".$input->get['lng'].".php";
22 22
 $files = dir::content("lang", array(
23 23
     'types' => "file",
24 24
     'pattern' => '/^.*\.php$/'
@@ -33,4 +33,4 @@  discard block
 block discarded – undo
33 33
 header("Content-Type: text/javascript; charset={$lang['_charset']}");
34 34
 foreach ($lang as $english => $native)
35 35
     if (substr($english, 0, 1) != "_")
36
-        echo "browser.labels['" . text::jsValue($english) . "']=\"" . text::jsValue($native) . "\";";
36
+        echo "browser.labels['".text::jsValue($english)."']=\"".text::jsValue($native)."\";";
Please login to merge, or discard this patch.
manager/media/browser/mcpuk/lib/class_gd.php 1 patch
Spacing   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
   *      @link http://kcfinder.sunhater.com
13 13
   */
14 14
 
15
-class gd {
15
+class gd{
16 16
 
17 17
   /** GD resource
18 18
     * @var resource */
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     * @param mixed $image
41 41
     * @return array */
42 42
 
43
-    protected function build_image($image) {
43
+    protected function build_image($image){
44 44
 
45 45
         if ($image instanceof gd) {
46 46
             $width = $image->get_width();
@@ -58,12 +58,12 @@  discard block
 block discarded – undo
58 58
 
59 59
         } elseif (false !== (list($width, $height, $type) = @getimagesize($image))) {
60 60
             $image =
61
-                ($type == IMAGETYPE_GIF)      ? @imagecreatefromgif($image)  : (
62
-                ($type == IMAGETYPE_WBMP)     ? @imagecreatefromwbmp($image) : (
63
-                ($type == IMAGETYPE_JPEG)     ? @imagecreatefromjpeg($image) : (
61
+                ($type == IMAGETYPE_GIF) ? @imagecreatefromgif($image) : (
62
+                ($type == IMAGETYPE_WBMP) ? @imagecreatefromwbmp($image) : (
63
+                ($type == IMAGETYPE_JPEG) ? @imagecreatefromjpeg($image) : (
64 64
                 ($type == IMAGETYPE_JPEG2000) ? @imagecreatefromjpeg($image) : (
65
-                ($type == IMAGETYPE_PNG)      ? @imagecreatefrompng($image)  : (
66
-                ($type == IMAGETYPE_XBM)      ? @imagecreatefromxbm($image)  : false
65
+                ($type == IMAGETYPE_PNG) ? @imagecreatefrompng($image) : (
66
+                ($type == IMAGETYPE_XBM) ? @imagecreatefromxbm($image) : false
67 67
             )))));
68 68
 
69 69
             if ($type == IMAGETYPE_PNG)
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     * @param integer $bigger_size
99 99
     * @return gd */
100 100
 
101
-    public function __construct($image, $bigger_size=null) {
101
+    public function __construct($image, $bigger_size = null){
102 102
         $this->image = $this->width = $this->height = null;
103 103
 
104 104
         $image_details = $this->build_image($image);
@@ -126,21 +126,21 @@  discard block
 block discarded – undo
126 126
   /** Returns the GD resource
127 127
     * @return resource */
128 128
 
129
-    public function get_image() {
129
+    public function get_image(){
130 130
         return $this->image;
131 131
     }
132 132
 
133 133
   /** Returns the image width
134 134
     * @return integer */
135 135
 
136
-    public function get_width() {
136
+    public function get_width(){
137 137
         return $this->width;
138 138
     }
139 139
 
140 140
   /** Returns the image height
141 141
     * @return integer */
142 142
 
143
-    public function get_height() {
143
+    public function get_height(){
144 144
         return $this->height;
145 145
     }
146 146
 
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     * @param integer $resized_height
149 149
     * @return integer */
150 150
 
151
-    public function get_prop_width($resized_height) {
151
+    public function get_prop_width($resized_height){
152 152
         $width = intval(($this->width * $resized_height) / $this->height);
153 153
         if (!$width) $width = 1;
154 154
         return $width;
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     * @param integer $resized_width
159 159
     * @return integer */
160 160
 
161
-    public function get_prop_height($resized_width) {
161
+    public function get_prop_height($resized_width){
162 162
         $height = intval(($this->height * $resized_width) / $this->width);
163 163
         if (!$height) $height = 1;
164 164
         return $height;
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     * @param integer $bigger_size
171 171
     * @return array */
172 172
 
173
-    public function get_prop_size($bigger_size) {
173
+    public function get_prop_size($bigger_size){
174 174
 
175 175
         if ($this->width > $this->height) {
176 176
             $width = $bigger_size;
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
     * @param integer $height
192 192
     * @return bool */
193 193
 
194
-    public function resize($width, $height) {
194
+    public function resize($width, $height){
195 195
         if (!$width) $width = 1;
196 196
         if (!$height) $height = 1;
197 197
         return (
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
     * @param mixed $src
209 209
     * @return bool */
210 210
 
211
-    public function resize_crop($src) {
211
+    public function resize_crop($src){
212 212
         $image_details = $this->build_image($src);
213 213
 
214 214
         if ($image_details !== false) {
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
     * @param integer $height
239 239
     * @return bool */
240 240
 
241
-    public function resize_fit($width, $height) {
241
+    public function resize_fit($width, $height){
242 242
         if ((!$width && !$height) || (($width == $this->width) && ($height == $this->height)))
243 243
             return true;
244 244
         if (!$width || (($height / $width) < ($this->height / $this->width)))
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
     * @param integer $height
258 258
     * @return bool */
259 259
 
260
-    public function resize_overflow($width, $height) {
260
+    public function resize_overflow($width, $height){
261 261
 
262 262
         $big = (($this->width / $this->height) > ($width / $height))
263 263
             ? ($this->width * $height) / $this->height
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
         return $return;
276 276
     }
277 277
 
278
-    public function gd_color() {
278
+    public function gd_color(){
279 279
         $args = func_get_args();
280 280
 
281 281
         $expr_rgb = '/^rgb\(\s*(\d{1,3})\s*\,\s*(\d{1,3})\s*\,\s*(\d{1,3})\s*\)$/i';
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
         return imagecolorallocate($this->image, $r, $g, $b);
318 318
     }
319 319
 
320
-    public function fill_color($color) {
320
+    public function fill_color($color){
321 321
         return $this->imagefilledrectangle(0, 0, $this->width - 1, $this->height - 1, $color);
322 322
     }
323 323
 
@@ -326,11 +326,11 @@  discard block
 block discarded – undo
326 326
 
327 327
     public function imagecopy(
328 328
         $src,
329
-        $dst_x=0, $dst_y=0,
330
-        $src_x=0, $src_y=0,
331
-        $dst_w=null, $dst_h=null,
332
-        $src_w=null, $src_h=null
333
-    ) {
329
+        $dst_x = 0, $dst_y = 0,
330
+        $src_x = 0, $src_y = 0,
331
+        $dst_w = null, $dst_h = null,
332
+        $src_w = null, $src_h = null
333
+    ){
334 334
         $image_details = $this->build_image($src);
335 335
 
336 336
         if ($image_details !== false) {
@@ -348,11 +348,11 @@  discard block
 block discarded – undo
348 348
 
349 349
     public function imagecopyresampled(
350 350
         $src,
351
-        $dst_x=0, $dst_y=0,
352
-        $src_x=0, $src_y=0,
353
-        $dst_w=null, $dst_h=null,
354
-        $src_w=null, $src_h=null
355
-    ) {
351
+        $dst_x = 0, $dst_y = 0,
352
+        $src_x = 0, $src_y = 0,
353
+        $dst_w = null, $dst_h = null,
354
+        $src_w = null, $src_h = null
355
+    ){
356 356
         $image_details = $this->build_image($src);
357 357
 
358 358
         if ($image_details !== false) {
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
             if (is_null($src_w)) $src_w = $src_width - $src_x;
364 364
             if (is_null($src_h)) $src_h = $src_height - $src_y;
365 365
             imagealphablending($this->image, false);
366
-            imagesavealpha($this->image,true);
366
+            imagesavealpha($this->image, true);
367 367
 
368 368
 
369 369
 
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
 
373 373
 			$transindex = imagecolortransparent($src);
374 374
 			$palletsize = imagecolorstotal($src);
375
-			if($transindex >= 0 && $transindex < $palletsize) {
375
+			if ($transindex >= 0 && $transindex < $palletsize) {
376 376
 				$transcol = imagecolorsforindex($src, $transindex);
377 377
 
378 378
 			/*** end gif transparent fix ***/
@@ -381,9 +381,9 @@  discard block
 block discarded – undo
381 381
 				imagefilledrectangle($this->image, 0, 0, $dst_w, $dst_h, $transindex);
382 382
 				imagecopyresampled($this->image, $src, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h);
383 383
 				imagecolortransparent($this->image, $transindex);
384
-				for($y=0; $y<$dst_h; ++$y)
385
-					for($x=0; $x<$dst_w; ++$x)
386
-						if(((imagecolorat($this->image, $x, $y)>>24) & 0x7F) >= 100) imagesetpixel($this->image, $x, $y, $transindex);
384
+				for ($y = 0; $y < $dst_h; ++$y)
385
+					for ($x = 0; $x < $dst_w; ++$x)
386
+						if (((imagecolorat($this->image, $x, $y) >> 24) & 0x7F) >= 100) imagesetpixel($this->image, $x, $y, $transindex);
387 387
 				imagetruecolortopalette($this->image, true, 255);
388 388
 			}
389 389
 			else {
@@ -397,26 +397,26 @@  discard block
 block discarded – undo
397 397
             return false;
398 398
     }
399 399
 
400
-    public function imagefilledrectangle($x1, $y1, $x2, $y2, $color) {
400
+    public function imagefilledrectangle($x1, $y1, $x2, $y2, $color){
401 401
         $color = $this->gd_color($color);
402 402
         if ($color === false) return false;
403 403
         return imagefilledrectangle($this->image, $x1, $y1, $x2, $y2, $color);
404 404
     }
405 405
 
406
-    public function imagepng($filename=null, $quality=null, $filters=null) {
406
+    public function imagepng($filename = null, $quality = null, $filters = null){
407 407
         if (is_null($filename) && !headers_sent())
408 408
             header("Content-Type: image/png");
409 409
         @imagesavealpha($this->image, true);
410 410
         return imagepng($this->image, $filename, $quality, $filters);
411 411
     }
412 412
 
413
-    public function imagejpeg($filename=null, $quality=75) {
413
+    public function imagejpeg($filename = null, $quality = 75){
414 414
         if (is_null($filename) && !headers_sent())
415 415
             header("Content-Type: image/jpeg");
416 416
         return imagejpeg($this->image, $filename, $quality);
417 417
     }
418 418
 
419
-    public function imagegif($filename=null) {
419
+    public function imagegif($filename = null){
420 420
         if (is_null($filename) && !headers_sent())
421 421
             header("Content-Type: image/gif");
422 422
 			@imagesavealpha($this->image, true);
Please login to merge, or discard this patch.
manager/media/browser/mcpuk/lib/class_image_imagick.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
   *      @link http://kcfinder.sunhater.com
13 13
   */
14 14
 
15
-class image_imagick extends image {
15
+class image_imagick extends image{
16 16
 
17 17
     static $MIMES = array(
18 18
         //'tif' => "image/tiff"
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 
22 22
     // ABSTRACT PUBLIC METHODS
23 23
 
24
-    public function resize($width, $height) {//
24
+    public function resize($width, $height){//
25 25
         if (!$width) $width = 1;
26 26
         if (!$height) $height = 1;
27 27
         try {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         return true;
35 35
     }
36 36
 
37
-    public function resizeFit($width, $height, $background=false) {//
37
+    public function resizeFit($width, $height, $background = false){//
38 38
         if (!$width) $width = 1;
39 39
         if (!$height) $height = 1;
40 40
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         }
66 66
     }
67 67
 
68
-    public function resizeCrop($width, $height, $offset=false) {
68
+    public function resizeCrop($width, $height, $offset = false){
69 69
         if (!$width) $width = 1;
70 70
         if (!$height) $height = 1;
71 71
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         return true;
116 116
     }
117 117
 
118
-    public function rotate($angle, $background="#000000") {
118
+    public function rotate($angle, $background = "#000000"){
119 119
         try {
120 120
             $this->image->rotateImage(new ImagickPixel($background), $angle);
121 121
             $size = $this->image->getImageGeometry();
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
         return true;
128 128
     }
129 129
 
130
-    public function flipHorizontal() {
130
+    public function flipHorizontal(){
131 131
         try {
132 132
             $this->image->flopImage();
133 133
         } catch (Exception $e) {
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
         return true;
137 137
     }
138 138
 
139
-    public function flipVertical() {
139
+    public function flipVertical(){
140 140
         try {
141 141
             $this->image->flipImage();
142 142
         } catch (Exception $e) {
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         return true;
146 146
     }
147 147
 
148
-    public function watermark($file, $left=false, $top=false) {
148
+    public function watermark($file, $left = false, $top = false){
149 149
         try {
150 150
             $wm = new Imagick($file);
151 151
             $size = $wm->getImageGeometry();
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 
182 182
     // ABSTRACT PROTECTED METHODS
183 183
 
184
-    protected function getBlankImage($width, $height) {
184
+    protected function getBlankImage($width, $height){
185 185
         try {
186 186
             $img = new Imagick();
187 187
             $img->newImage($width, $height, "none");
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
         return $img;
193 193
     }
194 194
 
195
-    protected function getImage($image, &$width, &$height) {
195
+    protected function getImage($image, &$width, &$height){
196 196
 
197 197
         if (is_object($image) && ($image instanceof image_imagick)) {
198 198
             try {
@@ -234,11 +234,11 @@  discard block
 block discarded – undo
234 234
 
235 235
     // PSEUDO-ABSTRACT STATIC METHODS
236 236
 
237
-    static function available() {
237
+    static function available(){
238 238
         return class_exists("Imagick");
239 239
     }
240 240
 
241
-    static function checkImage($file) {
241
+    static function checkImage($file){
242 242
         try {
243 243
             new Imagick($file);
244 244
         } catch (Exception $e) {
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
 
251 251
     // INHERIT METHODS
252 252
 
253
-    public function output($type="jpeg", array $options=array()) {
253
+    public function output($type = "jpeg", array $options = array()){
254 254
         $type = strtolower($type);
255 255
         try {
256 256
             $this->image->setImageFormat($type);
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
             echo $this->image;
270 270
 
271 271
         } else {
272
-            $file = $options['file'] . ".$type";
272
+            $file = $options['file'].".$type";
273 273
             try {
274 274
                 $this->image->writeImage($file);
275 275
             } catch (Exception $e) {
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
 
290 290
     // OWN METHODS
291 291
 
292
-    protected function optimize_jpeg(array $options=array()) {
292
+    protected function optimize_jpeg(array $options = array()){
293 293
         $quality = isset($options['quality']) ? $options['quality'] : self::DEFAULT_JPEG_QUALITY;
294 294
         try {
295 295
             $this->image->setImageCompression(Imagick::COMPRESSION_JPEG);
Please login to merge, or discard this patch.
manager/media/browser/mcpuk/lib/class_image_gmagick.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
   *      @link http://kcfinder.sunhater.com
13 13
   */
14 14
 
15
-class image_gmagick extends image {
15
+class image_gmagick extends image{
16 16
 
17 17
     static $MIMES = array(
18 18
         //'tif' => "image/tiff"
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 
22 22
     // ABSTRACT PUBLIC METHODS
23 23
 
24
-    public function resize($width, $height) {//
24
+    public function resize($width, $height){//
25 25
         if (!$width) $width = 1;
26 26
         if (!$height) $height = 1;
27 27
         try {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         return true;
35 35
     }
36 36
 
37
-    public function resizeFit($width, $height, $background=false) {//
37
+    public function resizeFit($width, $height, $background = false){//
38 38
         if (!$width) $width = 1;
39 39
         if (!$height) $height = 1;
40 40
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         }
70 70
     }
71 71
 
72
-    public function resizeCrop($width, $height, $offset=false) {
72
+    public function resizeCrop($width, $height, $offset = false){
73 73
         if (!$width) $width = 1;
74 74
         if (!$height) $height = 1;
75 75
 
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
         return true;
120 120
     }
121 121
 
122
-    public function rotate($angle, $background="#000000") {
122
+    public function rotate($angle, $background = "#000000"){
123 123
         try {
124 124
             $this->image->rotateImage($background, $angle);
125 125
             $w = $this->image->getImageWidth();
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
         return true;
133 133
     }
134 134
 
135
-    public function flipHorizontal() {
135
+    public function flipHorizontal(){
136 136
         try {
137 137
             $this->image->flopImage();
138 138
         } catch (Exception $e) {
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
         return true;
142 142
     }
143 143
 
144
-    public function flipVertical() {
144
+    public function flipVertical(){
145 145
         try {
146 146
             $this->image->flipImage();
147 147
         } catch (Exception $e) {
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         return true;
151 151
     }
152 152
 
153
-    public function watermark($file, $left=false, $top=false) {
153
+    public function watermark($file, $left = false, $top = false){
154 154
         try {
155 155
             $wm = new Gmagick($file);
156 156
             $w = $wm->getImageWidth();
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 
186 186
     // ABSTRACT PROTECTED METHODS
187 187
 
188
-    protected function getBlankImage($width, $height) {
188
+    protected function getBlankImage($width, $height){
189 189
         try {
190 190
             $img = new Gmagick();
191 191
             $img->newImage($width, $height, "none");
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
         return $img;
196 196
     }
197 197
 
198
-    protected function getImage($image, &$width, &$height) {
198
+    protected function getImage($image, &$width, &$height){
199 199
 
200 200
         if (is_object($image) && ($image instanceof image_gmagick)) {
201 201
             $width = $image->width;
@@ -232,11 +232,11 @@  discard block
 block discarded – undo
232 232
 
233 233
     // PSEUDO-ABSTRACT STATIC METHODS
234 234
 
235
-    static function available() {
235
+    static function available(){
236 236
         return class_exists("Gmagick");
237 237
     }
238 238
 
239
-    static function checkImage($file) {
239
+    static function checkImage($file){
240 240
         try {
241 241
             new Gmagick($file);
242 242
         } catch (Exception $e) {
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
 
249 249
     // INHERIT METHODS
250 250
 
251
-    public function output($type="jpeg", array $options=array()) {
251
+    public function output($type = "jpeg", array $options = array()){
252 252
         $type = strtolower($type);
253 253
         try {
254 254
             $this->image->setImageFormat($type);
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
             echo $this->image;
268 268
 
269 269
         } else {
270
-            $file = $options['file'] . ".$type";
270
+            $file = $options['file'].".$type";
271 271
             try {
272 272
                 $this->image->writeImage($file);
273 273
             } catch (Exception $e) {
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
 
288 288
     // OWN METHODS
289 289
 
290
-    protected function optimize_jpeg(array $options=array()) {
290
+    protected function optimize_jpeg(array $options = array()){
291 291
         $quality = isset($options['quality']) ? $options['quality'] : self::DEFAULT_JPEG_QUALITY;
292 292
         try {
293 293
             $this->image->setCompressionQuality($quality);
Please login to merge, or discard this patch.
manager/actions/refresh_site.dynamic.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
2
+if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
3 3
 	die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
4 4
 }
5 5
 
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
 
30 30
 <div class="tab-page">
31 31
 	<div class="container container-body">
32
-		<?php if($num_rows_pub)   printf('<p>' . $_lang["refresh_published"]   . '</p>', $num_rows_pub) ?>
33
-		<?php if($num_rows_unpub) printf('<p>' . $_lang["refresh_unpublished"] . '</p>', $num_rows_unpub) ?>
32
+		<?php if ($num_rows_pub)   printf('<p>'.$_lang["refresh_published"].'</p>', $num_rows_pub) ?>
33
+		<?php if ($num_rows_unpub) printf('<p>'.$_lang["refresh_unpublished"].'</p>', $num_rows_unpub) ?>
34 34
 		<?php
35 35
 		$modx->clearCache('full', true);
36 36
 		// invoke OnSiteRefresh event
Please login to merge, or discard this patch.
manager/actions/help.static.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
2
+if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
3 3
 	die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
4 4
 }
5 5
 $helpBasePath = "actions/help/";
6 6
 ?>
7 7
 
8 8
 <h1>
9
-	<?php echo $_style['page_help'];  echo $_lang['help']; ?>
9
+	<?php echo $_style['page_help']; echo $_lang['help']; ?>
10 10
 </h1>
11 11
 
12 12
 <div class="sectionBody">
@@ -16,9 +16,9 @@  discard block
 block discarded – undo
16 16
 		</script>
17 17
 
18 18
 		<?php
19
-		if($handle = opendir('actions/help')) {
20
-			while(false !== ($file = readdir($handle))) {
21
-				if($file != "." && $file != ".." && $file != ".svn" && $file != 'index.html' && !is_dir($helpBasePath . $file)) {
19
+		if ($handle = opendir('actions/help')) {
20
+			while (false !== ($file = readdir($handle))) {
21
+				if ($file != "." && $file != ".." && $file != ".svn" && $file != 'index.html' && !is_dir($helpBasePath.$file)) {
22 22
 					$help[] = $file;
23 23
 				}
24 24
 			}
@@ -27,22 +27,22 @@  discard block
 block discarded – undo
27 27
 
28 28
 		natcasesort($help);
29 29
 
30
-		foreach($help as $k => $v) {
30
+		foreach ($help as $k => $v) {
31 31
 
32 32
 			$helpname = substr($v, 0, strrpos($v, '.'));
33 33
 
34 34
 			$prefix = substr($helpname, 0, 2);
35
-			if(is_numeric($prefix)) {
35
+			if (is_numeric($prefix)) {
36 36
 				$helpname = substr($helpname, 2, strlen($helpname) - 1);
37 37
 			}
38 38
 
39 39
 			$hnLower = strtolower($helpname);
40 40
 			$helpname = isset($_lang[$hnLower]) ? $_lang[$hnLower] : str_replace('_', ' ', $helpname);
41 41
 
42
-			echo '<div class="tab-page" id="tab' . $k . 'Help">';
43
-			echo '<h2 class="tab">' . $helpname . '</h2>';
44
-			echo '<script type="text/javascript">tp.addTabPage( document.getElementById( "tab' . $k . 'Help" ) );</script>';
45
-			include_once($helpBasePath . "{$v}");
42
+			echo '<div class="tab-page" id="tab'.$k.'Help">';
43
+			echo '<h2 class="tab">'.$helpname.'</h2>';
44
+			echo '<script type="text/javascript">tp.addTabPage( document.getElementById( "tab'.$k.'Help" ) );</script>';
45
+			include_once($helpBasePath."{$v}");
46 46
 			echo '</div>';
47 47
 		}
48 48
 		?>
Please login to merge, or discard this patch.
manager/actions/resource_selector.static.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
2
+if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
3 3
     die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
4 4
 }
5 5
 if (!$modx->hasPermission('edit_module')) {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 
64 64
 }
65 65
 
66
-include_once MODX_MANAGER_PATH . "includes/header.inc.php";
66
+include_once MODX_MANAGER_PATH."includes/header.inc.php";
67 67
 ?>
68 68
 <script language="JavaScript" type="text/javascript">
69 69
     function saveSelection()
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 </script>
139 139
 
140 140
 <h1>
141
-    <?= $title . " - " . $_lang['element_selector_title'] ?><i class="fa fa-question-circle help"></i>
141
+    <?= $title." - ".$_lang['element_selector_title'] ?><i class="fa fa-question-circle help"></i>
142 142
 </h1>
143 143
 
144 144
 <div id="actions">
@@ -177,15 +177,15 @@  discard block
 block discarded – undo
177 177
             <div class="row">
178 178
                 <div class="table-responsive">
179 179
                     <?php
180
-                    include_once MODX_MANAGER_PATH . "includes/controls/datagrid.class.php";
180
+                    include_once MODX_MANAGER_PATH."includes/controls/datagrid.class.php";
181 181
                     $grd = new DataGrid('', $ds, $number_of_results); // set page size to 0 t show all items
182 182
                     $grd->noRecordMsg = $_lang["no_records_found"];
183 183
                     $grd->cssClass = "table data nowrap";
184 184
                     $grd->columnHeaderClass = "tableHeader";
185 185
                     $grd->itemClass = "tableItem";
186 186
                     $grd->altItemClass = "tableAltItem";
187
-                    $grd->columns = $_lang["name"] . " ," . $_lang["description"];
188
-                    $grd->colTypes = "template:<input type='" . ($sm == 'm' ? 'checkbox' : 'radio') . "' name='id[]' value='[+id+]' onclick='setCheckbox(this);'> [+value+]";
187
+                    $grd->columns = $_lang["name"]." ,".$_lang["description"];
188
+                    $grd->colTypes = "template:<input type='".($sm == 'm' ? 'checkbox' : 'radio')."' name='id[]' value='[+id+]' onclick='setCheckbox(this);'> [+value+]";
189 189
                     $grd->colWidths = "45%";
190 190
                     $grd->fields = "name,description";
191 191
                     if ($_REQUEST['listmode'] == '1') {
Please login to merge, or discard this patch.
manager/actions/phpinfo.static.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
2
+if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) {
3 3
     die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.");
4 4
 }
5 5
 ?>
Please login to merge, or discard this patch.