@@ -1,20 +1,22 @@ |
||
1 | 1 | <?php |
2 | 2 | // Determine upgradeability |
3 | 3 | $upgradeable = 0; |
4 | -if (is_file($base_path . MGR_DIR . '/includes/config.inc.php')) { // Include the file so we can test its validity |
|
4 | +if (is_file($base_path . MGR_DIR . '/includes/config.inc.php')) { |
|
5 | +// Include the file so we can test its validity |
|
5 | 6 | include $base_path . MGR_DIR . '/includes/config.inc.php'; |
6 | 7 | // We need to have all connection settings - tho prefix may be empty so we have to ignore it |
7 | 8 | if (isset($dbase)) { |
8 | - if (!$conn = @mysqli_connect($database_server, $database_user, $database_password)) |
|
9 | - $upgradeable = isset($_POST['installmode']) && $_POST['installmode'] == 'new' ? 0 : 2; |
|
10 | - elseif (!@mysqli_select_db($conn, trim($dbase, '`'))) |
|
11 | - $upgradeable = isset($_POST['installmode']) && $_POST['installmode'] == 'new' ? 0 : 2; |
|
12 | - else |
|
13 | - $upgradeable = 1; |
|
9 | + if (!$conn = @mysqli_connect($database_server, $database_user, $database_password)) { |
|
10 | + $upgradeable = isset($_POST['installmode']) && $_POST['installmode'] == 'new' ? 0 : 2; |
|
11 | + } elseif (!@mysqli_select_db($conn, trim($dbase, '`'))) { |
|
12 | + $upgradeable = isset($_POST['installmode']) && $_POST['installmode'] == 'new' ? 0 : 2; |
|
13 | + } else { |
|
14 | + $upgradeable = 1; |
|
15 | + } |
|
16 | + } else { |
|
17 | + $upgradeable = 2; |
|
18 | + } |
|
14 | 19 | } |
15 | - else |
|
16 | - $upgradeable = 2; |
|
17 | -} |
|
18 | 20 | |
19 | 21 | $ph['moduleName'] = $moduleName; |
20 | 22 | $ph['displayNew'] = ($upgradeable!=0) ? 'display:none;' : ''; |
@@ -9,21 +9,24 @@ |
||
9 | 9 | $table_prefix= substr(md5(time()), rand(0, 27), rand(3, 5))."_"; |
10 | 10 | } else { |
11 | 11 | $database_name = ''; |
12 | - if (!is_file($base_path.MGR_DIR.'/includes/config.inc.php')) $upgradeable = 0; |
|
13 | - else { |
|
12 | + if (!is_file($base_path.MGR_DIR.'/includes/config.inc.php')) { |
|
13 | + $upgradeable = 0; |
|
14 | + } else { |
|
14 | 15 | // Include the file so we can test its validity |
15 | 16 | include($base_path.MGR_DIR.'/includes/config.inc.php'); |
16 | 17 | // We need to have all connection settings - but prefix may be empty so we have to ignore it |
17 | 18 | if ($dbase) { |
18 | 19 | $database_name = trim($dbase, '`'); |
19 | - if (!$conn = mysqli_connect($database_server, $database_user, $database_password)) |
|
20 | - $upgradeable = (isset($_POST['installmode']) && $_POST['installmode']=='new') ? 0 : 2; |
|
21 | - elseif (! mysqli_select_db($conn, trim($dbase, '`'))) |
|
22 | - $upgradeable = (isset($_POST['installmode']) && $_POST['installmode']=='new') ? 0 : 2; |
|
23 | - else |
|
24 | - $upgradeable = 1; |
|
20 | + if (!$conn = mysqli_connect($database_server, $database_user, $database_password)) { |
|
21 | + $upgradeable = (isset($_POST['installmode']) && $_POST['installmode']=='new') ? 0 : 2; |
|
22 | + } elseif (! mysqli_select_db($conn, trim($dbase, '`'))) { |
|
23 | + $upgradeable = (isset($_POST['installmode']) && $_POST['installmode']=='new') ? 0 : 2; |
|
24 | + } else { |
|
25 | + $upgradeable = 1; |
|
26 | + } |
|
27 | + } else { |
|
28 | + $upgradable= 2; |
|
25 | 29 | } |
26 | - else $upgradable= 2; |
|
27 | 30 | } |
28 | 31 | } |
29 | 32 |
@@ -43,7 +43,8 @@ discard block |
||
43 | 43 | ## see sample.php for test and usage |
44 | 44 | ## sample URL: http://www.program-ruti.org/veriword/ |
45 | 45 | #### |
46 | -class VeriWord { |
|
46 | +class VeriWord |
|
47 | +{ |
|
47 | 48 | |
48 | 49 | /* path to font directory*/ |
49 | 50 | var $dir_font = "ttf/"; |
@@ -53,7 +54,8 @@ discard block |
||
53 | 54 | var $im_width = 0; |
54 | 55 | var $im_height = 0; |
55 | 56 | |
56 | - function __construct($w=200, $h=80) { |
|
57 | + function __construct($w=200, $h=80) |
|
58 | + { |
|
57 | 59 | /* create session to set word for verification */ |
58 | 60 | startCMSSession(); |
59 | 61 | $this->set_veriword(); |
@@ -62,21 +64,24 @@ discard block |
||
62 | 64 | $this->im_height = $h; |
63 | 65 | } |
64 | 66 | |
65 | - function set_veriword() { |
|
67 | + function set_veriword() |
|
68 | + { |
|
66 | 69 | /* create session variable for verification, |
67 | 70 | you may change the session variable name */ |
68 | 71 | $this->word = $this->pick_word(); |
69 | 72 | $_SESSION['veriword'] = $this->word; |
70 | 73 | } |
71 | 74 | |
72 | - function output_image() { |
|
75 | + function output_image() |
|
76 | + { |
|
73 | 77 | /* output the image as jpeg */ |
74 | 78 | $this->draw_image(); |
75 | 79 | header("Content-type: image/jpeg"); |
76 | 80 | imagejpeg($this->im); |
77 | 81 | } |
78 | 82 | |
79 | - function pick_word() { |
|
83 | + function pick_word() |
|
84 | + { |
|
80 | 85 | global $modx; |
81 | 86 | // set default words |
82 | 87 | $words="MODX,Access,Better,BitCode,Chunk,Cache,Desc,Design,Excell,Enjoy,URLs,TechView,Gerald,Griff,Humphrey,Holiday,Intel,Integration,Joystick,Join(),Oscope,Genetic,Light,Likeness,Marit,Maaike,Niche,Netherlands,Ordinance,Oscillo,Parser,Phusion,Query,Question,Regalia,Righteous,Snippet,Sentinel,Template,Thespian,Unity,Enterprise,Verily,Veri,Website,WideWeb,Yap,Yellow,Zebra,Zygote"; |
@@ -87,7 +92,8 @@ discard block |
||
87 | 92 | return (string) $arr_words[array_rand($arr_words)].rand(10,999); |
88 | 93 | } |
89 | 94 | |
90 | - function draw_text() { |
|
95 | + function draw_text() |
|
96 | + { |
|
91 | 97 | $dir = dir($this->dir_font); |
92 | 98 | $fontstmp = array(); |
93 | 99 | while (false !== ($file = $dir->read())) { |
@@ -143,7 +149,8 @@ discard block |
||
143 | 149 | } |
144 | 150 | |
145 | 151 | |
146 | - function draw_image() { |
|
152 | + function draw_image() |
|
153 | + { |
|
147 | 154 | |
148 | 155 | /* pick one background image randomly from image directory */ |
149 | 156 | $img_file = $this->dir_noise."noise".rand(1,4).".jpg"; |
@@ -174,7 +181,8 @@ discard block |
||
174 | 181 | return $this->im; |
175 | 182 | } |
176 | 183 | |
177 | - function destroy_image() { |
|
184 | + function destroy_image() |
|
185 | + { |
|
178 | 186 | |
179 | 187 | imagedestroy($this->im); |
180 | 188 |
@@ -8,7 +8,8 @@ discard block |
||
8 | 8 | * |
9 | 9 | * @author Jason Coward <[email protected]> (MODX) |
10 | 10 | */ |
11 | -class MakeTable { |
|
11 | +class MakeTable |
|
12 | +{ |
|
12 | 13 | var $actionField; |
13 | 14 | var $cellAction; |
14 | 15 | var $linkAction; |
@@ -31,7 +32,8 @@ discard block |
||
31 | 32 | var $columnWidths; |
32 | 33 | var $selectedValues; |
33 | 34 | |
34 | - function __construct() { |
|
35 | + function __construct() |
|
36 | + { |
|
35 | 37 | $this->fieldHeaders= array(); |
36 | 38 | $this->excludeFields= array(); |
37 | 39 | $this->actionField= ''; |
@@ -58,7 +60,8 @@ discard block |
||
58 | 60 | * |
59 | 61 | * @param $value A URL to execute when table cells are clicked. |
60 | 62 | */ |
61 | - function setCellAction($value) { |
|
63 | + function setCellAction($value) |
|
64 | + { |
|
62 | 65 | $this->cellAction= $this->prepareLink($value); |
63 | 66 | } |
64 | 67 | |
@@ -67,7 +70,8 @@ discard block |
||
67 | 70 | * |
68 | 71 | * @param $value A URL to execute when text within table cells are clicked. |
69 | 72 | */ |
70 | - function setLinkAction($value) { |
|
73 | + function setLinkAction($value) |
|
74 | + { |
|
71 | 75 | $this->linkAction= $this->prepareLink($value); |
72 | 76 | } |
73 | 77 | |
@@ -76,7 +80,8 @@ discard block |
||
76 | 80 | * |
77 | 81 | * @param $value A valid width attribute for the HTML TABLE tag |
78 | 82 | */ |
79 | - function setTableWidth($value) { |
|
83 | + function setTableWidth($value) |
|
84 | + { |
|
80 | 85 | $this->tableWidth= $value; |
81 | 86 | } |
82 | 87 | |
@@ -85,7 +90,8 @@ discard block |
||
85 | 90 | * |
86 | 91 | * @param $value A class for the main HTML TABLE. |
87 | 92 | */ |
88 | - function setTableClass($value) { |
|
93 | + function setTableClass($value) |
|
94 | + { |
|
89 | 95 | $this->tableClass= $value; |
90 | 96 | } |
91 | 97 | |
@@ -94,7 +100,8 @@ discard block |
||
94 | 100 | * |
95 | 101 | * @param $value A class for the main HTML TABLE. |
96 | 102 | */ |
97 | - function setTableID($value) { |
|
103 | + function setTableID($value) |
|
104 | + { |
|
98 | 105 | $this->tableID= $value; |
99 | 106 | } |
100 | 107 | |
@@ -103,7 +110,8 @@ discard block |
||
103 | 110 | * |
104 | 111 | * @param $value A class for the table header row. |
105 | 112 | */ |
106 | - function setRowHeaderClass($value) { |
|
113 | + function setRowHeaderClass($value) |
|
114 | + { |
|
107 | 115 | $this->rowHeaderClass= $value; |
108 | 116 | } |
109 | 117 | |
@@ -112,7 +120,8 @@ discard block |
||
112 | 120 | * |
113 | 121 | * @param $value A class for the table header row. |
114 | 122 | */ |
115 | - function setThHeaderClass($value) { |
|
123 | + function setThHeaderClass($value) |
|
124 | + { |
|
116 | 125 | $this->thClass= $value; |
117 | 126 | } |
118 | 127 | |
@@ -121,7 +130,8 @@ discard block |
||
121 | 130 | * |
122 | 131 | * @param $value A class for the column header row. |
123 | 132 | */ |
124 | - function setColumnHeaderClass($value) { |
|
133 | + function setColumnHeaderClass($value) |
|
134 | + { |
|
125 | 135 | $this->columnHeaderClass= $value; |
126 | 136 | } |
127 | 137 | |
@@ -130,7 +140,8 @@ discard block |
||
130 | 140 | * |
131 | 141 | * @param $value A class for regular table rows. |
132 | 142 | */ |
133 | - function setRowRegularClass($value) { |
|
143 | + function setRowRegularClass($value) |
|
144 | + { |
|
134 | 145 | $this->rowRegularClass= $value; |
135 | 146 | } |
136 | 147 | |
@@ -139,7 +150,8 @@ discard block |
||
139 | 150 | * |
140 | 151 | * @param $value A class for alternate table rows. |
141 | 152 | */ |
142 | - function setRowAlternateClass($value) { |
|
153 | + function setRowAlternateClass($value) |
|
154 | + { |
|
143 | 155 | $this->rowAlternateClass= $value; |
144 | 156 | } |
145 | 157 | |
@@ -148,7 +160,8 @@ discard block |
||
148 | 160 | * |
149 | 161 | * @param $value Indicates the INPUT form element type attribute. |
150 | 162 | */ |
151 | - function setFormElementType($value) { |
|
163 | + function setFormElementType($value) |
|
164 | + { |
|
152 | 165 | $this->formElementType= $value; |
153 | 166 | } |
154 | 167 | |
@@ -157,7 +170,8 @@ discard block |
||
157 | 170 | * |
158 | 171 | * @param $value Indicates the INPUT form element name attribute. |
159 | 172 | */ |
160 | - function setFormElementName($value) { |
|
173 | + function setFormElementName($value) |
|
174 | + { |
|
161 | 175 | $this->formElementName= $value; |
162 | 176 | } |
163 | 177 | |
@@ -167,7 +181,8 @@ discard block |
||
167 | 181 | * |
168 | 182 | * @param $value Indicates the FORM name attribute. |
169 | 183 | */ |
170 | - function setFormName($value) { |
|
184 | + function setFormName($value) |
|
185 | + { |
|
171 | 186 | $this->formName= $value; |
172 | 187 | } |
173 | 188 | |
@@ -176,7 +191,8 @@ discard block |
||
176 | 191 | * |
177 | 192 | * @param $value Indicates the FORM action attribute. |
178 | 193 | */ |
179 | - function setFormAction($value) { |
|
194 | + function setFormAction($value) |
|
195 | + { |
|
180 | 196 | $this->formAction= $value; |
181 | 197 | } |
182 | 198 | |
@@ -185,7 +201,8 @@ discard block |
||
185 | 201 | * |
186 | 202 | * @param $value An Array of field keys to exclude from the table. |
187 | 203 | */ |
188 | - function setExcludeFields($value) { |
|
204 | + function setExcludeFields($value) |
|
205 | + { |
|
189 | 206 | $this->excludeFields= $value; |
190 | 207 | } |
191 | 208 | |
@@ -194,7 +211,8 @@ discard block |
||
194 | 211 | * |
195 | 212 | * @param $value 'ODD' or 'EVEN' to indicate the alternate row scheme. |
196 | 213 | */ |
197 | - function setRowAlternatingScheme($value) { |
|
214 | + function setRowAlternatingScheme($value) |
|
215 | + { |
|
198 | 216 | $this->rowAlternatingScheme= $value; |
199 | 217 | } |
200 | 218 | |
@@ -204,7 +222,8 @@ discard block |
||
204 | 222 | * |
205 | 223 | * @param $value The key of the field to add as a query string parameter. |
206 | 224 | */ |
207 | - function setActionFieldName($value) { |
|
225 | + function setActionFieldName($value) |
|
226 | + { |
|
208 | 227 | $this->actionField= $value; |
209 | 228 | } |
210 | 229 | |
@@ -214,7 +233,8 @@ discard block |
||
214 | 233 | * @param $value An Array of column widths in the order of the keys in the |
215 | 234 | * source table array. |
216 | 235 | */ |
217 | - function setColumnWidths($widthArray) { |
|
236 | + function setColumnWidths($widthArray) |
|
237 | + { |
|
218 | 238 | $this->columnWidths= $widthArray; |
219 | 239 | } |
220 | 240 | |
@@ -223,7 +243,8 @@ discard block |
||
223 | 243 | * |
224 | 244 | * @param $value Indicates the INPUT form element type attribute. |
225 | 245 | */ |
226 | - function setSelectedValues($valueArray) { |
|
246 | + function setSelectedValues($valueArray) |
|
247 | + { |
|
227 | 248 | $this->selectedValues= $valueArray; |
228 | 249 | } |
229 | 250 | |
@@ -233,7 +254,8 @@ discard block |
||
233 | 254 | * |
234 | 255 | * @param $value A string of additional content. |
235 | 256 | */ |
236 | - function setExtra($value) { |
|
257 | + function setExtra($value) |
|
258 | + { |
|
237 | 259 | $this->extra= $value; |
238 | 260 | } |
239 | 261 | |
@@ -242,7 +264,8 @@ discard block |
||
242 | 264 | * |
243 | 265 | * @param $columnPosition The index of the column to get the width for. |
244 | 266 | */ |
245 | - function getColumnWidth($columnPosition) { |
|
267 | + function getColumnWidth($columnPosition) |
|
268 | + { |
|
246 | 269 | $currentWidth= ''; |
247 | 270 | if (is_array($this->columnWidths)) { |
248 | 271 | $currentWidth= $this->columnWidths[$columnPosition] ? ' width="'.$this->columnWidths[$columnPosition].'" ' : ''; |
@@ -255,7 +278,8 @@ discard block |
||
255 | 278 | * |
256 | 279 | * @param $value The position of the current row being rendered. |
257 | 280 | */ |
258 | - function determineRowClass($position) { |
|
281 | + function determineRowClass($position) |
|
282 | + { |
|
259 | 283 | switch ($this->rowAlternatingScheme) { |
260 | 284 | case 'ODD' : |
261 | 285 | $modRemainder= 1; |
@@ -278,7 +302,8 @@ discard block |
||
278 | 302 | * |
279 | 303 | * @param $value Indicates the INPUT form element type attribute. |
280 | 304 | */ |
281 | - function getCellAction($currentActionFieldValue) { |
|
305 | + function getCellAction($currentActionFieldValue) |
|
306 | + { |
|
282 | 307 | if ($this->cellAction) { |
283 | 308 | $cellAction= ' onClick="javascript:window.location=\''.$this->cellAction.$this->actionField.'='.urlencode($currentActionFieldValue).'\'" '; |
284 | 309 | } |
@@ -291,7 +316,8 @@ discard block |
||
291 | 316 | * @param $currentActionFieldValue The value to be applied to the link action. |
292 | 317 | * @param $value The value of the cell. |
293 | 318 | */ |
294 | - function createCellText($currentActionFieldValue, $value) { |
|
319 | + function createCellText($currentActionFieldValue, $value) |
|
320 | + { |
|
295 | 321 | $cell .= $value; |
296 | 322 | if ($this->linkAction) { |
297 | 323 | $cell= '<a href="'.$this->linkAction.$this->actionField.'='.urlencode($currentActionFieldValue).'">'.$cell.'</a>'; |
@@ -303,7 +329,8 @@ discard block |
||
303 | 329 | * Sets an option to generate a check all link when checkbox is indicated |
304 | 330 | * as the table formElementType. |
305 | 331 | */ |
306 | - function setAllOption() { |
|
332 | + function setAllOption() |
|
333 | + { |
|
307 | 334 | $this->allOption= 1; |
308 | 335 | } |
309 | 336 | |
@@ -312,7 +339,8 @@ discard block |
||
312 | 339 | * |
313 | 340 | * @param $value Indicates the INPUT form element type attribute. |
314 | 341 | */ |
315 | - function prepareLink($link) { |
|
342 | + function prepareLink($link) |
|
343 | + { |
|
316 | 344 | if (strstr($link, '?')) { |
317 | 345 | $end= '&'; |
318 | 346 | } else { |
@@ -331,7 +359,8 @@ discard block |
||
331 | 359 | * the $fieldsArray where the values represent the alt heading content |
332 | 360 | * for each column. |
333 | 361 | */ |
334 | - function create($fieldsArray, $fieldHeadersArray=array(),$linkpage="") { |
|
362 | + function create($fieldsArray, $fieldHeadersArray=array(),$linkpage="") |
|
363 | + { |
|
335 | 364 | global $_lang; |
336 | 365 | if (is_array($fieldsArray)) { |
337 | 366 | $i= 0; |
@@ -367,7 +396,8 @@ discard block |
||
367 | 396 | if ($this->formElementType) { |
368 | 397 | $table= "\n".'<form id="'.$this->formName.'" name="'.$this->formName.'" action="'.$this->formAction.'" method="POST">'.$table; |
369 | 398 | } |
370 | - if (strlen($this->pageNav) > 1) {//changed to display the pagination if exists. |
|
399 | + if (strlen($this->pageNav) > 1) { |
|
400 | +//changed to display the pagination if exists. |
|
371 | 401 | /* commented this part because of cookie |
372 | 402 | $table .= '<div id="max-display-records" ><select style="display:inline" onchange="javascript:updatePageSize(this[this.selectedIndex].value);">'; |
373 | 403 | $pageSizes= array (10, 25, 50, 100, 250); |
@@ -414,7 +444,8 @@ discard block |
||
414 | 444 | * @param $numRecords The number of records to show per page. |
415 | 445 | * @param $qs An optional query string to be appended to the paging links |
416 | 446 | */ |
417 | - function createPagingNavigation($numRecords, $qs='') { |
|
447 | + function createPagingNavigation($numRecords, $qs='') |
|
448 | + { |
|
418 | 449 | global $_lang; |
419 | 450 | $currentPage= (is_numeric($_GET['page']) ? $_GET['page'] : 1); |
420 | 451 | $numPages= ceil($numRecords / MAX_DISPLAY_RECORDS_NUM); |
@@ -429,10 +460,11 @@ discard block |
||
429 | 460 | $offset= -4 + ($currentPage < 5 ? (5 - $currentPage) : 0); |
430 | 461 | $i= 1; |
431 | 462 | while ($i < 10 && ($currentPage + $offset <= $numPages)) { |
432 | - if ($currentPage == $currentPage + $offset) |
|
433 | - $nav .= $this->createPageLink($currentURL, $currentPage + $offset, $currentPage + $offset, true); |
|
434 | - else |
|
435 | - $nav .= $this->createPageLink($currentURL, $currentPage + $offset, $currentPage + $offset); |
|
463 | + if ($currentPage == $currentPage + $offset) { |
|
464 | + $nav .= $this->createPageLink($currentURL, $currentPage + $offset, $currentPage + $offset, true); |
|
465 | + } else { |
|
466 | + $nav .= $this->createPageLink($currentURL, $currentPage + $offset, $currentPage + $offset); |
|
467 | + } |
|
436 | 468 | $i ++; |
437 | 469 | $offset ++; |
438 | 470 | } |
@@ -455,11 +487,14 @@ discard block |
||
455 | 487 | * @param $currentPage Indicates if the link is to the current page. |
456 | 488 | * @param $qs And optional query string to be appended to the link. |
457 | 489 | */ |
458 | - function createPageLink($link='', $pageNum, $displayText, $currentPage=false, $qs='') { |
|
490 | + function createPageLink($link='', $pageNum, $displayText, $currentPage=false, $qs='') |
|
491 | + { |
|
459 | 492 | global $modx; |
460 | 493 | $orderBy= !empty($_GET['orderby'])? '&orderby=' . $_GET['orderby']: ''; |
461 | 494 | $orderDir= !empty($_GET['orderdir'])? '&orderdir=' . $_GET['orderdir']: ''; |
462 | - if (!empty($qs)) $qs= "?$qs"; |
|
495 | + if (!empty($qs)) { |
|
496 | + $qs= "?$qs"; |
|
497 | + } |
|
463 | 498 | $link= empty($link)? $modx->makeUrl($modx->documentIdentifier, $modx->documentObject['alias'], $qs . "page=$pageNum$orderBy$orderDir"): $this->prepareLink($link) . "page=$pageNum"; |
464 | 499 | $nav .= '<li'.($currentPage? ' class="currentPage"': '').'><a'.($currentPage? ' class="currentPage"': '').' href="'.$link.'">'.$displayText.'</a></li>'."\n"; |
465 | 500 | return $nav; |
@@ -472,7 +507,8 @@ discard block |
||
472 | 507 | * @param $isChecked Indicates if the checked attribute should apply to the |
473 | 508 | * element. |
474 | 509 | */ |
475 | - function addFormField($value, $isChecked) { |
|
510 | + function addFormField($value, $isChecked) |
|
511 | + { |
|
476 | 512 | if ($this->formElementType) { |
477 | 513 | $checked= $isChecked? "checked ": ""; |
478 | 514 | $field= "\t\t".'<td><input type="'.$this->formElementType.'" name="'. ($this->formElementName ? $this->formElementName : $value).'" value="'.$value.'" '.$checked.'/></td>'."\n"; |
@@ -484,7 +520,8 @@ discard block |
||
484 | 520 | * Generates the proper LIMIT clause for queries to retrieve paged results in |
485 | 521 | * a MakeTable $fieldsArray. |
486 | 522 | */ |
487 | - function handlePaging() { |
|
523 | + function handlePaging() |
|
524 | + { |
|
488 | 525 | $offset= (is_numeric($_GET['page']) && $_GET['page'] > 0) ? $_GET['page'] - 1 : 0; |
489 | 526 | $limitClause= ' LIMIT '. ($offset * MAX_DISPLAY_RECORDS_NUM).', '.MAX_DISPLAY_RECORDS_NUM; |
490 | 527 | return $limitClause; |
@@ -496,7 +533,8 @@ discard block |
||
496 | 533 | * |
497 | 534 | * @param $natural_order If true, the results are returned in natural order. |
498 | 535 | */ |
499 | - function handleSorting($natural_order=false) { |
|
536 | + function handleSorting($natural_order=false) |
|
537 | + { |
|
500 | 538 | $orderByClause= ''; |
501 | 539 | if (!$natural_order) { |
502 | 540 | $orderby= !empty($_GET['orderby'])? $_GET['orderby']: "id"; |
@@ -514,7 +552,8 @@ discard block |
||
514 | 552 | * @param $text The text for the link (e.g. table column header). |
515 | 553 | * @param $qs An optional query string to append to the order by link. |
516 | 554 | */ |
517 | - function prepareOrderByLink($key, $text, $qs='') { |
|
555 | + function prepareOrderByLink($key, $text, $qs='') |
|
556 | + { |
|
518 | 557 | global $modx; |
519 | 558 | if (!empty($_GET['orderdir'])) { |
520 | 559 | $orderDir= strtolower($_GET['orderdir'])=='desc'? '&orderdir=asc': '&orderdir=desc'; |
@@ -522,7 +561,9 @@ discard block |
||
522 | 561 | $orderDir= '&orderdir=asc'; |
523 | 562 | } |
524 | 563 | if (!empty($qs)) { |
525 | - if (!strrpos($qs, '&')==strlen($qs)-1) $qs.= '&'; |
|
564 | + if (!strrpos($qs, '&')==strlen($qs)-1) { |
|
565 | + $qs.= '&'; |
|
566 | + } |
|
526 | 567 | } |
527 | 568 | return '<a href="[~'.$modx->documentIdentifier.'~]?'.$qs.'orderby='.$key.$orderDir.'">'.$text.'</a>'; |
528 | 569 | } |
@@ -16,12 +16,14 @@ discard block |
||
16 | 16 | * |
17 | 17 | */ |
18 | 18 | |
19 | -class RSSCache { |
|
19 | +class RSSCache |
|
20 | +{ |
|
20 | 21 | var $BASE_CACHE = './cache'; // where the cache files are stored |
21 | 22 | var $MAX_AGE = 3600; // when are files stale, default one hour |
22 | 23 | var $ERROR = ""; // accumulate error messages |
23 | 24 | |
24 | - function __construct($base='', $age='') { |
|
25 | + function __construct($base='', $age='') |
|
26 | + { |
|
25 | 27 | if ( $base ) { |
26 | 28 | $this->BASE_CACHE = $base; |
27 | 29 | } |
@@ -48,7 +50,8 @@ discard block |
||
48 | 50 | Input: url from wich the rss file was fetched |
49 | 51 | Output: true on sucess |
50 | 52 | \*=======================================================================*/ |
51 | - function set ($url, $rss) { |
|
53 | + function set ($url, $rss) |
|
54 | + { |
|
52 | 55 | $this->ERROR = ""; |
53 | 56 | $cache_file = $this->file_name( $url ); |
54 | 57 | $fp = @fopen( $cache_file, 'w' ); |
@@ -74,7 +77,8 @@ discard block |
||
74 | 77 | Input: url from wich the rss file was fetched |
75 | 78 | Output: cached object on HIT, false on MISS |
76 | 79 | \*=======================================================================*/ |
77 | - function get ($url) { |
|
80 | + function get ($url) |
|
81 | + { |
|
78 | 82 | $this->ERROR = ""; |
79 | 83 | $cache_file = $this->file_name( $url ); |
80 | 84 | |
@@ -110,7 +114,8 @@ discard block |
||
110 | 114 | Input: url from wich the rss file was fetched |
111 | 115 | Output: cached object on HIT, false on MISS |
112 | 116 | \*=======================================================================*/ |
113 | - function check_cache ( $url ) { |
|
117 | + function check_cache ( $url ) |
|
118 | + { |
|
114 | 119 | $this->ERROR = ""; |
115 | 120 | $filename = $this->file_name( $url ); |
116 | 121 | |
@@ -122,26 +127,24 @@ discard block |
||
122 | 127 | if ( $this->MAX_AGE > $age ) { |
123 | 128 | // object exists and is current |
124 | 129 | return 'HIT'; |
125 | - } |
|
126 | - else { |
|
130 | + } else { |
|
127 | 131 | // object exists but is old |
128 | 132 | return 'STALE'; |
129 | 133 | } |
130 | - } |
|
131 | - else { |
|
134 | + } else { |
|
132 | 135 | // object does not exist |
133 | 136 | return 'MISS'; |
134 | 137 | } |
135 | 138 | } |
136 | 139 | |
137 | - function cache_age( $cache_key ) { |
|
140 | + function cache_age( $cache_key ) |
|
141 | + { |
|
138 | 142 | $filename = $this->file_name( $url ); |
139 | 143 | if ( file_exists( $filename ) ) { |
140 | 144 | $mtime = filemtime( $filename ); |
141 | 145 | $age = time() - $mtime; |
142 | 146 | return $age; |
143 | - } |
|
144 | - else { |
|
147 | + } else { |
|
145 | 148 | return -1; |
146 | 149 | } |
147 | 150 | } |
@@ -149,14 +152,16 @@ discard block |
||
149 | 152 | /*=======================================================================*\ |
150 | 153 | Function: serialize |
151 | 154 | \*=======================================================================*/ |
152 | - function serialize ( $rss ) { |
|
155 | + function serialize ( $rss ) |
|
156 | + { |
|
153 | 157 | return serialize( $rss ); |
154 | 158 | } |
155 | 159 | |
156 | 160 | /*=======================================================================*\ |
157 | 161 | Function: unserialize |
158 | 162 | \*=======================================================================*/ |
159 | - function unserialize ( $data ) { |
|
163 | + function unserialize ( $data ) |
|
164 | + { |
|
160 | 165 | return unserialize( $data ); |
161 | 166 | } |
162 | 167 | |
@@ -166,7 +171,8 @@ discard block |
||
166 | 171 | Input: url from wich the rss file was fetched |
167 | 172 | Output: a file name |
168 | 173 | \*=======================================================================*/ |
169 | - function file_name ($url) { |
|
174 | + function file_name ($url) |
|
175 | + { |
|
170 | 176 | $filename = md5( $url ); |
171 | 177 | return join( DIRECTORY_SEPARATOR, array( $this->BASE_CACHE, $filename ) ); |
172 | 178 | } |
@@ -175,7 +181,8 @@ discard block |
||
175 | 181 | Function: error |
176 | 182 | Purpose: register error |
177 | 183 | \*=======================================================================*/ |
178 | - function error ($errormsg, $lvl=E_USER_WARNING) { |
|
184 | + function error ($errormsg, $lvl=E_USER_WARNING) |
|
185 | + { |
|
179 | 186 | // append PHP's error message if track_errors enabled |
180 | 187 | if ( isset($php_errormsg) ) { |
181 | 188 | $errormsg .= " ($php_errormsg)"; |
@@ -183,13 +190,13 @@ discard block |
||
183 | 190 | $this->ERROR = $errormsg; |
184 | 191 | if ( MAGPIE_DEBUG ) { |
185 | 192 | trigger_error( $errormsg, $lvl); |
186 | - } |
|
187 | - else { |
|
193 | + } else { |
|
188 | 194 | error_log( $errormsg, 0); |
189 | 195 | } |
190 | 196 | } |
191 | 197 | |
192 | - function debug ($debugmsg, $lvl=E_USER_NOTICE) { |
|
198 | + function debug ($debugmsg, $lvl=E_USER_NOTICE) |
|
199 | + { |
|
193 | 200 | if ( MAGPIE_DEBUG ) { |
194 | 201 | $this->error("MagpieRSS [debug] $debugmsg", $lvl); |
195 | 202 | } |
@@ -89,7 +89,8 @@ discard block |
||
89 | 89 | |
90 | 90 | $MAGPIE_ERROR = ""; |
91 | 91 | |
92 | -function fetch_rss ($url) { |
|
92 | +function fetch_rss ($url) |
|
93 | +{ |
|
93 | 94 | // initialize constants |
94 | 95 | init(); |
95 | 96 | |
@@ -104,8 +105,7 @@ discard block |
||
104 | 105 | $resp = _fetch_remote_file( $url ); |
105 | 106 | if ( is_success( $resp->status ) ) { |
106 | 107 | return _response_to_rss( $resp ); |
107 | - } |
|
108 | - else { |
|
108 | + } else { |
|
109 | 109 | error("Failed to fetch $url and cache is off"); |
110 | 110 | return false; |
111 | 111 | } |
@@ -174,8 +174,7 @@ discard block |
||
174 | 174 | // reset cache on 304 (at minutillo insistent prodding) |
175 | 175 | $cache->set($cache_key, $rss); |
176 | 176 | return $rss; |
177 | - } |
|
178 | - elseif ( is_success( $resp->status ) ) { |
|
177 | + } elseif ( is_success( $resp->status ) ) { |
|
179 | 178 | $rss = _response_to_rss( $resp ); |
180 | 179 | if ( $rss ) { |
181 | 180 | if (MAGPIE_DEBUG > 1) { |
@@ -185,24 +184,20 @@ discard block |
||
185 | 184 | $cache->set( $cache_key, $rss ); |
186 | 185 | return $rss; |
187 | 186 | } |
188 | - } |
|
189 | - else { |
|
187 | + } else { |
|
190 | 188 | $errormsg = "Failed to fetch $url "; |
191 | 189 | if ( $resp->status == '-100' ) { |
192 | 190 | $errormsg .= "(Request timed out after " . MAGPIE_FETCH_TIME_OUT . " seconds)"; |
193 | - } |
|
194 | - elseif ( $resp->error ) { |
|
191 | + } elseif ( $resp->error ) { |
|
195 | 192 | # compensate for Snoopy's annoying habbit to tacking |
196 | 193 | # on '\n' |
197 | 194 | $http_error = substr($resp->error, 0, -2); |
198 | 195 | $errormsg .= "(HTTP Error: $http_error)"; |
199 | - } |
|
200 | - else { |
|
196 | + } else { |
|
201 | 197 | $errormsg .= "(HTTP Response: " . $resp->response_code .')'; |
202 | 198 | } |
203 | 199 | } |
204 | - } |
|
205 | - else { |
|
200 | + } else { |
|
206 | 201 | $errormsg = "Unable to retrieve RSS file for unknown reasons."; |
207 | 202 | } |
208 | 203 | |
@@ -229,7 +224,8 @@ discard block |
||
229 | 224 | Purpose: set MAGPIE_ERROR, and trigger error |
230 | 225 | \*=======================================================================*/ |
231 | 226 | |
232 | -function error ($errormsg, $lvl=E_USER_WARNING) { |
|
227 | +function error ($errormsg, $lvl=E_USER_WARNING) |
|
228 | +{ |
|
233 | 229 | global $MAGPIE_ERROR; |
234 | 230 | |
235 | 231 | // append PHP's error message if track_errors enabled |
@@ -243,7 +239,8 @@ discard block |
||
243 | 239 | } |
244 | 240 | } |
245 | 241 | |
246 | -function debug ($debugmsg, $lvl=E_USER_NOTICE) { |
|
242 | +function debug ($debugmsg, $lvl=E_USER_NOTICE) |
|
243 | +{ |
|
247 | 244 | trigger_error("MagpieRSS [debug] $debugmsg", $lvl); |
248 | 245 | } |
249 | 246 | |
@@ -251,7 +248,8 @@ discard block |
||
251 | 248 | Function: magpie_error |
252 | 249 | Purpose: accessor for the magpie error variable |
253 | 250 | \*=======================================================================*/ |
254 | -function magpie_error ($errormsg="") { |
|
251 | +function magpie_error ($errormsg="") |
|
252 | +{ |
|
255 | 253 | global $MAGPIE_ERROR; |
256 | 254 | |
257 | 255 | if ( isset($errormsg) and $errormsg ) { |
@@ -268,7 +266,8 @@ discard block |
||
268 | 266 | headers to send along with the request (optional) |
269 | 267 | Output: an HTTP response object (see Snoopy.class.inc) |
270 | 268 | \*=======================================================================*/ |
271 | -function _fetch_remote_file ($url, $headers = "" ) { |
|
269 | +function _fetch_remote_file ($url, $headers = "" ) |
|
270 | +{ |
|
272 | 271 | // Snoopy is an HTTP client in PHP |
273 | 272 | $client = new Snoopy(); |
274 | 273 | $client->agent = MAGPIE_USER_AGENT; |
@@ -289,7 +288,8 @@ discard block |
||
289 | 288 | Input: an HTTP response object (see Snoopy) |
290 | 289 | Output: parsed RSS object (see rss_parse) |
291 | 290 | \*=======================================================================*/ |
292 | -function _response_to_rss ($resp) { |
|
291 | +function _response_to_rss ($resp) |
|
292 | +{ |
|
293 | 293 | $rss = new MagpieRSS( $resp->results, MAGPIE_OUTPUT_ENCODING, MAGPIE_INPUT_ENCODING, MAGPIE_DETECT_ENCODING ); |
294 | 294 | |
295 | 295 | // if RSS parsed successfully |
@@ -300,8 +300,7 @@ discard block |
||
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); |
303 | - } |
|
304 | - else { |
|
303 | + } else { |
|
305 | 304 | $field = $h; |
306 | 305 | $val = ""; |
307 | 306 | } |
@@ -334,11 +333,11 @@ discard block |
||
334 | 333 | Purpose: setup constants with default values |
335 | 334 | check for user overrides |
336 | 335 | \*=======================================================================*/ |
337 | -function init () { |
|
336 | +function init () |
|
337 | +{ |
|
338 | 338 | if ( defined('MAGPIE_INITALIZED') ) { |
339 | 339 | return; |
340 | - } |
|
341 | - else { |
|
340 | + } else { |
|
342 | 341 | define('MAGPIE_INITALIZED', true); |
343 | 342 | } |
344 | 343 | |
@@ -360,7 +359,9 @@ discard block |
||
360 | 359 | |
361 | 360 | if ( !defined('MAGPIE_OUTPUT_ENCODING') ) { |
362 | 361 | global $modx_manager_charset; |
363 | - if(empty($modx_manager_charset)) $modx_manager_charset = 'ISO-8859-1'; |
|
362 | + if(empty($modx_manager_charset)) { |
|
363 | + $modx_manager_charset = 'ISO-8859-1'; |
|
364 | + } |
|
364 | 365 | define('MAGPIE_OUTPUT_ENCODING', $modx_manager_charset); |
365 | 366 | } |
366 | 367 | |
@@ -381,8 +382,7 @@ discard block |
||
381 | 382 | |
382 | 383 | if ( MAGPIE_CACHE_ON ) { |
383 | 384 | $ua = $ua . ')'; |
384 | - } |
|
385 | - else { |
|
385 | + } else { |
|
386 | 386 | $ua = $ua . '; No cache)'; |
387 | 387 | } |
388 | 388 | |
@@ -417,7 +417,8 @@ discard block |
||
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 | 422 | return $sc >= 100 && $sc < 200; |
422 | 423 | } |
423 | 424 | |
@@ -425,7 +426,8 @@ discard block |
||
425 | 426 | Function: is_success |
426 | 427 | Purpose: return true if Successful status code |
427 | 428 | \*=======================================================================*/ |
428 | -function is_success ($sc) { |
|
429 | +function is_success ($sc) |
|
430 | +{ |
|
429 | 431 | return $sc >= 200 && $sc < 300; |
430 | 432 | } |
431 | 433 | |
@@ -433,7 +435,8 @@ discard block |
||
433 | 435 | Function: is_redirect |
434 | 436 | Purpose: return true if Redirection status code |
435 | 437 | \*=======================================================================*/ |
436 | -function is_redirect ($sc) { |
|
438 | +function is_redirect ($sc) |
|
439 | +{ |
|
437 | 440 | return $sc >= 300 && $sc < 400; |
438 | 441 | } |
439 | 442 | |
@@ -441,7 +444,8 @@ discard block |
||
441 | 444 | Function: is_error |
442 | 445 | Purpose: return true if Error status code |
443 | 446 | \*=======================================================================*/ |
444 | -function is_error ($sc) { |
|
447 | +function is_error ($sc) |
|
448 | +{ |
|
445 | 449 | return $sc >= 400 && $sc < 600; |
446 | 450 | } |
447 | 451 | |
@@ -449,7 +453,8 @@ discard block |
||
449 | 453 | Function: is_client_error |
450 | 454 | Purpose: return true if Error status code, and its a client error |
451 | 455 | \*=======================================================================*/ |
452 | -function is_client_error ($sc) { |
|
456 | +function is_client_error ($sc) |
|
457 | +{ |
|
453 | 458 | return $sc >= 400 && $sc < 500; |
454 | 459 | } |
455 | 460 | |
@@ -457,6 +462,7 @@ discard block |
||
457 | 462 | Function: is_client_error |
458 | 463 | Purpose: return true if Error status code, and its a server error |
459 | 464 | \*=======================================================================*/ |
460 | -function is_server_error ($sc) { |
|
465 | +function is_server_error ($sc) |
|
466 | +{ |
|
461 | 467 | return $sc >= 500 && $sc < 600; |
462 | 468 | } |
@@ -28,9 +28,12 @@ |
||
28 | 28 | die; |
29 | 29 | } |
30 | 30 | $mtime = @filemtime($file); |
31 | -if ($mtime) httpCache::checkMTime($mtime); |
|
31 | +if ($mtime) { |
|
32 | + httpCache::checkMTime($mtime); |
|
33 | +} |
|
32 | 34 | require $file; |
33 | 35 | header("Content-Type: text/javascript; charset={$lang['_charset']}"); |
34 | -foreach ($lang as $english => $native) |
|
36 | +foreach ($lang as $english => $native) { |
|
35 | 37 | if (substr($english, 0, 1) != "_") |
36 | 38 | echo "browser.labels['" . text::jsValue($english) . "']=\"" . text::jsValue($native) . "\";"; |
39 | +} |
@@ -12,7 +12,8 @@ discard block |
||
12 | 12 | * @link http://kcfinder.sunhater.com |
13 | 13 | */ |
14 | 14 | |
15 | -class gd { |
|
15 | +class gd |
|
16 | +{ |
|
16 | 17 | |
17 | 18 | /** GD resource |
18 | 19 | * @var resource */ |
@@ -40,23 +41,24 @@ discard block |
||
40 | 41 | * @param mixed $image |
41 | 42 | * @return array */ |
42 | 43 | |
43 | - protected function build_image($image) { |
|
44 | + protected function build_image($image) |
|
45 | + { |
|
44 | 46 | |
45 | - if ($image instanceof gd) { |
|
47 | + if ($image instanceof gd) { |
|
46 | 48 | $width = $image->get_width(); |
47 | 49 | $height = $image->get_height(); |
48 | 50 | $image = $image->get_image(); |
49 | 51 | |
50 | - } elseif (is_resource($image) && (get_resource_type($image) == "gd")) { |
|
52 | + } elseif (is_resource($image) && (get_resource_type($image) == "gd")) { |
|
51 | 53 | $width = @imagesx($image); |
52 | 54 | $height = @imagesy($image); |
53 | 55 | |
54 | - } elseif (is_array($image)) { |
|
56 | + } elseif (is_array($image)) { |
|
55 | 57 | list($key, $width) = each($image); |
56 | 58 | list($key, $height) = each($image); |
57 | 59 | $image = imagecreatetruecolor($width, $height); |
58 | 60 | |
59 | - } elseif (false !== (list($width, $height, $type) = @getimagesize($image))) { |
|
61 | + } elseif (false !== (list($width, $height, $type) = @getimagesize($image))) { |
|
60 | 62 | $image = |
61 | 63 | ($type == IMAGETYPE_GIF) ? @imagecreatefromgif($image) : ( |
62 | 64 | ($type == IMAGETYPE_WBMP) ? @imagecreatefromwbmp($image) : ( |
@@ -66,8 +68,9 @@ discard block |
||
66 | 68 | ($type == IMAGETYPE_XBM) ? @imagecreatefromxbm($image) : false |
67 | 69 | ))))); |
68 | 70 | |
69 | - if ($type == IMAGETYPE_PNG) |
|
70 | - imagealphablending($image, false); |
|
71 | + if ($type == IMAGETYPE_PNG) { |
|
72 | + imagealphablending($image, false); |
|
73 | + } |
|
71 | 74 | } |
72 | 75 | |
73 | 76 | $return = ( |
@@ -81,8 +84,9 @@ discard block |
||
81 | 84 | ? array($image, $width, $height) |
82 | 85 | : false; |
83 | 86 | |
84 | - if (($return !== false) && isset($type)) |
|
85 | - $this->type = $type; |
|
87 | + if (($return !== false) && isset($type)) { |
|
88 | + $this->type = $type; |
|
89 | + } |
|
86 | 90 | |
87 | 91 | return $return; |
88 | 92 | } |
@@ -98,20 +102,22 @@ discard block |
||
98 | 102 | * @param integer $bigger_size |
99 | 103 | * @return gd */ |
100 | 104 | |
101 | - public function __construct($image, $bigger_size=null) { |
|
105 | + public function __construct($image, $bigger_size=null) |
|
106 | + { |
|
102 | 107 | $this->image = $this->width = $this->height = null; |
103 | 108 | |
104 | 109 | $image_details = $this->build_image($image); |
105 | 110 | |
106 | - if ($image_details !== false) |
|
107 | - list($this->image, $this->width, $this->height) = $image_details; |
|
108 | - else |
|
109 | - $this->init_error = true; |
|
111 | + if ($image_details !== false) { |
|
112 | + list($this->image, $this->width, $this->height) = $image_details; |
|
113 | + } else { |
|
114 | + $this->init_error = true; |
|
115 | + } |
|
110 | 116 | |
111 | 117 | if (!is_null($this->image) && |
112 | 118 | !is_null($bigger_size) && |
113 | 119 | (preg_match('/^[1-9][0-9]*$/', $bigger_size) !== false) |
114 | - ) { |
|
120 | + ) { |
|
115 | 121 | $image = $this->image; |
116 | 122 | list($width, $height) = $this->get_prop_size($bigger_size); |
117 | 123 | $this->image = imagecreatetruecolor($width, $height); |
@@ -126,21 +132,24 @@ discard block |
||
126 | 132 | /** Returns the GD resource |
127 | 133 | * @return resource */ |
128 | 134 | |
129 | - public function get_image() { |
|
135 | + public function get_image() |
|
136 | + { |
|
130 | 137 | return $this->image; |
131 | 138 | } |
132 | 139 | |
133 | 140 | /** Returns the image width |
134 | 141 | * @return integer */ |
135 | 142 | |
136 | - public function get_width() { |
|
143 | + public function get_width() |
|
144 | + { |
|
137 | 145 | return $this->width; |
138 | 146 | } |
139 | 147 | |
140 | 148 | /** Returns the image height |
141 | 149 | * @return integer */ |
142 | 150 | |
143 | - public function get_height() { |
|
151 | + public function get_height() |
|
152 | + { |
|
144 | 153 | return $this->height; |
145 | 154 | } |
146 | 155 | |
@@ -148,9 +157,12 @@ discard block |
||
148 | 157 | * @param integer $resized_height |
149 | 158 | * @return integer */ |
150 | 159 | |
151 | - public function get_prop_width($resized_height) { |
|
160 | + public function get_prop_width($resized_height) |
|
161 | + { |
|
152 | 162 | $width = intval(($this->width * $resized_height) / $this->height); |
153 | - if (!$width) $width = 1; |
|
163 | + if (!$width) { |
|
164 | + $width = 1; |
|
165 | + } |
|
154 | 166 | return $width; |
155 | 167 | } |
156 | 168 | |
@@ -158,9 +170,12 @@ discard block |
||
158 | 170 | * @param integer $resized_width |
159 | 171 | * @return integer */ |
160 | 172 | |
161 | - public function get_prop_height($resized_width) { |
|
173 | + public function get_prop_height($resized_width) |
|
174 | + { |
|
162 | 175 | $height = intval(($this->height * $resized_width) / $this->width); |
163 | - if (!$height) $height = 1; |
|
176 | + if (!$height) { |
|
177 | + $height = 1; |
|
178 | + } |
|
164 | 179 | return $height; |
165 | 180 | } |
166 | 181 | |
@@ -170,18 +185,20 @@ discard block |
||
170 | 185 | * @param integer $bigger_size |
171 | 186 | * @return array */ |
172 | 187 | |
173 | - public function get_prop_size($bigger_size) { |
|
188 | + public function get_prop_size($bigger_size) |
|
189 | + { |
|
174 | 190 | |
175 | - if ($this->width > $this->height) { |
|
191 | + if ($this->width > $this->height) { |
|
176 | 192 | $width = $bigger_size; |
177 | 193 | $height = $this->get_prop_height($width); |
178 | 194 | |
179 | - } elseif ($this->height > $this->width) { |
|
195 | + } elseif ($this->height > $this->width) { |
|
180 | 196 | $height = $bigger_size; |
181 | 197 | $width = $this->get_prop_width($height); |
182 | 198 | |
183 | - } else |
|
184 | - $width = $height = $bigger_size; |
|
199 | + } else { |
|
200 | + $width = $height = $bigger_size; |
|
201 | + } |
|
185 | 202 | |
186 | 203 | return array($width, $height); |
187 | 204 | } |
@@ -191,9 +208,14 @@ discard block |
||
191 | 208 | * @param integer $height |
192 | 209 | * @return bool */ |
193 | 210 | |
194 | - public function resize($width, $height) { |
|
195 | - if (!$width) $width = 1; |
|
196 | - if (!$height) $height = 1; |
|
211 | + public function resize($width, $height) |
|
212 | + { |
|
213 | + if (!$width) { |
|
214 | + $width = 1; |
|
215 | + } |
|
216 | + if (!$height) { |
|
217 | + $height = 1; |
|
218 | + } |
|
197 | 219 | return ( |
198 | 220 | (false !== ($img = new gd(array($width, $height)))) && |
199 | 221 | $img->imagecopyresampled($this) && |
@@ -208,19 +230,20 @@ discard block |
||
208 | 230 | * @param mixed $src |
209 | 231 | * @return bool */ |
210 | 232 | |
211 | - public function resize_crop($src) { |
|
233 | + public function resize_crop($src) |
|
234 | + { |
|
212 | 235 | $image_details = $this->build_image($src); |
213 | 236 | |
214 | - if ($image_details !== false) { |
|
237 | + if ($image_details !== false) { |
|
215 | 238 | list($src, $src_width, $src_height) = $image_details; |
216 | 239 | |
217 | - if (($src_width / $src_height) > ($this->width / $this->height)) { |
|
240 | + if (($src_width / $src_height) > ($this->width / $this->height)) { |
|
218 | 241 | $src_w = $this->get_prop_width($src_height); |
219 | 242 | $src_h = $src_height; |
220 | 243 | $src_x = intval(($src_width - $src_w) / 2); |
221 | 244 | $src_y = 0; |
222 | 245 | |
223 | - } else { |
|
246 | + } else { |
|
224 | 247 | $src_w = $src_width; |
225 | 248 | $src_h = $this->get_prop_height($src_width); |
226 | 249 | $src_x = 0; |
@@ -229,8 +252,9 @@ discard block |
||
229 | 252 | |
230 | 253 | return imagecopyresampled($this->image, $src, 0, 0, $src_x, $src_y, $this->width, $this->height, $src_w, $src_h); |
231 | 254 | |
232 | - } else |
|
233 | - return false; |
|
255 | + } else { |
|
256 | + return false; |
|
257 | + } |
|
234 | 258 | } |
235 | 259 | |
236 | 260 | /** Resize image to fit in given resolution. Returns TRUE on success or FALSE on failure |
@@ -238,15 +262,22 @@ discard block |
||
238 | 262 | * @param integer $height |
239 | 263 | * @return bool */ |
240 | 264 | |
241 | - public function resize_fit($width, $height) { |
|
242 | - if ((!$width && !$height) || (($width == $this->width) && ($height == $this->height))) |
|
243 | - return true; |
|
244 | - if (!$width || (($height / $width) < ($this->height / $this->width))) |
|
245 | - $width = intval(($this->width * $height) / $this->height); |
|
246 | - elseif (!$height || (($width / $height) < ($this->width / $this->height))) |
|
247 | - $height = intval(($this->height * $width) / $this->width); |
|
248 | - if (!$width) $width = 1; |
|
249 | - if (!$height) $height = 1; |
|
265 | + public function resize_fit($width, $height) |
|
266 | + { |
|
267 | + if ((!$width && !$height) || (($width == $this->width) && ($height == $this->height))) { |
|
268 | + return true; |
|
269 | + } |
|
270 | + if (!$width || (($height / $width) < ($this->height / $this->width))) { |
|
271 | + $width = intval(($this->width * $height) / $this->height); |
|
272 | + } elseif (!$height || (($width / $height) < ($this->width / $this->height))) { |
|
273 | + $height = intval(($this->height * $width) / $this->width); |
|
274 | + } |
|
275 | + if (!$width) { |
|
276 | + $width = 1; |
|
277 | + } |
|
278 | + if (!$height) { |
|
279 | + $height = 1; |
|
280 | + } |
|
250 | 281 | return $this->resize($width, $height); |
251 | 282 | } |
252 | 283 | |
@@ -257,7 +288,8 @@ discard block |
||
257 | 288 | * @param integer $height |
258 | 289 | * @return bool */ |
259 | 290 | |
260 | - public function resize_overflow($width, $height) { |
|
291 | + public function resize_overflow($width, $height) |
|
292 | + { |
|
261 | 293 | |
262 | 294 | $big = (($this->width / $this->height) > ($width / $height)) |
263 | 295 | ? ($this->width * $height) / $this->height |
@@ -266,7 +298,7 @@ discard block |
||
266 | 298 | |
267 | 299 | $return = ($img = new gd($this->image, $big)); |
268 | 300 | |
269 | - if ($return) { |
|
301 | + if ($return) { |
|
270 | 302 | $this->image = $img->get_image(); |
271 | 303 | $this->width = $img->get_width(); |
272 | 304 | $this->height = $img->get_height(); |
@@ -275,7 +307,8 @@ discard block |
||
275 | 307 | return $return; |
276 | 308 | } |
277 | 309 | |
278 | - public function gd_color() { |
|
310 | + public function gd_color() |
|
311 | + { |
|
279 | 312 | $args = func_get_args(); |
280 | 313 | |
281 | 314 | $expr_rgb = '/^rgb\(\s*(\d{1,3})\s*\,\s*(\d{1,3})\s*\,\s*(\d{1,3})\s*\)$/i'; |
@@ -283,22 +316,23 @@ discard block |
||
283 | 316 | $expr_hex2 = '/^\#?([0-9a-f])([0-9a-f])([0-9a-f])$/i'; |
284 | 317 | $expr_byte = '/^([01]?\d?\d|2[0-4]\d|25[0-5])$/'; |
285 | 318 | |
286 | - if (!isset($args[0])) |
|
287 | - return false; |
|
319 | + if (!isset($args[0])) { |
|
320 | + return false; |
|
321 | + } |
|
288 | 322 | |
289 | - if (count($args[0]) == 3) { |
|
323 | + if (count($args[0]) == 3) { |
|
290 | 324 | list($r, $g, $b) = $args[0]; |
291 | 325 | |
292 | - } elseif (preg_match($expr_rgb, $args[0])) { |
|
326 | + } elseif (preg_match($expr_rgb, $args[0])) { |
|
293 | 327 | list($r, $g, $b) = explode(" ", preg_replace($expr_rgb, "$1 $2 $3", $args[0])); |
294 | 328 | |
295 | - } elseif (preg_match($expr_hex1, $args[0])) { |
|
329 | + } elseif (preg_match($expr_hex1, $args[0])) { |
|
296 | 330 | list($r, $g, $b) = explode(" ", preg_replace($expr_hex1, "$1 $2 $3", $args[0])); |
297 | 331 | $r = hexdec($r); |
298 | 332 | $g = hexdec($g); |
299 | 333 | $b = hexdec($b); |
300 | 334 | |
301 | - } elseif (preg_match($expr_hex2, $args[0])) { |
|
335 | + } elseif (preg_match($expr_hex2, $args[0])) { |
|
302 | 336 | list($r, $g, $b) = explode(" ", preg_replace($expr_hex2, "$1$1 $2$2 $3$3", $args[0])); |
303 | 337 | $r = hexdec($r); |
304 | 338 | $g = hexdec($g); |
@@ -308,16 +342,18 @@ discard block |
||
308 | 342 | preg_match($expr_byte, $args[0]) && |
309 | 343 | preg_match($expr_byte, $args[1]) && |
310 | 344 | preg_match($expr_byte, $args[2]) |
311 | - ) { |
|
345 | + ) { |
|
312 | 346 | list($r, $g, $b) = $args; |
313 | 347 | |
314 | - } else |
|
315 | - return false; |
|
348 | + } else { |
|
349 | + return false; |
|
350 | + } |
|
316 | 351 | |
317 | 352 | return imagecolorallocate($this->image, $r, $g, $b); |
318 | 353 | } |
319 | 354 | |
320 | - public function fill_color($color) { |
|
355 | + public function fill_color($color) |
|
356 | + { |
|
321 | 357 | return $this->imagefilledrectangle(0, 0, $this->width - 1, $this->height - 1, $color); |
322 | 358 | } |
323 | 359 | |
@@ -330,20 +366,29 @@ discard block |
||
330 | 366 | $src_x=0, $src_y=0, |
331 | 367 | $dst_w=null, $dst_h=null, |
332 | 368 | $src_w=null, $src_h=null |
333 | - ) { |
|
369 | + ) { |
|
334 | 370 | $image_details = $this->build_image($src); |
335 | 371 | |
336 | - if ($image_details !== false) { |
|
372 | + if ($image_details !== false) { |
|
337 | 373 | list($src, $src_width, $src_height) = $image_details; |
338 | 374 | |
339 | - if (is_null($dst_w)) $dst_w = $this->width - $dst_x; |
|
340 | - if (is_null($dst_h)) $dst_h = $this->height - $dst_y; |
|
341 | - if (is_null($src_w)) $src_w = $src_width - $src_x; |
|
342 | - if (is_null($src_h)) $src_h = $src_height - $src_y; |
|
375 | + if (is_null($dst_w)) { |
|
376 | + $dst_w = $this->width - $dst_x; |
|
377 | + } |
|
378 | + if (is_null($dst_h)) { |
|
379 | + $dst_h = $this->height - $dst_y; |
|
380 | + } |
|
381 | + if (is_null($src_w)) { |
|
382 | + $src_w = $src_width - $src_x; |
|
383 | + } |
|
384 | + if (is_null($src_h)) { |
|
385 | + $src_h = $src_height - $src_y; |
|
386 | + } |
|
343 | 387 | return imagecopy($this->image, $src, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h); |
344 | 388 | |
345 | - } else |
|
346 | - return false; |
|
389 | + } else { |
|
390 | + return false; |
|
391 | + } |
|
347 | 392 | } |
348 | 393 | |
349 | 394 | public function imagecopyresampled( |
@@ -352,16 +397,24 @@ discard block |
||
352 | 397 | $src_x=0, $src_y=0, |
353 | 398 | $dst_w=null, $dst_h=null, |
354 | 399 | $src_w=null, $src_h=null |
355 | - ) { |
|
400 | + ) { |
|
356 | 401 | $image_details = $this->build_image($src); |
357 | 402 | |
358 | - if ($image_details !== false) { |
|
403 | + if ($image_details !== false) { |
|
359 | 404 | list($src, $src_width, $src_height) = $image_details; |
360 | 405 | |
361 | - if (is_null($dst_w)) $dst_w = $this->width - $dst_x; |
|
362 | - if (is_null($dst_h)) $dst_h = $this->height - $dst_y; |
|
363 | - if (is_null($src_w)) $src_w = $src_width - $src_x; |
|
364 | - if (is_null($src_h)) $src_h = $src_height - $src_y; |
|
406 | + if (is_null($dst_w)) { |
|
407 | + $dst_w = $this->width - $dst_x; |
|
408 | + } |
|
409 | + if (is_null($dst_h)) { |
|
410 | + $dst_h = $this->height - $dst_y; |
|
411 | + } |
|
412 | + if (is_null($src_w)) { |
|
413 | + $src_w = $src_width - $src_x; |
|
414 | + } |
|
415 | + if (is_null($src_h)) { |
|
416 | + $src_h = $src_height - $src_y; |
|
417 | + } |
|
365 | 418 | imagealphablending($this->image, false); |
366 | 419 | imagesavealpha($this->image,true); |
367 | 420 | |
@@ -372,7 +425,7 @@ discard block |
||
372 | 425 | |
373 | 426 | $transindex = imagecolortransparent($src); |
374 | 427 | $palletsize = imagecolorstotal($src); |
375 | - if($transindex >= 0 && $transindex < $palletsize) { |
|
428 | + if($transindex >= 0 && $transindex < $palletsize) { |
|
376 | 429 | $transcol = imagecolorsforindex($src, $transindex); |
377 | 430 | |
378 | 431 | /*** end gif transparent fix ***/ |
@@ -381,44 +434,56 @@ discard block |
||
381 | 434 | imagefilledrectangle($this->image, 0, 0, $dst_w, $dst_h, $transindex); |
382 | 435 | imagecopyresampled($this->image, $src, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h); |
383 | 436 | 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); |
|
437 | + for($y=0; $y<$dst_h; ++$y) { |
|
438 | + for($x=0; |
|
439 | + } |
|
440 | + $x<$dst_w; ++$x) { |
|
441 | + if(((imagecolorat($this->image, $x, $y)>>24) & 0x7F) >= 100) imagesetpixel($this->image, $x, $y, $transindex); |
|
442 | + } |
|
387 | 443 | imagetruecolortopalette($this->image, true, 255); |
388 | - } |
|
389 | - else { |
|
444 | + } else { |
|
390 | 445 | $transparent = imagecolorallocatealpha($this->image, 255, 255, 255, 127); |
391 | 446 | imagefilledrectangle($this->image, 0, 0, $dst_w, $dst_h, $transparent); |
392 | 447 | imagecopyresampled($this->image, $src, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h); |
393 | 448 | } |
394 | 449 | return $this->image; |
395 | 450 | |
396 | - } else |
|
397 | - return false; |
|
451 | + } else { |
|
452 | + return false; |
|
453 | + } |
|
398 | 454 | } |
399 | 455 | |
400 | - public function imagefilledrectangle($x1, $y1, $x2, $y2, $color) { |
|
456 | + public function imagefilledrectangle($x1, $y1, $x2, $y2, $color) |
|
457 | + { |
|
401 | 458 | $color = $this->gd_color($color); |
402 | - if ($color === false) return false; |
|
459 | + if ($color === false) { |
|
460 | + return false; |
|
461 | + } |
|
403 | 462 | return imagefilledrectangle($this->image, $x1, $y1, $x2, $y2, $color); |
404 | 463 | } |
405 | 464 | |
406 | - public function imagepng($filename=null, $quality=null, $filters=null) { |
|
407 | - if (is_null($filename) && !headers_sent()) |
|
408 | - header("Content-Type: image/png"); |
|
465 | + public function imagepng($filename=null, $quality=null, $filters=null) |
|
466 | + { |
|
467 | + if (is_null($filename) && !headers_sent()) { |
|
468 | + header("Content-Type: image/png"); |
|
469 | + } |
|
409 | 470 | @imagesavealpha($this->image, true); |
410 | 471 | return imagepng($this->image, $filename, $quality, $filters); |
411 | 472 | } |
412 | 473 | |
413 | - public function imagejpeg($filename=null, $quality=75) { |
|
414 | - if (is_null($filename) && !headers_sent()) |
|
415 | - header("Content-Type: image/jpeg"); |
|
474 | + public function imagejpeg($filename=null, $quality=75) |
|
475 | + { |
|
476 | + if (is_null($filename) && !headers_sent()) { |
|
477 | + header("Content-Type: image/jpeg"); |
|
478 | + } |
|
416 | 479 | return imagejpeg($this->image, $filename, $quality); |
417 | 480 | } |
418 | 481 | |
419 | - public function imagegif($filename=null) { |
|
420 | - if (is_null($filename) && !headers_sent()) |
|
421 | - header("Content-Type: image/gif"); |
|
482 | + public function imagegif($filename=null) |
|
483 | + { |
|
484 | + if (is_null($filename) && !headers_sent()) { |
|
485 | + header("Content-Type: image/gif"); |
|
486 | + } |
|
422 | 487 | @imagesavealpha($this->image, true); |
423 | 488 | return imagegif($this->image, $filename); |
424 | 489 | } |
@@ -23,11 +23,13 @@ |
||
23 | 23 | |
24 | 24 | foreach ($files as $file) { |
25 | 25 | $fmtime = filemtime($file); |
26 | - if (!isset($mtime) || ($fmtime > $mtime)) |
|
27 | - $mtime = $fmtime; |
|
28 | -} |
|
26 | + if (!isset($mtime) || ($fmtime > $mtime)) { |
|
27 | + $mtime = $fmtime; |
|
28 | + } |
|
29 | + } |
|
29 | 30 | |
30 | 31 | httpCache::checkMTime($mtime); |
31 | 32 | header("Content-Type: text/javascript"); |
32 | -foreach ($files as $file) |
|
33 | +foreach ($files as $file) { |
|
33 | 34 | require $file; |
35 | +} |