@@ -1,33 +1,32 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | //:: EVO Installer Setup file |
3 | 3 | //::::::::::::::::::::::::::::::::::::::::: |
4 | -if (is_file($base_path . 'assets/cache/siteManager.php')) { |
|
5 | - include_once($base_path . 'assets/cache/siteManager.php'); |
|
4 | +if (is_file($base_path.'assets/cache/siteManager.php')) { |
|
5 | + include_once($base_path.'assets/cache/siteManager.php'); |
|
6 | 6 | } |
7 | -if(!defined('MGR_DIR')) define('MGR_DIR', 'manager'); |
|
7 | +if (!defined('MGR_DIR')) define('MGR_DIR', 'manager'); |
|
8 | 8 | |
9 | 9 | require_once('../'.MGR_DIR.'/includes/version.inc.php'); |
10 | 10 | |
11 | -$chunkPath = $base_path .'install/assets/chunks'; |
|
12 | -$snippetPath = $base_path .'install/assets/snippets'; |
|
13 | -$pluginPath = $base_path .'install/assets/plugins'; |
|
14 | -$modulePath = $base_path .'install/assets/modules'; |
|
15 | -$templatePath = $base_path .'install/assets/templates'; |
|
16 | -$tvPath = $base_path .'install/assets/tvs'; |
|
11 | +$chunkPath = $base_path.'install/assets/chunks'; |
|
12 | +$snippetPath = $base_path.'install/assets/snippets'; |
|
13 | +$pluginPath = $base_path.'install/assets/plugins'; |
|
14 | +$modulePath = $base_path.'install/assets/modules'; |
|
15 | +$templatePath = $base_path.'install/assets/templates'; |
|
16 | +$tvPath = $base_path.'install/assets/tvs'; |
|
17 | 17 | |
18 | 18 | // setup Template template files - array : name, description, type - 0:file or 1:content, parameters, category |
19 | 19 | $mt = &$moduleTemplates; |
20 | -if(is_dir($templatePath) && is_readable($templatePath)) { |
|
20 | +if (is_dir($templatePath) && is_readable($templatePath)) { |
|
21 | 21 | $d = dir($templatePath); |
22 | 22 | while (false !== ($tplfile = $d->read())) |
23 | 23 | { |
24 | - if(substr($tplfile, -4) != '.tpl') continue; |
|
24 | + if (substr($tplfile, -4) != '.tpl') continue; |
|
25 | 25 | $params = parse_docblock($templatePath, $tplfile); |
26 | - if(is_array($params) && (count($params)>0)) |
|
26 | + if (is_array($params) && (count($params) > 0)) |
|
27 | 27 | { |
28 | 28 | $description = empty($params['version']) ? $params['description'] : "<strong>{$params['version']}</strong> {$params['description']}"; |
29 | - $mt[] = array |
|
30 | - ( |
|
29 | + $mt[] = array( |
|
31 | 30 | $params['name'], |
32 | 31 | $description, |
33 | 32 | // Don't think this is gonna be used ... but adding it just in case 'type' |
@@ -45,12 +44,12 @@ discard block |
||
45 | 44 | |
46 | 45 | // setup Template Variable template files |
47 | 46 | $mtv = &$moduleTVs; |
48 | -if(is_dir($tvPath) && is_readable($tvPath)) { |
|
47 | +if (is_dir($tvPath) && is_readable($tvPath)) { |
|
49 | 48 | $d = dir($tvPath); |
50 | 49 | while (false !== ($tplfile = $d->read())) { |
51 | - if(substr($tplfile, -4) != '.tpl') continue; |
|
50 | + if (substr($tplfile, -4) != '.tpl') continue; |
|
52 | 51 | $params = parse_docblock($tvPath, $tplfile); |
53 | - if(is_array($params) && (count($params)>0)) { |
|
52 | + if (is_array($params) && (count($params) > 0)) { |
|
54 | 53 | $description = empty($params['version']) ? $params['description'] : "<strong>{$params['version']}</strong> {$params['description']}"; |
55 | 54 | $mtv[] = array( |
56 | 55 | $params['name'], |
@@ -62,9 +61,9 @@ discard block |
||
62 | 61 | $params['output_widget'], |
63 | 62 | $params['output_widget_params'], |
64 | 63 | "$templatePath/{$params['filename']}", /* not currently used */ |
65 | - $params['template_assignments']!="*"?$params['template_assignments']:implode(",",array_map(create_function('$v','return $v[0];'),$mt)), /* comma-separated list of template names */ |
|
64 | + $params['template_assignments'] != "*" ? $params['template_assignments'] : implode(",", array_map(create_function('$v', 'return $v[0];'), $mt)), /* comma-separated list of template names */ |
|
66 | 65 | $params['modx_category'], |
67 | - $params['lock_tv'], /* value should be 1 or 0 */ |
|
66 | + $params['lock_tv'], /* value should be 1 or 0 */ |
|
68 | 67 | array_key_exists('installset', $params) ? preg_split("/\s*,\s*/", $params['installset']) : false |
69 | 68 | ); |
70 | 69 | } |
@@ -74,14 +73,14 @@ discard block |
||
74 | 73 | |
75 | 74 | // setup chunks template files - array : name, description, type - 0:file or 1:content, file or content |
76 | 75 | $mc = &$moduleChunks; |
77 | -if(is_dir($chunkPath) && is_readable($chunkPath)) { |
|
76 | +if (is_dir($chunkPath) && is_readable($chunkPath)) { |
|
78 | 77 | $d = dir($chunkPath); |
79 | 78 | while (false !== ($tplfile = $d->read())) { |
80 | - if(substr($tplfile, -4) != '.tpl') { |
|
79 | + if (substr($tplfile, -4) != '.tpl') { |
|
81 | 80 | continue; |
82 | 81 | } |
83 | 82 | $params = parse_docblock($chunkPath, $tplfile); |
84 | - if(is_array($params) && count($params) > 0) { |
|
83 | + if (is_array($params) && count($params) > 0) { |
|
85 | 84 | $mc[] = array( |
86 | 85 | $params['name'], |
87 | 86 | $params['description'], |
@@ -97,14 +96,14 @@ discard block |
||
97 | 96 | |
98 | 97 | // setup snippets template files - array : name, description, type - 0:file or 1:content, file or content,properties |
99 | 98 | $ms = &$moduleSnippets; |
100 | -if(is_dir($snippetPath) && is_readable($snippetPath)) { |
|
99 | +if (is_dir($snippetPath) && is_readable($snippetPath)) { |
|
101 | 100 | $d = dir($snippetPath); |
102 | 101 | while (false !== ($tplfile = $d->read())) { |
103 | - if(substr($tplfile, -4) != '.tpl') { |
|
102 | + if (substr($tplfile, -4) != '.tpl') { |
|
104 | 103 | continue; |
105 | 104 | } |
106 | 105 | $params = parse_docblock($snippetPath, $tplfile); |
107 | - if(is_array($params) && count($params) > 0) { |
|
106 | + if (is_array($params) && count($params) > 0) { |
|
108 | 107 | $description = empty($params['version']) ? $params['description'] : "<strong>{$params['version']}</strong> {$params['description']}"; |
109 | 108 | $ms[] = array( |
110 | 109 | $params['name'], |
@@ -121,14 +120,14 @@ discard block |
||
121 | 120 | |
122 | 121 | // setup plugins template files - array : name, description, type - 0:file or 1:content, file or content,properties |
123 | 122 | $mp = &$modulePlugins; |
124 | -if(is_dir($pluginPath) && is_readable($pluginPath)) { |
|
123 | +if (is_dir($pluginPath) && is_readable($pluginPath)) { |
|
125 | 124 | $d = dir($pluginPath); |
126 | 125 | while (false !== ($tplfile = $d->read())) { |
127 | - if(substr($tplfile, -4) != '.tpl') { |
|
126 | + if (substr($tplfile, -4) != '.tpl') { |
|
128 | 127 | continue; |
129 | 128 | } |
130 | 129 | $params = parse_docblock($pluginPath, $tplfile); |
131 | - if(is_array($params) && count($params) > 0) { |
|
130 | + if (is_array($params) && count($params) > 0) { |
|
132 | 131 | $description = empty($params['version']) ? $params['description'] : "<strong>{$params['version']}</strong> {$params['description']}"; |
133 | 132 | $mp[] = array( |
134 | 133 | $params['name'], |
@@ -150,14 +149,14 @@ discard block |
||
150 | 149 | // setup modules - array : name, description, type - 0:file or 1:content, file or content,properties, guid,enable_sharedparams |
151 | 150 | $mm = &$moduleModules; |
152 | 151 | $mdp = &$moduleDependencies; |
153 | -if(is_dir($modulePath) && is_readable($modulePath)) { |
|
152 | +if (is_dir($modulePath) && is_readable($modulePath)) { |
|
154 | 153 | $d = dir($modulePath); |
155 | 154 | while (false !== ($tplfile = $d->read())) { |
156 | - if(substr($tplfile, -4) != '.tpl') { |
|
155 | + if (substr($tplfile, -4) != '.tpl') { |
|
157 | 156 | continue; |
158 | 157 | } |
159 | 158 | $params = parse_docblock($modulePath, $tplfile); |
160 | - if(is_array($params) && count($params) > 0) { |
|
159 | + if (is_array($params) && count($params) > 0) { |
|
161 | 160 | $description = empty($params['version']) ? $params['description'] : "<strong>{$params['version']}</strong> {$params['description']}"; |
162 | 161 | $mm[] = array( |
163 | 162 | $params['name'], |
@@ -241,103 +240,103 @@ discard block |
||
241 | 240 | // setup callback function |
242 | 241 | $callBackFnc = "clean_up"; |
243 | 242 | |
244 | -function clean_up($sqlParser) { |
|
243 | +function clean_up($sqlParser){ |
|
245 | 244 | $ids = array(); |
246 | 245 | |
247 | 246 | // secure web documents - privateweb |
248 | - mysqli_query($sqlParser->conn,"UPDATE `".$sqlParser->prefix."site_content` SET privateweb = 0 WHERE privateweb = 1"); |
|
249 | - $sql = "SELECT DISTINCT sc.id |
|
247 | + mysqli_query($sqlParser->conn, "UPDATE `".$sqlParser->prefix."site_content` SET privateweb = 0 WHERE privateweb = 1"); |
|
248 | + $sql = "SELECT DISTINCT sc.id |
|
250 | 249 | FROM `".$sqlParser->prefix."site_content` sc |
251 | 250 | LEFT JOIN `".$sqlParser->prefix."document_groups` dg ON dg.document = sc.id |
252 | 251 | LEFT JOIN `".$sqlParser->prefix."webgroup_access` wga ON wga.documentgroup = dg.document_group |
253 | 252 | WHERE wga.id>0"; |
254 | - $ds = mysqli_query($sqlParser->conn,$sql); |
|
255 | - if(!$ds) { |
|
253 | + $ds = mysqli_query($sqlParser->conn, $sql); |
|
254 | + if (!$ds) { |
|
256 | 255 | echo "An error occurred while executing a query: ".mysqli_error($sqlParser->conn); |
257 | 256 | } |
258 | 257 | else { |
259 | - while($r = mysqli_fetch_assoc($ds)) $ids[]=$r["id"]; |
|
260 | - if(count($ids)>0) { |
|
261 | - mysqli_query($sqlParser->conn,"UPDATE `".$sqlParser->prefix."site_content` SET privateweb = 1 WHERE id IN (".implode(", ",$ids).")"); |
|
258 | + while ($r = mysqli_fetch_assoc($ds)) $ids[] = $r["id"]; |
|
259 | + if (count($ids) > 0) { |
|
260 | + mysqli_query($sqlParser->conn, "UPDATE `".$sqlParser->prefix."site_content` SET privateweb = 1 WHERE id IN (".implode(", ", $ids).")"); |
|
262 | 261 | unset($ids); |
263 | 262 | } |
264 | 263 | } |
265 | 264 | |
266 | 265 | // secure manager documents privatemgr |
267 | - mysqli_query($sqlParser->conn,"UPDATE `".$sqlParser->prefix."site_content` SET privatemgr = 0 WHERE privatemgr = 1"); |
|
268 | - $sql = "SELECT DISTINCT sc.id |
|
266 | + mysqli_query($sqlParser->conn, "UPDATE `".$sqlParser->prefix."site_content` SET privatemgr = 0 WHERE privatemgr = 1"); |
|
267 | + $sql = "SELECT DISTINCT sc.id |
|
269 | 268 | FROM `".$sqlParser->prefix."site_content` sc |
270 | 269 | LEFT JOIN `".$sqlParser->prefix."document_groups` dg ON dg.document = sc.id |
271 | 270 | LEFT JOIN `".$sqlParser->prefix."membergroup_access` mga ON mga.documentgroup = dg.document_group |
272 | 271 | WHERE mga.id>0"; |
273 | - $ds = mysqli_query($sqlParser->conn,$sql); |
|
274 | - if(!$ds) { |
|
272 | + $ds = mysqli_query($sqlParser->conn, $sql); |
|
273 | + if (!$ds) { |
|
275 | 274 | echo "An error occurred while executing a query: ".mysqli_error($sqlParser->conn); |
276 | 275 | } |
277 | 276 | else { |
278 | - while($r = mysqli_fetch_assoc($ds)) $ids[]=$r["id"]; |
|
279 | - if(count($ids)>0) { |
|
280 | - mysqli_query($sqlParser->conn,"UPDATE `".$sqlParser->prefix."site_content` SET privatemgr = 1 WHERE id IN (".implode(", ",$ids).")"); |
|
277 | + while ($r = mysqli_fetch_assoc($ds)) $ids[] = $r["id"]; |
|
278 | + if (count($ids) > 0) { |
|
279 | + mysqli_query($sqlParser->conn, "UPDATE `".$sqlParser->prefix."site_content` SET privatemgr = 1 WHERE id IN (".implode(", ", $ids).")"); |
|
281 | 280 | unset($ids); |
282 | 281 | } |
283 | 282 | } |
284 | 283 | } |
285 | 284 | |
286 | -function parse_docblock($element_dir, $filename) { |
|
285 | +function parse_docblock($element_dir, $filename){ |
|
287 | 286 | $params = array(); |
288 | - $fullpath = $element_dir . '/' . $filename; |
|
289 | - if(is_readable($fullpath)) { |
|
287 | + $fullpath = $element_dir.'/'.$filename; |
|
288 | + if (is_readable($fullpath)) { |
|
290 | 289 | $tpl = @fopen($fullpath, "r"); |
291 | - if($tpl) { |
|
290 | + if ($tpl) { |
|
292 | 291 | $params['filename'] = $filename; |
293 | 292 | $docblock_start_found = false; |
294 | 293 | $name_found = false; |
295 | 294 | $description_found = false; |
296 | 295 | |
297 | - while(!feof($tpl)) { |
|
296 | + while (!feof($tpl)) { |
|
298 | 297 | $line = fgets($tpl); |
299 | - if(!$docblock_start_found) { |
|
298 | + if (!$docblock_start_found) { |
|
300 | 299 | // find docblock start |
301 | - if(strpos($line, '/**') !== false) { |
|
300 | + if (strpos($line, '/**') !== false) { |
|
302 | 301 | $docblock_start_found = true; |
303 | 302 | } |
304 | 303 | continue; |
305 | - } elseif(!$name_found) { |
|
304 | + } elseif (!$name_found) { |
|
306 | 305 | // find name |
307 | 306 | $ma = null; |
308 | - if(preg_match("/^\s+\*\s+(.+)/", $line, $ma)) { |
|
307 | + if (preg_match("/^\s+\*\s+(.+)/", $line, $ma)) { |
|
309 | 308 | $params['name'] = trim($ma[1]); |
310 | 309 | $name_found = !empty($params['name']); |
311 | 310 | } |
312 | 311 | continue; |
313 | - } elseif(!$description_found) { |
|
312 | + } elseif (!$description_found) { |
|
314 | 313 | // find description |
315 | 314 | $ma = null; |
316 | - if(preg_match("/^\s+\*\s+(.+)/", $line, $ma)) { |
|
315 | + if (preg_match("/^\s+\*\s+(.+)/", $line, $ma)) { |
|
317 | 316 | $params['description'] = trim($ma[1]); |
318 | 317 | $description_found = !empty($params['description']); |
319 | 318 | } |
320 | 319 | continue; |
321 | 320 | } else { |
322 | 321 | $ma = null; |
323 | - if(preg_match("/^\s+\*\s+\@([^\s]+)\s+(.+)/", $line, $ma)) { |
|
322 | + if (preg_match("/^\s+\*\s+\@([^\s]+)\s+(.+)/", $line, $ma)) { |
|
324 | 323 | $param = trim($ma[1]); |
325 | 324 | $val = trim($ma[2]); |
326 | - if(!empty($param) && !empty($val)) { |
|
327 | - if($param == 'internal') { |
|
325 | + if (!empty($param) && !empty($val)) { |
|
326 | + if ($param == 'internal') { |
|
328 | 327 | $ma = null; |
329 | - if(preg_match("/\@([^\s]+)\s+(.+)/", $val, $ma)) { |
|
328 | + if (preg_match("/\@([^\s]+)\s+(.+)/", $val, $ma)) { |
|
330 | 329 | $param = trim($ma[1]); |
331 | 330 | $val = trim($ma[2]); |
332 | 331 | } |
333 | 332 | //if($val !== '0' && (empty($param) || empty($val))) { |
334 | - if(empty($param)) { |
|
333 | + if (empty($param)) { |
|
335 | 334 | continue; |
336 | 335 | } |
337 | 336 | } |
338 | 337 | $params[$param] = $val; |
339 | 338 | } |
340 | - } elseif(preg_match("/^\s*\*\/\s*$/", $line)) { |
|
339 | + } elseif (preg_match("/^\s*\*\/\s*$/", $line)) { |
|
341 | 340 | break; |
342 | 341 | } |
343 | 342 | } |
@@ -12,7 +12,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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); |
@@ -12,7 +12,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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); |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | $modx = new DocumentParser; |
27 | 27 | $modx->db->connect(); |
28 | 28 | startCMSSession(); |
29 | -if(!isset($_SESSION['mgrValidated'])) { |
|
29 | +if (!isset($_SESSION['mgrValidated'])) { |
|
30 | 30 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
31 | 31 | } |
32 | 32 | define('IN_MANAGER_MODE', true); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | |
35 | 35 | $manager_language = $modx->config['manager_language']; |
36 | 36 | // Pass language code from MODX to KCFinder |
37 | -if(!file_exists("../../../includes/lang/".$manager_language.".inc.php")) { |
|
37 | +if (!file_exists("../../../includes/lang/".$manager_language.".inc.php")) { |
|
38 | 38 | $manager_language = "english"; // if not set, get the english language file. |
39 | 39 | } |
40 | 40 | include_once "../../../includes/lang/".$manager_language.".inc.php"; |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | // PHP VERSION CHECK |
44 | 44 | if (substr(PHP_VERSION, 0, strpos(PHP_VERSION, '.')) < 5) |
45 | - die("You are using PHP " . PHP_VERSION . " when KCFinder require at least version 5! Some systems has an option to change the active PHP version. Please refer to your hosting provider or upgrade your PHP distribution."); |
|
45 | + die("You are using PHP ".PHP_VERSION." when KCFinder require at least version 5! Some systems has an option to change the active PHP version. Please refer to your hosting provider or upgrade your PHP distribution."); |
|
46 | 46 | |
47 | 47 | |
48 | 48 | // SAFE MODE CHECK |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | |
53 | 53 | // MAGIC AUTOLOAD CLASSES FUNCTION |
54 | -function autoloadda9d06472ccb71b84928677ce2a6ca89($class) { |
|
54 | +function autoloadda9d06472ccb71b84928677ce2a6ca89($class){ |
|
55 | 55 | static $classes = null; |
56 | 56 | if ($classes === null) { |
57 | 57 | $classes = array( |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | ); |
76 | 76 | } |
77 | 77 | if (isset($classes[$class])) { |
78 | - require dirname(__FILE__) . $classes[$class]; |
|
78 | + require dirname(__FILE__).$classes[$class]; |
|
79 | 79 | } |
80 | 80 | } |
81 | 81 | spl_autoload_register('autoloadda9d06472ccb71b84928677ce2a6ca89', true); |
@@ -84,18 +84,18 @@ discard block |
||
84 | 84 | // json_encode() IMPLEMENTATION IF JSON EXTENSION IS MISSING |
85 | 85 | if (!function_exists("json_encode")) { |
86 | 86 | |
87 | - function kcfinder_json_string_encode($string) { |
|
88 | - return '"' . |
|
87 | + function kcfinder_json_string_encode($string){ |
|
88 | + return '"'. |
|
89 | 89 | str_replace('/', "\\/", |
90 | 90 | str_replace("\t", "\\t", |
91 | 91 | str_replace("\r", "\\r", |
92 | 92 | str_replace("\n", "\\n", |
93 | 93 | str_replace('"', "\\\"", |
94 | 94 | str_replace("\\", "\\\\", |
95 | - $string)))))) . '"'; |
|
95 | + $string)))))).'"'; |
|
96 | 96 | } |
97 | 97 | |
98 | - function json_encode($data) { |
|
98 | + function json_encode($data){ |
|
99 | 99 | |
100 | 100 | if (is_array($data)) { |
101 | 101 | $ret = array(); |
@@ -103,14 +103,14 @@ discard block |
||
103 | 103 | // OBJECT |
104 | 104 | if (array_keys($data) !== range(0, count($data) - 1)) { |
105 | 105 | foreach ($data as $key => $val) |
106 | - $ret[] = kcfinder_json_string_encode($key) . ':' . json_encode($val); |
|
107 | - return "{" . implode(",", $ret) . "}"; |
|
106 | + $ret[] = kcfinder_json_string_encode($key).':'.json_encode($val); |
|
107 | + return "{".implode(",", $ret)."}"; |
|
108 | 108 | |
109 | 109 | // ARRAY |
110 | 110 | } else { |
111 | 111 | foreach ($data as $val) |
112 | 112 | $ret[] = json_encode($val); |
113 | - return "[" . implode(",", $ret) . "]"; |
|
113 | + return "[".implode(",", $ret)."]"; |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | // BOOLEAN OR NULL |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | define('RSS', 'RSS'); |
24 | 24 | define('ATOM', 'Atom'); |
25 | 25 | |
26 | -require_once (MAGPIE_DIR . 'rss_utils.inc'); |
|
26 | +require_once (MAGPIE_DIR.'rss_utils.inc'); |
|
27 | 27 | |
28 | 28 | /** |
29 | 29 | * Hybrid parser, and object, takes RSS as a string and returns a simple object. |
@@ -31,19 +31,19 @@ discard block |
||
31 | 31 | * see: rss_fetch.inc for a simpler interface with integrated caching support |
32 | 32 | * |
33 | 33 | */ |
34 | -class MagpieRSS { |
|
34 | +class MagpieRSS{ |
|
35 | 35 | var $parser; |
36 | 36 | |
37 | - var $current_item = array(); // item currently being parsed |
|
38 | - var $items = array(); // collection of parsed items |
|
39 | - var $channel = array(); // hash of channel fields |
|
37 | + var $current_item = array(); // item currently being parsed |
|
38 | + var $items = array(); // collection of parsed items |
|
39 | + var $channel = array(); // hash of channel fields |
|
40 | 40 | var $textinput = array(); |
41 | 41 | var $image = array(); |
42 | 42 | var $feed_type; |
43 | 43 | var $feed_version; |
44 | - var $encoding = ''; // output encoding of parsed rss |
|
44 | + var $encoding = ''; // output encoding of parsed rss |
|
45 | 45 | |
46 | - var $_source_encoding = ''; // only set if we have to parse xml prolog |
|
46 | + var $_source_encoding = ''; // only set if we have to parse xml prolog |
|
47 | 47 | |
48 | 48 | var $ERROR = ""; |
49 | 49 | var $WARNING = ""; |
@@ -91,15 +91,15 @@ discard block |
||
91 | 91 | * source encoding. (caveat emptor) |
92 | 92 | * |
93 | 93 | */ |
94 | - function __construct($source, $output_encoding='ISO-8859-1', |
|
95 | - $input_encoding=null, $detect_encoding=true) |
|
94 | + function __construct($source, $output_encoding = 'ISO-8859-1', |
|
95 | + $input_encoding = null, $detect_encoding = true) |
|
96 | 96 | { |
97 | 97 | # if PHP xml isn't compiled in, die |
98 | 98 | # |
99 | 99 | if (!function_exists('xml_parser_create')) { |
100 | - $this->error( "Failed to load PHP's XML Extension. " . |
|
100 | + $this->error("Failed to load PHP's XML Extension. ". |
|
101 | 101 | "http://www.php.net/manual/en/ref.xml.php", |
102 | - E_USER_ERROR ); |
|
102 | + E_USER_ERROR); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | list($parser, $source) = $this->create_parser($source, |
@@ -107,9 +107,9 @@ discard block |
||
107 | 107 | |
108 | 108 | |
109 | 109 | if (!is_resource($parser)) { |
110 | - $this->error( "Failed to create an instance of PHP's XML parser. " . |
|
110 | + $this->error("Failed to create an instance of PHP's XML parser. ". |
|
111 | 111 | "http://www.php.net/manual/en/ref.xml.php", |
112 | - E_USER_ERROR ); |
|
112 | + E_USER_ERROR); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | |
@@ -118,57 +118,57 @@ discard block |
||
118 | 118 | # pass in parser, and a reference to this object |
119 | 119 | # setup handlers |
120 | 120 | # |
121 | - xml_set_object( $this->parser, $this ); |
|
121 | + xml_set_object($this->parser, $this); |
|
122 | 122 | xml_set_element_handler($this->parser, |
123 | - 'feed_start_element', 'feed_end_element' ); |
|
123 | + 'feed_start_element', 'feed_end_element'); |
|
124 | 124 | |
125 | - xml_set_character_data_handler( $this->parser, 'feed_cdata' ); |
|
125 | + xml_set_character_data_handler($this->parser, 'feed_cdata'); |
|
126 | 126 | |
127 | - $status = xml_parse( $this->parser, $source ); |
|
127 | + $status = xml_parse($this->parser, $source); |
|
128 | 128 | |
129 | - if (! $status ) { |
|
130 | - $errorcode = xml_get_error_code( $this->parser ); |
|
131 | - if ( $errorcode != XML_ERROR_NONE ) { |
|
132 | - $xml_error = xml_error_string( $errorcode ); |
|
129 | + if (!$status) { |
|
130 | + $errorcode = xml_get_error_code($this->parser); |
|
131 | + if ($errorcode != XML_ERROR_NONE) { |
|
132 | + $xml_error = xml_error_string($errorcode); |
|
133 | 133 | $error_line = xml_get_current_line_number($this->parser); |
134 | 134 | $error_col = xml_get_current_column_number($this->parser); |
135 | 135 | $errormsg = "$xml_error at line $error_line, column $error_col"; |
136 | 136 | |
137 | - $this->error( $errormsg ); |
|
137 | + $this->error($errormsg); |
|
138 | 138 | } |
139 | 139 | } |
140 | 140 | |
141 | - xml_parser_free( $this->parser ); |
|
141 | + xml_parser_free($this->parser); |
|
142 | 142 | |
143 | 143 | $this->normalize(); |
144 | 144 | } |
145 | 145 | |
146 | - function feed_start_element($p, $element, &$attrs) { |
|
146 | + function feed_start_element($p, $element, &$attrs){ |
|
147 | 147 | $el = $element = strtolower($element); |
148 | 148 | $attrs = array_change_key_case($attrs, CASE_LOWER); |
149 | 149 | |
150 | 150 | // check for a namespace, and split if found |
151 | 151 | $ns = false; |
152 | - if ( strpos( $element, ':' ) ) { |
|
153 | - list($ns, $el) = explode( ':', $element, 2); |
|
152 | + if (strpos($element, ':')) { |
|
153 | + list($ns, $el) = explode(':', $element, 2); |
|
154 | 154 | } |
155 | - if ( $ns and $ns != 'rdf' ) { |
|
155 | + if ($ns and $ns != 'rdf') { |
|
156 | 156 | $this->current_namespace = $ns; |
157 | 157 | } |
158 | 158 | |
159 | 159 | # if feed type isn't set, then this is first element of feed |
160 | 160 | # identify feed from root element |
161 | 161 | # |
162 | - if (!isset($this->feed_type) ) { |
|
163 | - if ( $el == 'rdf' ) { |
|
162 | + if (!isset($this->feed_type)) { |
|
163 | + if ($el == 'rdf') { |
|
164 | 164 | $this->feed_type = RSS; |
165 | 165 | $this->feed_version = '1.0'; |
166 | 166 | } |
167 | - elseif ( $el == 'rss' ) { |
|
167 | + elseif ($el == 'rss') { |
|
168 | 168 | $this->feed_type = RSS; |
169 | 169 | $this->feed_version = $attrs['version']; |
170 | 170 | } |
171 | - elseif ( $el == 'feed' ) { |
|
171 | + elseif ($el == 'feed') { |
|
172 | 172 | $this->feed_type = ATOM; |
173 | 173 | $this->feed_version = $attrs['version']; |
174 | 174 | $this->inchannel = true; |
@@ -176,14 +176,14 @@ discard block |
||
176 | 176 | return; |
177 | 177 | } |
178 | 178 | |
179 | - if ( $el == 'channel' ) |
|
179 | + if ($el == 'channel') |
|
180 | 180 | { |
181 | 181 | $this->inchannel = true; |
182 | 182 | } |
183 | - elseif ($el == 'item' or $el == 'entry' ) |
|
183 | + elseif ($el == 'item' or $el == 'entry') |
|
184 | 184 | { |
185 | 185 | $this->initem = true; |
186 | - if ( isset($attrs['rdf:about']) ) { |
|
186 | + if (isset($attrs['rdf:about'])) { |
|
187 | 187 | $this->current_item['about'] = $attrs['rdf:about']; |
188 | 188 | } |
189 | 189 | } |
@@ -207,10 +207,10 @@ discard block |
||
207 | 207 | } |
208 | 208 | |
209 | 209 | # handle atom content constructs |
210 | - elseif ( $this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS) ) |
|
210 | + elseif ($this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS)) |
|
211 | 211 | { |
212 | 212 | // avoid clashing w/ RSS mod_content |
213 | - if ($el == 'content' ) { |
|
213 | + if ($el == 'content') { |
|
214 | 214 | $el = 'atom_content'; |
215 | 215 | } |
216 | 216 | |
@@ -220,31 +220,31 @@ discard block |
||
220 | 220 | } |
221 | 221 | |
222 | 222 | // if inside an Atom content construct (e.g. content or summary) field treat tags as text |
223 | - elseif ($this->feed_type == ATOM and $this->incontent ) |
|
223 | + elseif ($this->feed_type == ATOM and $this->incontent) |
|
224 | 224 | { |
225 | 225 | // if tags are inlined, then flatten |
226 | 226 | $attrs_str = join(' ', |
227 | 227 | array_map('map_attrs', |
228 | 228 | array_keys($attrs), |
229 | - array_values($attrs) ) ); |
|
229 | + array_values($attrs))); |
|
230 | 230 | |
231 | - $this->append_content( "<$element $attrs_str>" ); |
|
231 | + $this->append_content("<$element $attrs_str>"); |
|
232 | 232 | |
233 | - array_unshift( $this->stack, $el ); |
|
233 | + array_unshift($this->stack, $el); |
|
234 | 234 | } |
235 | 235 | |
236 | 236 | // Atom support many links per containging element. |
237 | 237 | // Magpie treats link elements of type rel='alternate' |
238 | 238 | // as being equivalent to RSS's simple link element. |
239 | 239 | // |
240 | - elseif ($this->feed_type == ATOM and $el == 'link' ) |
|
240 | + elseif ($this->feed_type == ATOM and $el == 'link') |
|
241 | 241 | { |
242 | - if ( isset($attrs['rel']) and $attrs['rel'] == 'alternate' ) |
|
242 | + if (isset($attrs['rel']) and $attrs['rel'] == 'alternate') |
|
243 | 243 | { |
244 | 244 | $link_el = 'link'; |
245 | 245 | } |
246 | 246 | else { |
247 | - $link_el = 'link_' . $attrs['rel']; |
|
247 | + $link_el = 'link_'.$attrs['rel']; |
|
248 | 248 | } |
249 | 249 | |
250 | 250 | $this->append($link_el, $attrs['href']); |
@@ -257,10 +257,10 @@ discard block |
||
257 | 257 | |
258 | 258 | |
259 | 259 | |
260 | - function feed_cdata ($p, $text) { |
|
260 | + function feed_cdata($p, $text){ |
|
261 | 261 | if ($this->feed_type == ATOM and $this->incontent) |
262 | 262 | { |
263 | - $this->append_content( $text ); |
|
263 | + $this->append_content($text); |
|
264 | 264 | } |
265 | 265 | else { |
266 | 266 | $current_el = join('_', array_reverse($this->stack)); |
@@ -268,35 +268,35 @@ discard block |
||
268 | 268 | } |
269 | 269 | } |
270 | 270 | |
271 | - function feed_end_element ($p, $el) { |
|
271 | + function feed_end_element($p, $el){ |
|
272 | 272 | $el = strtolower($el); |
273 | 273 | |
274 | - if ( $el == 'item' or $el == 'entry' ) |
|
274 | + if ($el == 'item' or $el == 'entry') |
|
275 | 275 | { |
276 | 276 | $this->items[] = $this->current_item; |
277 | 277 | $this->current_item = array(); |
278 | 278 | $this->initem = false; |
279 | 279 | } |
280 | - elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'textinput' ) |
|
280 | + elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'textinput') |
|
281 | 281 | { |
282 | 282 | $this->intextinput = false; |
283 | 283 | } |
284 | - elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'image' ) |
|
284 | + elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'image') |
|
285 | 285 | { |
286 | 286 | $this->inimage = false; |
287 | 287 | } |
288 | - elseif ($this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS) ) |
|
288 | + elseif ($this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS)) |
|
289 | 289 | { |
290 | 290 | $this->incontent = false; |
291 | 291 | } |
292 | - elseif ($el == 'channel' or $el == 'feed' ) |
|
292 | + elseif ($el == 'channel' or $el == 'feed') |
|
293 | 293 | { |
294 | 294 | $this->inchannel = false; |
295 | 295 | } |
296 | - elseif ($this->feed_type == ATOM and $this->incontent ) { |
|
296 | + elseif ($this->feed_type == ATOM and $this->incontent) { |
|
297 | 297 | // balance tags properly |
298 | 298 | // note: i don't think this is actually neccessary |
299 | - if ( $this->stack[0] == $el ) |
|
299 | + if ($this->stack[0] == $el) |
|
300 | 300 | { |
301 | 301 | $this->append_content("</$el>"); |
302 | 302 | } |
@@ -304,91 +304,91 @@ discard block |
||
304 | 304 | $this->append_content("<$el />"); |
305 | 305 | } |
306 | 306 | |
307 | - array_shift( $this->stack ); |
|
307 | + array_shift($this->stack); |
|
308 | 308 | } |
309 | 309 | else { |
310 | - array_shift( $this->stack ); |
|
310 | + array_shift($this->stack); |
|
311 | 311 | } |
312 | 312 | |
313 | 313 | $this->current_namespace = false; |
314 | 314 | } |
315 | 315 | |
316 | - function concat (&$str1, $str2="") { |
|
317 | - if (!isset($str1) ) { |
|
318 | - $str1=""; |
|
316 | + function concat(&$str1, $str2 = ""){ |
|
317 | + if (!isset($str1)) { |
|
318 | + $str1 = ""; |
|
319 | 319 | } |
320 | 320 | $str1 .= $str2; |
321 | 321 | } |
322 | 322 | |
323 | 323 | |
324 | 324 | |
325 | - function append_content($text) { |
|
326 | - if ( $this->initem ) { |
|
327 | - $this->concat( $this->current_item[ $this->incontent ], $text ); |
|
325 | + function append_content($text){ |
|
326 | + if ($this->initem) { |
|
327 | + $this->concat($this->current_item[$this->incontent], $text); |
|
328 | 328 | } |
329 | - elseif ( $this->inchannel ) { |
|
330 | - $this->concat( $this->channel[ $this->incontent ], $text ); |
|
329 | + elseif ($this->inchannel) { |
|
330 | + $this->concat($this->channel[$this->incontent], $text); |
|
331 | 331 | } |
332 | 332 | } |
333 | 333 | |
334 | 334 | // smart append - field and namespace aware |
335 | - function append($el, $text) { |
|
335 | + function append($el, $text){ |
|
336 | 336 | if (!$el) { |
337 | 337 | return; |
338 | 338 | } |
339 | - if ( $this->current_namespace ) |
|
339 | + if ($this->current_namespace) |
|
340 | 340 | { |
341 | - if ( $this->initem ) { |
|
341 | + if ($this->initem) { |
|
342 | 342 | $this->concat( |
343 | - $this->current_item[ $this->current_namespace ][ $el ], $text); |
|
343 | + $this->current_item[$this->current_namespace][$el], $text); |
|
344 | 344 | } |
345 | 345 | elseif ($this->inchannel) { |
346 | 346 | $this->concat( |
347 | - $this->channel[ $this->current_namespace][ $el ], $text ); |
|
347 | + $this->channel[$this->current_namespace][$el], $text ); |
|
348 | 348 | } |
349 | 349 | elseif ($this->intextinput) { |
350 | 350 | $this->concat( |
351 | - $this->textinput[ $this->current_namespace][ $el ], $text ); |
|
351 | + $this->textinput[$this->current_namespace][$el], $text ); |
|
352 | 352 | } |
353 | 353 | elseif ($this->inimage) { |
354 | 354 | $this->concat( |
355 | - $this->image[ $this->current_namespace ][ $el ], $text ); |
|
355 | + $this->image[$this->current_namespace][$el], $text ); |
|
356 | 356 | } |
357 | 357 | } |
358 | 358 | else { |
359 | - if ( $this->initem ) { |
|
359 | + if ($this->initem) { |
|
360 | 360 | $this->concat( |
361 | - $this->current_item[ $el ], $text); |
|
361 | + $this->current_item[$el], $text); |
|
362 | 362 | } |
363 | 363 | elseif ($this->intextinput) { |
364 | 364 | $this->concat( |
365 | - $this->textinput[ $el ], $text ); |
|
365 | + $this->textinput[$el], $text ); |
|
366 | 366 | } |
367 | 367 | elseif ($this->inimage) { |
368 | 368 | $this->concat( |
369 | - $this->image[ $el ], $text ); |
|
369 | + $this->image[$el], $text ); |
|
370 | 370 | } |
371 | 371 | elseif ($this->inchannel) { |
372 | 372 | $this->concat( |
373 | - $this->channel[ $el ], $text ); |
|
373 | + $this->channel[$el], $text ); |
|
374 | 374 | } |
375 | 375 | |
376 | 376 | } |
377 | 377 | } |
378 | 378 | |
379 | - function normalize () { |
|
379 | + function normalize(){ |
|
380 | 380 | // if atom populate rss fields |
381 | - if ( $this->is_atom() ) { |
|
381 | + if ($this->is_atom()) { |
|
382 | 382 | $this->channel['description'] = $this->channel['tagline']; |
383 | - for ( $i = 0; $i < count($this->items); $i++) { |
|
383 | + for ($i = 0; $i < count($this->items); $i++) { |
|
384 | 384 | $item = $this->items[$i]; |
385 | - if ( isset($item['summary']) ) |
|
385 | + if (isset($item['summary'])) |
|
386 | 386 | $item['description'] = $item['summary']; |
387 | - if ( isset($item['atom_content'])) |
|
387 | + if (isset($item['atom_content'])) |
|
388 | 388 | $item['content']['encoded'] = $item['atom_content']; |
389 | 389 | |
390 | - $atom_date = (isset($item['issued']) ) ? $item['issued'] : $item['modified']; |
|
391 | - if ( $atom_date ) { |
|
390 | + $atom_date = (isset($item['issued'])) ? $item['issued'] : $item['modified']; |
|
391 | + if ($atom_date) { |
|
392 | 392 | $epoch = @parse_w3cdtf($atom_date); |
393 | 393 | if ($epoch and $epoch > 0) { |
394 | 394 | $item['date_timestamp'] = $epoch; |
@@ -398,22 +398,22 @@ discard block |
||
398 | 398 | $this->items[$i] = $item; |
399 | 399 | } |
400 | 400 | } |
401 | - elseif ( $this->is_rss() ) { |
|
401 | + elseif ($this->is_rss()) { |
|
402 | 402 | $this->channel['tagline'] = $this->channel['description']; |
403 | - for ( $i = 0; $i < count($this->items); $i++) { |
|
403 | + for ($i = 0; $i < count($this->items); $i++) { |
|
404 | 404 | $item = $this->items[$i]; |
405 | - if ( isset($item['description'])) |
|
405 | + if (isset($item['description'])) |
|
406 | 406 | $item['summary'] = $item['description']; |
407 | - if ( isset($item['content']['encoded'] ) ) |
|
407 | + if (isset($item['content']['encoded'])) |
|
408 | 408 | $item['atom_content'] = $item['content']['encoded']; |
409 | 409 | |
410 | - if ( $this->is_rss() == '1.0' and isset($item['dc']['date']) ) { |
|
410 | + if ($this->is_rss() == '1.0' and isset($item['dc']['date'])) { |
|
411 | 411 | $epoch = @parse_w3cdtf($item['dc']['date']); |
412 | 412 | if ($epoch and $epoch > 0) { |
413 | 413 | $item['date_timestamp'] = $epoch; |
414 | 414 | } |
415 | 415 | } |
416 | - elseif ( isset($item['pubdate']) ) { |
|
416 | + elseif (isset($item['pubdate'])) { |
|
417 | 417 | $epoch = @strtotime($item['pubdate']); |
418 | 418 | if ($epoch > 0) { |
419 | 419 | $item['date_timestamp'] = $epoch; |
@@ -426,8 +426,8 @@ discard block |
||
426 | 426 | } |
427 | 427 | |
428 | 428 | |
429 | - function is_rss () { |
|
430 | - if ( $this->feed_type == RSS ) { |
|
429 | + function is_rss(){ |
|
430 | + if ($this->feed_type == RSS) { |
|
431 | 431 | return $this->feed_version; |
432 | 432 | } |
433 | 433 | else { |
@@ -435,8 +435,8 @@ discard block |
||
435 | 435 | } |
436 | 436 | } |
437 | 437 | |
438 | - function is_atom() { |
|
439 | - if ( $this->feed_type == ATOM ) { |
|
438 | + function is_atom(){ |
|
439 | + if ($this->feed_type == ATOM) { |
|
440 | 440 | return $this->feed_version; |
441 | 441 | } |
442 | 442 | else { |
@@ -448,8 +448,8 @@ discard block |
||
448 | 448 | * return XML parser, and possibly re-encoded source |
449 | 449 | * |
450 | 450 | */ |
451 | - function create_parser($source, $out_enc, $in_enc, $detect) { |
|
452 | - if ( substr(phpversion(),0,1) == 5) { |
|
451 | + function create_parser($source, $out_enc, $in_enc, $detect){ |
|
452 | + if (substr(phpversion(), 0, 1) == 5) { |
|
453 | 453 | $parser = $this->php5_create_parser($in_enc, $detect); |
454 | 454 | } |
455 | 455 | else { |
@@ -472,9 +472,9 @@ discard block |
||
472 | 472 | * All hail libxml2! |
473 | 473 | * |
474 | 474 | */ |
475 | - function php5_create_parser($in_enc, $detect) { |
|
475 | + function php5_create_parser($in_enc, $detect){ |
|
476 | 476 | // by default php5 does a fine job of detecting input encodings |
477 | - if(!$detect && $in_enc) { |
|
477 | + if (!$detect && $in_enc) { |
|
478 | 478 | return xml_parser_create($in_enc); |
479 | 479 | } |
480 | 480 | else { |
@@ -497,8 +497,8 @@ discard block |
||
497 | 497 | * @see http://minutillo.com/steve/weblog/2004/6/17/php-xml-and-character-encodings-a-tale-of-sadness-rage-and-data-loss |
498 | 498 | * |
499 | 499 | */ |
500 | - function php4_create_parser($source, $in_enc, $detect) { |
|
501 | - if ( !$detect ) { |
|
500 | + function php4_create_parser($source, $in_enc, $detect){ |
|
501 | + if (!$detect) { |
|
502 | 502 | return array(xml_parser_create($in_enc), $source); |
503 | 503 | } |
504 | 504 | |
@@ -522,8 +522,8 @@ discard block |
||
522 | 522 | // cast the XML to a known encoding |
523 | 523 | // @see http://php.net/iconv |
524 | 524 | |
525 | - if (function_exists('iconv')) { |
|
526 | - $encoded_source = iconv($in_enc,'UTF-8', $source); |
|
525 | + if (function_exists('iconv')) { |
|
526 | + $encoded_source = iconv($in_enc, 'UTF-8', $source); |
|
527 | 527 | if ($encoded_source) { |
528 | 528 | return array(xml_parser_create('UTF-8'), $encoded_source); |
529 | 529 | } |
@@ -531,24 +531,24 @@ discard block |
||
531 | 531 | |
532 | 532 | // iconv didn't work, try mb_convert_encoding |
533 | 533 | // @see http://php.net/mbstring |
534 | - if(function_exists('mb_convert_encoding')) { |
|
535 | - $encoded_source = mb_convert_encoding($source, 'UTF-8', $in_enc ); |
|
534 | + if (function_exists('mb_convert_encoding')) { |
|
535 | + $encoded_source = mb_convert_encoding($source, 'UTF-8', $in_enc); |
|
536 | 536 | if ($encoded_source) { |
537 | 537 | return array(xml_parser_create('UTF-8'), $encoded_source); |
538 | 538 | } |
539 | 539 | } |
540 | 540 | |
541 | 541 | // else |
542 | - $this->error("Feed is in an unsupported character encoding. ($in_enc) " . |
|
542 | + $this->error("Feed is in an unsupported character encoding. ($in_enc) ". |
|
543 | 543 | "You may see strange artifacts, and mangled characters.", |
544 | 544 | E_USER_NOTICE); |
545 | 545 | |
546 | 546 | return array(xml_parser_create(), $source); |
547 | 547 | } |
548 | 548 | |
549 | - function known_encoding($enc) { |
|
549 | + function known_encoding($enc){ |
|
550 | 550 | $enc = strtoupper($enc); |
551 | - if ( in_array($enc, $this->_KNOWN_ENCODINGS) ) { |
|
551 | + if (in_array($enc, $this->_KNOWN_ENCODINGS)) { |
|
552 | 552 | return $enc; |
553 | 553 | } |
554 | 554 | else { |
@@ -556,20 +556,20 @@ discard block |
||
556 | 556 | } |
557 | 557 | } |
558 | 558 | |
559 | - function error ($errormsg, $lvl=E_USER_WARNING) { |
|
559 | + function error($errormsg, $lvl = E_USER_WARNING){ |
|
560 | 560 | // append PHP's error message if track_errors enabled |
561 | - if ( isset($php_errormsg) ) { |
|
561 | + if (isset($php_errormsg)) { |
|
562 | 562 | $errormsg .= " ($php_errormsg)"; |
563 | 563 | } |
564 | - if ( MAGPIE_DEBUG ) { |
|
565 | - trigger_error( $errormsg, $lvl); |
|
564 | + if (MAGPIE_DEBUG) { |
|
565 | + trigger_error($errormsg, $lvl); |
|
566 | 566 | } |
567 | 567 | else { |
568 | - error_log( $errormsg, 0); |
|
568 | + error_log($errormsg, 0); |
|
569 | 569 | } |
570 | 570 | |
571 | - $notices = E_USER_NOTICE|E_NOTICE; |
|
572 | - if ( $lvl&$notices ) { |
|
571 | + $notices = E_USER_NOTICE | E_NOTICE; |
|
572 | + if ($lvl & $notices) { |
|
573 | 573 | $this->WARNING = $errormsg; |
574 | 574 | } else { |
575 | 575 | $this->ERROR = $errormsg; |
@@ -579,7 +579,7 @@ discard block |
||
579 | 579 | |
580 | 580 | } // end class RSS |
581 | 581 | |
582 | -function map_attrs($k, $v) { |
|
582 | +function map_attrs($k, $v){ |
|
583 | 583 | return "$k=\"$v\""; |
584 | 584 | } |
585 | 585 | |
@@ -591,19 +591,19 @@ discard block |
||
591 | 591 | define('CASE_LOWER', 0); |
592 | 592 | |
593 | 593 | |
594 | - function array_change_key_case($array, $case=CASE_LOWER) { |
|
594 | + function array_change_key_case($array, $case = CASE_LOWER){ |
|
595 | 595 | $output = array(); |
596 | - switch($case){ |
|
596 | + switch ($case) { |
|
597 | 597 | case CASE_LOWER: |
598 | - $cmd='strtolower'; |
|
598 | + $cmd = 'strtolower'; |
|
599 | 599 | break; |
600 | 600 | case CASE_UPPER: |
601 | - $cmd='strtoupper'; |
|
601 | + $cmd = 'strtoupper'; |
|
602 | 602 | break; |
603 | 603 | default: |
604 | 604 | $cmd = ''; |
605 | 605 | } |
606 | - foreach($array as $key=>$value) { |
|
606 | + foreach ($array as $key=>$value) { |
|
607 | 607 | $output[empty($cmd) ? $key : $cmd($key)] = $value; |
608 | 608 | } |
609 | 609 | return $output; |
@@ -1,8 +1,8 @@ discard block |
||
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 | -if(!$modx->hasPermission('view_eventlog')) { |
|
5 | +if (!$modx->hasPermission('view_eventlog')) { |
|
6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
7 | 7 | } |
8 | 8 | ?> |
@@ -17,9 +17,9 @@ discard block |
||
17 | 17 | <div class="form-group" id="lyr1"> |
18 | 18 | <b><?= $_lang["publish_events"] ?></b> |
19 | 19 | <?php |
20 | - $rs = $modx->db->select('id, pagetitle, pub_date', $modx->getFullTableName('site_content'), "pub_date > " . time() . "", 'pub_date ASC'); |
|
20 | + $rs = $modx->db->select('id, pagetitle, pub_date', $modx->getFullTableName('site_content'), "pub_date > ".time()."", 'pub_date ASC'); |
|
21 | 21 | $limit = $modx->db->getRecordCount($rs); |
22 | - if($limit < 1) { |
|
22 | + if ($limit < 1) { |
|
23 | 23 | ?> |
24 | 24 | <p><?= $_lang["no_docs_pending_publishing"] ?></p> |
25 | 25 | <?php |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | </thead> |
37 | 37 | <tbody> |
38 | 38 | <?php |
39 | - while($row = $modx->db->getRow($rs)) { |
|
39 | + while ($row = $modx->db->getRow($rs)) { |
|
40 | 40 | ?> |
41 | 41 | <tr> |
42 | 42 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -56,9 +56,9 @@ discard block |
||
56 | 56 | <div class="form-group" id="lyr2"> |
57 | 57 | <b><?= $_lang["unpublish_events"] ?></b> |
58 | 58 | <?php |
59 | - $rs = $modx->db->select('id, pagetitle, unpub_date', $modx->getFullTableName('site_content'), "unpub_date > " . time() . "", 'unpub_date ASC'); |
|
59 | + $rs = $modx->db->select('id, pagetitle, unpub_date', $modx->getFullTableName('site_content'), "unpub_date > ".time()."", 'unpub_date ASC'); |
|
60 | 60 | $limit = $modx->db->getRecordCount($rs); |
61 | - if($limit < 1) { |
|
61 | + if ($limit < 1) { |
|
62 | 62 | ?> |
63 | 63 | <p><?= $_lang["no_docs_pending_unpublishing"] ?></p> |
64 | 64 | <?php |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | </thead> |
76 | 76 | <tbody> |
77 | 77 | <?php |
78 | - while($row = $modx->db->getRow($rs)) { |
|
78 | + while ($row = $modx->db->getRow($rs)) { |
|
79 | 79 | ?> |
80 | 80 | <tr> |
81 | 81 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | <?php |
98 | 98 | $rs = $modx->db->select('id, pagetitle, pub_date, unpub_date', $modx->getFullTableName('site_content'), "pub_date > 0 OR unpub_date > 0", "pub_date DESC"); |
99 | 99 | $limit = $modx->db->getRecordCount($rs); |
100 | - if($limit < 1) { |
|
100 | + if ($limit < 1) { |
|
101 | 101 | ?> |
102 | 102 | <p><?= $_lang["no_docs_pending_pubunpub"] ?></p> |
103 | 103 | <?php |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | </thead> |
116 | 116 | <tbody> |
117 | 117 | <?php |
118 | - while($row = $modx->db->getRow($rs)) { |
|
118 | + while ($row = $modx->db->getRow($rs)) { |
|
119 | 119 | ?> |
120 | 120 | <tr> |
121 | 121 | <td class="text-right"><?= $row['id'] ?></td> |
@@ -1,5 +1,5 @@ discard block |
||
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('save_plugin')) { |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | $updateMsg = ''; |
12 | 12 | |
13 | 13 | if (isset($_POST['listSubmitted'])) { |
14 | - $updateMsg .= '<span class="text-success" id="updated">' . $_lang['sort_updated'] . '</span>'; |
|
14 | + $updateMsg .= '<span class="text-success" id="updated">'.$_lang['sort_updated'].'</span>'; |
|
15 | 15 | $tbl = $modx->getFullTableName('site_plugin_events'); |
16 | 16 | |
17 | 17 | foreach ($_POST as $listName => $listValue) { |
@@ -34,9 +34,9 @@ discard block |
||
34 | 34 | $modx->clearCache('full'); |
35 | 35 | } |
36 | 36 | |
37 | -$rs = $modx->db->select("sysevt.name as evtname, sysevt.id as evtid, pe.pluginid, plugs.name, pe.priority, plugs.disabled", $modx->getFullTableName('system_eventnames') . " sysevt |
|
38 | - INNER JOIN " . $modx->getFullTableName('site_plugin_events') . " pe ON pe.evtid = sysevt.id |
|
39 | - INNER JOIN " . $modx->getFullTableName('site_plugins') . " plugs ON plugs.id = pe.pluginid", '', 'sysevt.name,pe.priority'); |
|
37 | +$rs = $modx->db->select("sysevt.name as evtname, sysevt.id as evtid, pe.pluginid, plugs.name, pe.priority, plugs.disabled", $modx->getFullTableName('system_eventnames')." sysevt |
|
38 | + INNER JOIN " . $modx->getFullTableName('site_plugin_events')." pe ON pe.evtid = sysevt.id |
|
39 | + INNER JOIN " . $modx->getFullTableName('site_plugins')." plugs ON plugs.id = pe.pluginid", '', 'sysevt.name,pe.priority'); |
|
40 | 40 | |
41 | 41 | $insideUl = 0; |
42 | 42 | $preEvt = ''; |
@@ -47,17 +47,17 @@ discard block |
||
47 | 47 | if ($preEvt !== $plugins['evtid']) { |
48 | 48 | $sortables[] = $plugins['evtid']; |
49 | 49 | $sortableList .= $insideUl ? '</ul></div>' : ''; |
50 | - $sortableList .= '<div class="form-group clearfix"><strong>' . $plugins['evtname'] . '</strong><ul id="' . $plugins['evtid'] . '" class="sortableList">'; |
|
50 | + $sortableList .= '<div class="form-group clearfix"><strong>'.$plugins['evtname'].'</strong><ul id="'.$plugins['evtid'].'" class="sortableList">'; |
|
51 | 51 | $insideUl = 1; |
52 | 52 | } |
53 | - $sortableList .= '<li id="item_' . $plugins['pluginid'] . '"' . ($plugins['disabled'] ? ' class="disabledPlugin"' : '') . '><i class="fa fa-plug"></i> ' . $plugins['name'] . ($plugins['disabled'] ? ' (hide)' : '') . '</li>'; |
|
53 | + $sortableList .= '<li id="item_'.$plugins['pluginid'].'"'.($plugins['disabled'] ? ' class="disabledPlugin"' : '').'><i class="fa fa-plug"></i> '.$plugins['name'].($plugins['disabled'] ? ' (hide)' : '').'</li>'; |
|
54 | 54 | $preEvt = $plugins['evtid']; |
55 | 55 | } |
56 | 56 | if ($insideUl) { |
57 | 57 | $sortableList .= '</ul></div>'; |
58 | 58 | } |
59 | 59 | |
60 | -require_once(MODX_MANAGER_PATH . 'includes/header.inc.php'); |
|
60 | +require_once(MODX_MANAGER_PATH.'includes/header.inc.php'); |
|
61 | 61 | ?> |
62 | 62 | |
63 | 63 | <script type="text/javascript"> |
@@ -1,5 +1,5 @@ discard block |
||
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('save_template')) { |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | $templatename = ''; |
20 | 20 | |
21 | 21 | if (isset($_POST['listSubmitted'])) { |
22 | - $updateMsg .= '<div class="text-success" id="updated">' . $_lang['sort_updated'] . '</div>'; |
|
22 | + $updateMsg .= '<div class="text-success" id="updated">'.$_lang['sort_updated'].'</div>'; |
|
23 | 23 | foreach ($_POST as $listName => $listValue) { |
24 | 24 | if ($listName == 'listSubmitted' || $listName == 'reset') { |
25 | 25 | continue; |
@@ -47,11 +47,11 @@ discard block |
||
47 | 47 | while ($row = $modx->db->getRow($rs)) { |
48 | 48 | $templatename = $row['templatename']; |
49 | 49 | $caption = $row['caption'] != '' ? $row['caption'] : $row['name']; |
50 | - $sortableList .= '<li id="item_' . $row['id'] . '"><i class="fa fa-list-alt"></i> ' . $caption . ' <small class="protectedNode" style="float:right">[*' . $row['name'] . '*]</small></li>'; |
|
50 | + $sortableList .= '<li id="item_'.$row['id'].'"><i class="fa fa-list-alt"></i> '.$caption.' <small class="protectedNode" style="float:right">[*'.$row['name'].'*]</small></li>'; |
|
51 | 51 | } |
52 | 52 | $sortableList .= '</ul></div>'; |
53 | 53 | } else { |
54 | - $updateMsg = '<p class="text-danger">' . $_lang['tmplvars_novars'] . '</p>'; |
|
54 | + $updateMsg = '<p class="text-danger">'.$_lang['tmplvars_novars'].'</p>'; |
|
55 | 55 | } |
56 | 56 | ?> |
57 | 57 | |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | </script> |
129 | 129 | |
130 | 130 | <h1> |
131 | - <i class="fa fa-sort-numeric-asc"></i><?= ($templatename ? $templatename . '<small>(' . $id . ')</small>' : $_lang['template_tv_edit_title']) ?> |
|
131 | + <i class="fa fa-sort-numeric-asc"></i><?= ($templatename ? $templatename.'<small>('.$id.')</small>' : $_lang['template_tv_edit_title']) ?> |
|
132 | 132 | </h1> |
133 | 133 | |
134 | 134 | <?= $_style['actionbuttons']['dynamic']['save'] ?> |
@@ -1,5 +1,5 @@ discard block |
||
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('new_module') || $modx->hasPermission('edit_module') || $modx->hasPermission('exec_module'))) { |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | |
27 | 27 | // context menu |
28 | -include_once MODX_MANAGER_PATH . "includes/controls/contextmenu.php"; |
|
28 | +include_once MODX_MANAGER_PATH."includes/controls/contextmenu.php"; |
|
29 | 29 | $cm = new ContextMenu("cntxm", 150); |
30 | 30 | $cm->addItem($_lang["run_module"], "js:menuAction(1)", $_style['actions_run'], (!$modx->hasPermission('exec_module') ? 1 : 0)); |
31 | 31 | if ($modx->hasPermission('edit_module') || $modx->hasPermission('new_module') || $modx->hasPermission('delete_module')) { |
@@ -108,24 +108,24 @@ discard block |
||
108 | 108 | <div class="table-responsive"> |
109 | 109 | <?php |
110 | 110 | if ($_SESSION['mgrRole'] != 1 && !empty($modx->config['use_udperms'])) { |
111 | - $rs = $modx->db->query('SELECT DISTINCT sm.id, sm.name, sm.description, mg.member, IF(disabled,"' . $_lang['yes'] . '","-") as disabled, IF(sm.icon<>"",sm.icon,"' . $_style['icons_modules'] . '") as icon |
|
112 | - FROM ' . $modx->getFullTableName('site_modules') . ' AS sm |
|
113 | - LEFT JOIN ' . $modx->getFullTableName('site_module_access') . ' AS sma ON sma.module = sm.id |
|
114 | - LEFT JOIN ' . $modx->getFullTableName('member_groups') . ' AS mg ON sma.usergroup = mg.user_group |
|
115 | - WHERE (mg.member IS NULL OR mg.member = ' . $modx->getLoginUserID() . ') AND sm.disabled != 1 AND sm.locked != 1 |
|
111 | + $rs = $modx->db->query('SELECT DISTINCT sm.id, sm.name, sm.description, mg.member, IF(disabled,"'.$_lang['yes'].'","-") as disabled, IF(sm.icon<>"",sm.icon,"'.$_style['icons_modules'].'") as icon |
|
112 | + FROM ' . $modx->getFullTableName('site_modules').' AS sm |
|
113 | + LEFT JOIN ' . $modx->getFullTableName('site_module_access').' AS sma ON sma.module = sm.id |
|
114 | + LEFT JOIN ' . $modx->getFullTableName('member_groups').' AS mg ON sma.usergroup = mg.user_group |
|
115 | + WHERE (mg.member IS NULL OR mg.member = ' . $modx->getLoginUserID().') AND sm.disabled != 1 AND sm.locked != 1 |
|
116 | 116 | ORDER BY sm.name'); |
117 | 117 | if ($modx->hasPermission('edit_module')) { |
118 | - $title = "<a href='index.php?a=108&id=[+id+]' title='" . $_lang["module_edit_click_title"] . "'>[+value+]</a>"; |
|
118 | + $title = "<a href='index.php?a=108&id=[+id+]' title='".$_lang["module_edit_click_title"]."'>[+value+]</a>"; |
|
119 | 119 | } else if ($modx->hasPermission('exec_module')) { |
120 | - $title = "<a href='index.php?a=112&id=[+id+]' title='" . $_lang["module_edit_click_title"] . "'>[+value+]</a>"; |
|
120 | + $title = "<a href='index.php?a=112&id=[+id+]' title='".$_lang["module_edit_click_title"]."'>[+value+]</a>"; |
|
121 | 121 | } else { |
122 | 122 | $title = '[+value+]'; |
123 | 123 | } |
124 | 124 | } else { |
125 | 125 | $rs = $modx->db->select("id, name, description, IF(locked,'{$_lang['yes']}','-') as locked, IF(disabled,'{$_lang['yes']}','-') as disabled, IF(icon<>'',icon,'{$_style['icons_module']}') as icon", $modx->getFullTableName("site_modules"), (!empty($sqlQuery) ? "(name LIKE '%{$sqlQuery}%') OR (description LIKE '%{$sqlQuery}%')" : ""), "name"); |
126 | - $title = "<a href='index.php?a=108&id=[+id+]' title='" . $_lang["module_edit_click_title"] . "'>[+value+]</a>"; |
|
126 | + $title = "<a href='index.php?a=108&id=[+id+]' title='".$_lang["module_edit_click_title"]."'>[+value+]</a>"; |
|
127 | 127 | } |
128 | - include_once MODX_MANAGER_PATH . "includes/controls/datagrid.class.php"; |
|
128 | + include_once MODX_MANAGER_PATH."includes/controls/datagrid.class.php"; |
|
129 | 129 | $grd = new DataGrid('', $rs, $number_of_results); // set page size to 0 t show all items |
130 | 130 | $grd->noRecordMsg = $_lang["no_records_found"]; |
131 | 131 | $grd->cssClass = "table data"; |
@@ -133,10 +133,10 @@ discard block |
||
133 | 133 | $grd->itemClass = "tableItem"; |
134 | 134 | $grd->altItemClass = "tableAltItem"; |
135 | 135 | $grd->fields = "icon,name,description,locked,disabled"; |
136 | - $grd->columns = $_lang["icon"] . " ," . $_lang["name"] . " ," . $_lang["description"] . " ," . $_lang["locked"] . " ," . $_lang["disabled"]; |
|
136 | + $grd->columns = $_lang["icon"]." ,".$_lang["name"]." ,".$_lang["description"]." ,".$_lang["locked"]." ,".$_lang["disabled"]; |
|
137 | 137 | $grd->colWidths = "34,,,60,60"; |
138 | 138 | $grd->colAligns = "center,,,center,center"; |
139 | - $grd->colTypes = "template:<a class='tableRowIcon' href='javascript:;' onclick='return showContentMenu([+id+],event);' title='" . $_lang["click_to_context"] . "'><i class='[+value+]'></i></a>||template:" . $title; |
|
139 | + $grd->colTypes = "template:<a class='tableRowIcon' href='javascript:;' onclick='return showContentMenu([+id+],event);' title='".$_lang["click_to_context"]."'><i class='[+value+]'></i></a>||template:".$title; |
|
140 | 140 | if ($listmode == '1') { |
141 | 141 | $grd->pageSize = 0; |
142 | 142 | } |