@@ -7,187 +7,187 @@ discard block |
||
7 | 7 | |
8 | 8 | class DBAPI { |
9 | 9 | |
10 | - var $conn; |
|
11 | - var $config; |
|
12 | - var $lastQuery; |
|
13 | - var $isConnected; |
|
10 | + var $conn; |
|
11 | + var $config; |
|
12 | + var $lastQuery; |
|
13 | + var $isConnected; |
|
14 | 14 | |
15 | - /** |
|
16 | - * @name: DBAPI |
|
17 | - * |
|
18 | - */ |
|
19 | - function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET') { |
|
20 | - $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
|
21 | - $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
|
22 | - $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
|
23 | - $this->config['pass'] = $pwd ? $pwd : $GLOBALS['database_password']; |
|
24 | - $this->config['charset'] = $charset ? $charset : $GLOBALS['database_connection_charset']; |
|
25 | - $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
|
26 | - $this->config['table_prefix'] = ($pre !== NULL) ? $pre : $GLOBALS['table_prefix']; |
|
27 | - $this->initDataTypes(); |
|
28 | - } |
|
15 | + /** |
|
16 | + * @name: DBAPI |
|
17 | + * |
|
18 | + */ |
|
19 | + function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET') { |
|
20 | + $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
|
21 | + $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
|
22 | + $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
|
23 | + $this->config['pass'] = $pwd ? $pwd : $GLOBALS['database_password']; |
|
24 | + $this->config['charset'] = $charset ? $charset : $GLOBALS['database_connection_charset']; |
|
25 | + $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
|
26 | + $this->config['table_prefix'] = ($pre !== NULL) ? $pre : $GLOBALS['table_prefix']; |
|
27 | + $this->initDataTypes(); |
|
28 | + } |
|
29 | 29 | |
30 | - /** |
|
31 | - * @name: initDataTypes |
|
32 | - * @desc: called in the constructor to set up arrays containing the types |
|
33 | - * of database fields that can be used with specific PHP types |
|
34 | - */ |
|
35 | - function initDataTypes() { |
|
36 | - $this->dataTypes['numeric'] = array ( |
|
37 | - 'INT', |
|
38 | - 'INTEGER', |
|
39 | - 'TINYINT', |
|
40 | - 'BOOLEAN', |
|
41 | - 'DECIMAL', |
|
42 | - 'DEC', |
|
43 | - 'NUMERIC', |
|
44 | - 'FLOAT', |
|
45 | - 'DOUBLE PRECISION', |
|
46 | - 'REAL', |
|
47 | - 'SMALLINT', |
|
48 | - 'MEDIUMINT', |
|
49 | - 'BIGINT', |
|
50 | - 'BIT' |
|
51 | - ); |
|
52 | - $this->dataTypes['string'] = array ( |
|
53 | - 'CHAR', |
|
54 | - 'VARCHAR', |
|
55 | - 'BINARY', |
|
56 | - 'VARBINARY', |
|
57 | - 'TINYBLOB', |
|
58 | - 'BLOB', |
|
59 | - 'MEDIUMBLOB', |
|
60 | - 'LONGBLOB', |
|
61 | - 'TINYTEXT', |
|
62 | - 'TEXT', |
|
63 | - 'MEDIUMTEXT', |
|
64 | - 'LONGTEXT', |
|
65 | - 'ENUM', |
|
66 | - 'SET' |
|
67 | - ); |
|
68 | - $this->dataTypes['date'] = array ( |
|
69 | - 'DATE', |
|
70 | - 'DATETIME', |
|
71 | - 'TIMESTAMP', |
|
72 | - 'TIME', |
|
73 | - 'YEAR' |
|
74 | - ); |
|
75 | - } |
|
30 | + /** |
|
31 | + * @name: initDataTypes |
|
32 | + * @desc: called in the constructor to set up arrays containing the types |
|
33 | + * of database fields that can be used with specific PHP types |
|
34 | + */ |
|
35 | + function initDataTypes() { |
|
36 | + $this->dataTypes['numeric'] = array ( |
|
37 | + 'INT', |
|
38 | + 'INTEGER', |
|
39 | + 'TINYINT', |
|
40 | + 'BOOLEAN', |
|
41 | + 'DECIMAL', |
|
42 | + 'DEC', |
|
43 | + 'NUMERIC', |
|
44 | + 'FLOAT', |
|
45 | + 'DOUBLE PRECISION', |
|
46 | + 'REAL', |
|
47 | + 'SMALLINT', |
|
48 | + 'MEDIUMINT', |
|
49 | + 'BIGINT', |
|
50 | + 'BIT' |
|
51 | + ); |
|
52 | + $this->dataTypes['string'] = array ( |
|
53 | + 'CHAR', |
|
54 | + 'VARCHAR', |
|
55 | + 'BINARY', |
|
56 | + 'VARBINARY', |
|
57 | + 'TINYBLOB', |
|
58 | + 'BLOB', |
|
59 | + 'MEDIUMBLOB', |
|
60 | + 'LONGBLOB', |
|
61 | + 'TINYTEXT', |
|
62 | + 'TEXT', |
|
63 | + 'MEDIUMTEXT', |
|
64 | + 'LONGTEXT', |
|
65 | + 'ENUM', |
|
66 | + 'SET' |
|
67 | + ); |
|
68 | + $this->dataTypes['date'] = array ( |
|
69 | + 'DATE', |
|
70 | + 'DATETIME', |
|
71 | + 'TIMESTAMP', |
|
72 | + 'TIME', |
|
73 | + 'YEAR' |
|
74 | + ); |
|
75 | + } |
|
76 | 76 | |
77 | - /** |
|
78 | - * @name: connect |
|
79 | - * |
|
80 | - */ |
|
81 | - function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0) { |
|
82 | - global $modx; |
|
83 | - $uid = $uid ? $uid : $this->config['user']; |
|
84 | - $pwd = $pwd ? $pwd : $this->config['pass']; |
|
85 | - $host = $host ? $host : $this->config['host']; |
|
86 | - $dbase = $dbase ? $dbase : $this->config['dbase']; |
|
87 | - $charset = $this->config['charset']; |
|
88 | - $connection_method = $this->config['connection_method']; |
|
89 | - $tstart = $modx->getMicroTime(); |
|
90 | - $safe_count = 0; |
|
91 | - while(!$this->conn && $safe_count<3) |
|
92 | - { |
|
93 | - if($persist!=0) $this->conn = mysql_pconnect($host, $uid, $pwd); |
|
94 | - else $this->conn = mysql_connect($host, $uid, $pwd, true); |
|
77 | + /** |
|
78 | + * @name: connect |
|
79 | + * |
|
80 | + */ |
|
81 | + function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0) { |
|
82 | + global $modx; |
|
83 | + $uid = $uid ? $uid : $this->config['user']; |
|
84 | + $pwd = $pwd ? $pwd : $this->config['pass']; |
|
85 | + $host = $host ? $host : $this->config['host']; |
|
86 | + $dbase = $dbase ? $dbase : $this->config['dbase']; |
|
87 | + $charset = $this->config['charset']; |
|
88 | + $connection_method = $this->config['connection_method']; |
|
89 | + $tstart = $modx->getMicroTime(); |
|
90 | + $safe_count = 0; |
|
91 | + while(!$this->conn && $safe_count<3) |
|
92 | + { |
|
93 | + if($persist!=0) $this->conn = mysql_pconnect($host, $uid, $pwd); |
|
94 | + else $this->conn = mysql_connect($host, $uid, $pwd, true); |
|
95 | 95 | |
96 | - if(!$this->conn) |
|
97 | - { |
|
96 | + if(!$this->conn) |
|
97 | + { |
|
98 | 98 | if(isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0') |
99 | 99 | { |
100 | - if($modx->config['send_errormail'] <= 2) |
|
101 | - { |
|
102 | - $logtitle = 'Failed to create the database connection!'; |
|
103 | - $request_uri = $modx->htmlspecialchars($_SERVER['REQUEST_URI']); |
|
104 | - $ua = $modx->htmlspecialchars($_SERVER['HTTP_USER_AGENT']); |
|
105 | - $referer = $modx->htmlspecialchars($_SERVER['HTTP_REFERER']); |
|
100 | + if($modx->config['send_errormail'] <= 2) |
|
101 | + { |
|
102 | + $logtitle = 'Failed to create the database connection!'; |
|
103 | + $request_uri = $modx->htmlspecialchars($_SERVER['REQUEST_URI']); |
|
104 | + $ua = $modx->htmlspecialchars($_SERVER['HTTP_USER_AGENT']); |
|
105 | + $referer = $modx->htmlspecialchars($_SERVER['HTTP_REFERER']); |
|
106 | 106 | |
107 | - $modx->sendmail(array( |
|
108 | - 'subject' => 'Missing to create the database connection! from ' . $modx->config['site_name'], |
|
109 | - 'body' => "{$logtitle}\n{$request_uri}\n{$ua}\n{$referer}", |
|
110 | - 'type' => 'text') |
|
111 | - ); |
|
112 | - } |
|
107 | + $modx->sendmail(array( |
|
108 | + 'subject' => 'Missing to create the database connection! from ' . $modx->config['site_name'], |
|
109 | + 'body' => "{$logtitle}\n{$request_uri}\n{$ua}\n{$referer}", |
|
110 | + 'type' => 'text') |
|
111 | + ); |
|
112 | + } |
|
113 | 113 | } |
114 | 114 | sleep(1); |
115 | 115 | $safe_count++; |
116 | - } |
|
117 | - } |
|
118 | - if (!$this->conn) { |
|
119 | - $modx->messageQuit("Failed to create the database connection!"); |
|
120 | - exit; |
|
121 | - } else { |
|
122 | - $dbase = trim($dbase,'`'); // remove the `` chars |
|
123 | - if (!@ mysql_select_db($dbase, $this->conn)) { |
|
116 | + } |
|
117 | + } |
|
118 | + if (!$this->conn) { |
|
119 | + $modx->messageQuit("Failed to create the database connection!"); |
|
120 | + exit; |
|
121 | + } else { |
|
122 | + $dbase = trim($dbase,'`'); // remove the `` chars |
|
123 | + if (!@ mysql_select_db($dbase, $this->conn)) { |
|
124 | 124 | $modx->messageQuit("Failed to select the database '" . $dbase . "'!"); |
125 | 125 | exit; |
126 | - } |
|
127 | - @mysql_query("{$connection_method} {$charset}", $this->conn); |
|
128 | - $tend = $modx->getMicroTime(); |
|
129 | - $totaltime = $tend - $tstart; |
|
130 | - if ($modx->dumpSQL) { |
|
126 | + } |
|
127 | + @mysql_query("{$connection_method} {$charset}", $this->conn); |
|
128 | + $tend = $modx->getMicroTime(); |
|
129 | + $totaltime = $tend - $tstart; |
|
130 | + if ($modx->dumpSQL) { |
|
131 | 131 | $modx->queryCode .= "<fieldset style='text-align:left'><legend>Database connection</legend>" . sprintf("Database connection was created in %2.4f s", $totaltime) . "</fieldset><br />"; |
132 | - } |
|
132 | + } |
|
133 | 133 | if (function_exists('mysql_set_charset')) { |
134 | 134 | mysql_set_charset($this->config['charset']); |
135 | 135 | } else { |
136 | 136 | @mysql_query("SET NAMES {$this->config['charset']}", $this->conn); |
137 | 137 | } |
138 | - $this->isConnected = true; |
|
139 | - // FIXME (Fixed by line below): |
|
140 | - // this->queryTime = this->queryTime + $totaltime; |
|
141 | - $modx->queryTime += $totaltime; |
|
142 | - } |
|
143 | - } |
|
138 | + $this->isConnected = true; |
|
139 | + // FIXME (Fixed by line below): |
|
140 | + // this->queryTime = this->queryTime + $totaltime; |
|
141 | + $modx->queryTime += $totaltime; |
|
142 | + } |
|
143 | + } |
|
144 | 144 | |
145 | - /** |
|
146 | - * @name: disconnect |
|
147 | - * |
|
148 | - */ |
|
149 | - function disconnect() { |
|
150 | - @ mysql_close($this->conn); |
|
151 | - $this->conn = null; |
|
152 | - $this->isConnected = false; |
|
153 | - } |
|
145 | + /** |
|
146 | + * @name: disconnect |
|
147 | + * |
|
148 | + */ |
|
149 | + function disconnect() { |
|
150 | + @ mysql_close($this->conn); |
|
151 | + $this->conn = null; |
|
152 | + $this->isConnected = false; |
|
153 | + } |
|
154 | 154 | |
155 | - function escape($s, $safecount=0) { |
|
155 | + function escape($s, $safecount=0) { |
|
156 | 156 | |
157 | - $safecount++; |
|
158 | - if(1000<$safecount) exit("Too many loops '{$safecount}'"); |
|
157 | + $safecount++; |
|
158 | + if(1000<$safecount) exit("Too many loops '{$safecount}'"); |
|
159 | 159 | |
160 | - if (empty ($this->conn) || !is_resource($this->conn)) { |
|
161 | - $this->connect(); |
|
162 | - } |
|
160 | + if (empty ($this->conn) || !is_resource($this->conn)) { |
|
161 | + $this->connect(); |
|
162 | + } |
|
163 | 163 | |
164 | - if(is_array($s)) { |
|
165 | - if(count($s) === 0) $s = ''; |
|
166 | - else { |
|
167 | - foreach($s as $i=>$v) { |
|
168 | - $s[$i] = $this->escape($v,$safecount); |
|
169 | - } |
|
170 | - } |
|
171 | - } |
|
172 | - else $s = mysql_real_escape_string($s, $this->conn); |
|
173 | - return $s; |
|
174 | - } |
|
164 | + if(is_array($s)) { |
|
165 | + if(count($s) === 0) $s = ''; |
|
166 | + else { |
|
167 | + foreach($s as $i=>$v) { |
|
168 | + $s[$i] = $this->escape($v,$safecount); |
|
169 | + } |
|
170 | + } |
|
171 | + } |
|
172 | + else $s = mysql_real_escape_string($s, $this->conn); |
|
173 | + return $s; |
|
174 | + } |
|
175 | 175 | |
176 | - /** |
|
177 | - * @name: query |
|
178 | - * @desc: Mainly for internal use. |
|
179 | - * Developers should use select, update, insert, delete where possible |
|
180 | - */ |
|
181 | - function query($sql,$watchError=true) { |
|
182 | - global $modx; |
|
183 | - if (empty ($this->conn) || !is_resource($this->conn)) { |
|
184 | - $this->connect(); |
|
185 | - } |
|
186 | - $tstart = $modx->getMicroTime(); |
|
187 | - if(is_array($sql)) $sql = join("\n", $sql); |
|
188 | - $this->lastQuery = $sql; |
|
189 | - if (!$result = @ mysql_query($sql, $this->conn)) { |
|
190 | - if(!$watchError) return; |
|
176 | + /** |
|
177 | + * @name: query |
|
178 | + * @desc: Mainly for internal use. |
|
179 | + * Developers should use select, update, insert, delete where possible |
|
180 | + */ |
|
181 | + function query($sql,$watchError=true) { |
|
182 | + global $modx; |
|
183 | + if (empty ($this->conn) || !is_resource($this->conn)) { |
|
184 | + $this->connect(); |
|
185 | + } |
|
186 | + $tstart = $modx->getMicroTime(); |
|
187 | + if(is_array($sql)) $sql = join("\n", $sql); |
|
188 | + $this->lastQuery = $sql; |
|
189 | + if (!$result = @ mysql_query($sql, $this->conn)) { |
|
190 | + if(!$watchError) return; |
|
191 | 191 | switch(mysql_errno()) { |
192 | 192 | case 1054: |
193 | 193 | case 1060: |
@@ -198,11 +198,11 @@ discard block |
||
198 | 198 | default: |
199 | 199 | $modx->messageQuit('Execution of a query to the database failed - ' . $this->getLastError(), $sql); |
200 | 200 | } |
201 | - } else { |
|
202 | - $tend = $modx->getMicroTime(); |
|
203 | - $totaltime = $tend - $tstart; |
|
204 | - $modx->queryTime = $modx->queryTime + $totaltime; |
|
205 | - if ($modx->dumpSQL) { |
|
201 | + } else { |
|
202 | + $tend = $modx->getMicroTime(); |
|
203 | + $totaltime = $tend - $tstart; |
|
204 | + $modx->queryTime = $modx->queryTime + $totaltime; |
|
205 | + if ($modx->dumpSQL) { |
|
206 | 206 | $debug = debug_backtrace(); |
207 | 207 | array_shift($debug); |
208 | 208 | $debug_path = array(); |
@@ -217,124 +217,124 @@ discard block |
||
217 | 217 | else $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
218 | 218 | $modx->queryCode .= 'Functions Path => ' . $debug_path . '<br>'; |
219 | 219 | $modx->queryCode .= "</fieldset><br />"; |
220 | - } |
|
221 | - $modx->executedQueries = $modx->executedQueries + 1; |
|
222 | - return $result; |
|
223 | - } |
|
224 | - } |
|
220 | + } |
|
221 | + $modx->executedQueries = $modx->executedQueries + 1; |
|
222 | + return $result; |
|
223 | + } |
|
224 | + } |
|
225 | 225 | |
226 | - /** |
|
227 | - * @name: delete |
|
228 | - * |
|
229 | - */ |
|
230 | - function delete($from, $where='', $orderby='', $limit = '') { |
|
231 | - global $modx; |
|
232 | - if (!$from) |
|
233 | - $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
|
234 | - else { |
|
235 | - $from = $this->replaceFullTableName($from); |
|
236 | - $where = trim($where); |
|
237 | - $orderby = trim($orderby); |
|
238 | - $limit = trim($limit); |
|
239 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
240 | - if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
|
241 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
242 | - return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
|
243 | - } |
|
244 | - } |
|
226 | + /** |
|
227 | + * @name: delete |
|
228 | + * |
|
229 | + */ |
|
230 | + function delete($from, $where='', $orderby='', $limit = '') { |
|
231 | + global $modx; |
|
232 | + if (!$from) |
|
233 | + $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
|
234 | + else { |
|
235 | + $from = $this->replaceFullTableName($from); |
|
236 | + $where = trim($where); |
|
237 | + $orderby = trim($orderby); |
|
238 | + $limit = trim($limit); |
|
239 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
240 | + if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
|
241 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
242 | + return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
|
243 | + } |
|
244 | + } |
|
245 | 245 | |
246 | - /** |
|
247 | - * @name: select |
|
248 | - * |
|
249 | - */ |
|
250 | - function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") { |
|
251 | - global $modx; |
|
246 | + /** |
|
247 | + * @name: select |
|
248 | + * |
|
249 | + */ |
|
250 | + function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") { |
|
251 | + global $modx; |
|
252 | 252 | |
253 | - if(is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
254 | - if(is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
255 | - if(is_array($where)) $where = join(' ', $where); |
|
253 | + if(is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
254 | + if(is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
255 | + if(is_array($where)) $where = join(' ', $where); |
|
256 | 256 | |
257 | - if (!$from) { |
|
258 | - $modx->messageQuit("Empty \$from parameters in DBAPI::select()."); |
|
259 | - exit; |
|
260 | - } |
|
257 | + if (!$from) { |
|
258 | + $modx->messageQuit("Empty \$from parameters in DBAPI::select()."); |
|
259 | + exit; |
|
260 | + } |
|
261 | 261 | |
262 | - $fields = $this->replaceFullTableName($fields); |
|
263 | - $from = $this->replaceFullTableName($from); |
|
264 | - $where = trim($where); |
|
265 | - $orderby = trim($orderby); |
|
266 | - $limit = trim($limit); |
|
267 | - if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
|
268 | - if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
|
269 | - if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
270 | - return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
|
271 | - } |
|
262 | + $fields = $this->replaceFullTableName($fields); |
|
263 | + $from = $this->replaceFullTableName($from); |
|
264 | + $where = trim($where); |
|
265 | + $orderby = trim($orderby); |
|
266 | + $limit = trim($limit); |
|
267 | + if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
|
268 | + if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
|
269 | + if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
270 | + return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
|
271 | + } |
|
272 | 272 | |
273 | - /** |
|
274 | - * @name: update |
|
275 | - * |
|
276 | - */ |
|
277 | - function update($fields, $table, $where = "") { |
|
278 | - global $modx; |
|
279 | - if (!$table) |
|
280 | - $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
|
281 | - else { |
|
282 | - $table = $this->replaceFullTableName($table); |
|
283 | - if (is_array($fields)) { |
|
284 | - foreach ($fields as $key => $value) { |
|
285 | - if(is_null($value) || strtolower($value) === 'null'){ |
|
286 | - $flds = 'NULL'; |
|
287 | - }else{ |
|
288 | - $flds = "'" . $value . "'"; |
|
289 | - } |
|
290 | - $fields[$key] = "`{$key}` = ".$flds; |
|
291 | - } |
|
273 | + /** |
|
274 | + * @name: update |
|
275 | + * |
|
276 | + */ |
|
277 | + function update($fields, $table, $where = "") { |
|
278 | + global $modx; |
|
279 | + if (!$table) |
|
280 | + $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
|
281 | + else { |
|
282 | + $table = $this->replaceFullTableName($table); |
|
283 | + if (is_array($fields)) { |
|
284 | + foreach ($fields as $key => $value) { |
|
285 | + if(is_null($value) || strtolower($value) === 'null'){ |
|
286 | + $flds = 'NULL'; |
|
287 | + }else{ |
|
288 | + $flds = "'" . $value . "'"; |
|
289 | + } |
|
290 | + $fields[$key] = "`{$key}` = ".$flds; |
|
291 | + } |
|
292 | 292 | $fields = implode(",", $fields); |
293 | - } |
|
294 | - $where = trim($where); |
|
295 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
296 | - return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
|
297 | - } |
|
298 | - } |
|
293 | + } |
|
294 | + $where = trim($where); |
|
295 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
296 | + return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
|
297 | + } |
|
298 | + } |
|
299 | 299 | |
300 | - /** |
|
301 | - * @name: insert |
|
302 | - * @desc: returns either last id inserted or the result from the query |
|
303 | - */ |
|
304 | - function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") { |
|
305 | - global $modx; |
|
306 | - if (!$intotable) |
|
307 | - $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
|
308 | - else { |
|
309 | - $intotable = $this->replaceFullTableName($intotable); |
|
310 | - if (!is_array($fields)) { |
|
300 | + /** |
|
301 | + * @name: insert |
|
302 | + * @desc: returns either last id inserted or the result from the query |
|
303 | + */ |
|
304 | + function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") { |
|
305 | + global $modx; |
|
306 | + if (!$intotable) |
|
307 | + $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
|
308 | + else { |
|
309 | + $intotable = $this->replaceFullTableName($intotable); |
|
310 | + if (!is_array($fields)) { |
|
311 | 311 | $this->query("INSERT INTO {$intotable} {$fields}"); |
312 | - } else { |
|
312 | + } else { |
|
313 | 313 | if (empty($fromtable)) { |
314 | - $fields = "(`".implode("`, `", array_keys($fields))."`) VALUES('".implode("', '", array_values($fields))."')"; |
|
315 | - $rt = $this->query("INSERT INTO {$intotable} {$fields}"); |
|
314 | + $fields = "(`".implode("`, `", array_keys($fields))."`) VALUES('".implode("', '", array_values($fields))."')"; |
|
315 | + $rt = $this->query("INSERT INTO {$intotable} {$fields}"); |
|
316 | 316 | } else { |
317 | - if (version_compare($this->getVersion(),"4.0.14")>=0) { |
|
318 | - $fromtable = $this->replaceFullTableName($fromtable); |
|
319 | - $fields = "(".implode(",", array_keys($fields)).")"; |
|
320 | - $where = trim($where); |
|
321 | - $limit = trim($limit); |
|
322 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
323 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
324 | - $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
|
325 | - } else { |
|
326 | - $ds = $this->select($fromfields, $fromtable, $where, '', $limit); |
|
327 | - while ($row = $this->getRow($ds)) { |
|
328 | - $fields = "(".implode(",", array_keys($fields)).") VALUES('".implode("', '", $row)."')"; |
|
329 | - $rt = $this->query("INSERT INTO {$intotable} {$fields}"); |
|
330 | - } |
|
331 | - } |
|
317 | + if (version_compare($this->getVersion(),"4.0.14")>=0) { |
|
318 | + $fromtable = $this->replaceFullTableName($fromtable); |
|
319 | + $fields = "(".implode(",", array_keys($fields)).")"; |
|
320 | + $where = trim($where); |
|
321 | + $limit = trim($limit); |
|
322 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
323 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
324 | + $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
|
325 | + } else { |
|
326 | + $ds = $this->select($fromfields, $fromtable, $where, '', $limit); |
|
327 | + while ($row = $this->getRow($ds)) { |
|
328 | + $fields = "(".implode(",", array_keys($fields)).") VALUES('".implode("', '", $row)."')"; |
|
329 | + $rt = $this->query("INSERT INTO {$intotable} {$fields}"); |
|
330 | + } |
|
331 | + } |
|
332 | + } |
|
332 | 333 | } |
333 | - } |
|
334 | - if (($lid = $this->getInsertId())===false) $modx->messageQuit("Couldn't get last insert key!"); |
|
335 | - return $lid; |
|
336 | - } |
|
337 | - } |
|
334 | + if (($lid = $this->getInsertId())===false) $modx->messageQuit("Couldn't get last insert key!"); |
|
335 | + return $lid; |
|
336 | + } |
|
337 | + } |
|
338 | 338 | |
339 | 339 | function save($fields, $table, $where='') { |
340 | 340 | |
@@ -346,277 +346,277 @@ discard block |
||
346 | 346 | else return $this->update($fields, $table, $where); |
347 | 347 | } |
348 | 348 | |
349 | - /** |
|
350 | - * @name: isResult |
|
351 | - * |
|
352 | - */ |
|
353 | - function isResult($rs) { |
|
354 | - return is_resource($rs); |
|
355 | - } |
|
349 | + /** |
|
350 | + * @name: isResult |
|
351 | + * |
|
352 | + */ |
|
353 | + function isResult($rs) { |
|
354 | + return is_resource($rs); |
|
355 | + } |
|
356 | 356 | |
357 | - /** |
|
358 | - * @name: freeResult |
|
359 | - * |
|
360 | - */ |
|
361 | - function freeResult($rs) { |
|
362 | - mysql_free_result($rs); |
|
363 | - } |
|
357 | + /** |
|
358 | + * @name: freeResult |
|
359 | + * |
|
360 | + */ |
|
361 | + function freeResult($rs) { |
|
362 | + mysql_free_result($rs); |
|
363 | + } |
|
364 | 364 | |
365 | - /** |
|
366 | - * @name: numFields |
|
367 | - * |
|
368 | - */ |
|
369 | - function numFields($rs) { |
|
370 | - return mysql_num_fields($rs); |
|
371 | - } |
|
365 | + /** |
|
366 | + * @name: numFields |
|
367 | + * |
|
368 | + */ |
|
369 | + function numFields($rs) { |
|
370 | + return mysql_num_fields($rs); |
|
371 | + } |
|
372 | 372 | |
373 | - /** |
|
374 | - * @name: fieldName |
|
375 | - * |
|
376 | - */ |
|
377 | - function fieldName($rs,$col=0) { |
|
378 | - return mysql_field_name($rs,$col); |
|
379 | - } |
|
373 | + /** |
|
374 | + * @name: fieldName |
|
375 | + * |
|
376 | + */ |
|
377 | + function fieldName($rs,$col=0) { |
|
378 | + return mysql_field_name($rs,$col); |
|
379 | + } |
|
380 | 380 | |
381 | 381 | /** |
382 | - * @name: selectDb |
|
383 | - * |
|
384 | - */ |
|
385 | - function selectDb($name) { |
|
386 | - mysql_select_db($name); |
|
387 | - } |
|
382 | + * @name: selectDb |
|
383 | + * |
|
384 | + */ |
|
385 | + function selectDb($name) { |
|
386 | + mysql_select_db($name); |
|
387 | + } |
|
388 | 388 | |
389 | 389 | |
390 | - /** |
|
391 | - * @name: getInsertId |
|
392 | - * |
|
393 | - */ |
|
394 | - function getInsertId($conn=NULL) { |
|
395 | - if( !is_resource($conn)) $conn =& $this->conn; |
|
396 | - return mysql_insert_id($conn); |
|
397 | - } |
|
390 | + /** |
|
391 | + * @name: getInsertId |
|
392 | + * |
|
393 | + */ |
|
394 | + function getInsertId($conn=NULL) { |
|
395 | + if( !is_resource($conn)) $conn =& $this->conn; |
|
396 | + return mysql_insert_id($conn); |
|
397 | + } |
|
398 | 398 | |
399 | - /** |
|
400 | - * @name: getAffectedRows |
|
401 | - * |
|
402 | - */ |
|
403 | - function getAffectedRows($conn=NULL) { |
|
404 | - if (!is_resource($conn)) $conn =& $this->conn; |
|
405 | - return mysql_affected_rows($conn); |
|
406 | - } |
|
399 | + /** |
|
400 | + * @name: getAffectedRows |
|
401 | + * |
|
402 | + */ |
|
403 | + function getAffectedRows($conn=NULL) { |
|
404 | + if (!is_resource($conn)) $conn =& $this->conn; |
|
405 | + return mysql_affected_rows($conn); |
|
406 | + } |
|
407 | 407 | |
408 | - /** |
|
409 | - * @name: getLastError |
|
410 | - * |
|
411 | - */ |
|
412 | - function getLastError($conn=NULL) { |
|
413 | - if (!is_resource($conn)) $conn =& $this->conn; |
|
414 | - return mysql_error($conn); |
|
415 | - } |
|
408 | + /** |
|
409 | + * @name: getLastError |
|
410 | + * |
|
411 | + */ |
|
412 | + function getLastError($conn=NULL) { |
|
413 | + if (!is_resource($conn)) $conn =& $this->conn; |
|
414 | + return mysql_error($conn); |
|
415 | + } |
|
416 | 416 | |
417 | - /** |
|
418 | - * @name: getRecordCount |
|
419 | - * |
|
420 | - */ |
|
421 | - function getRecordCount($ds) { |
|
422 | - return (is_resource($ds)) ? mysql_num_rows($ds) : 0; |
|
423 | - } |
|
417 | + /** |
|
418 | + * @name: getRecordCount |
|
419 | + * |
|
420 | + */ |
|
421 | + function getRecordCount($ds) { |
|
422 | + return (is_resource($ds)) ? mysql_num_rows($ds) : 0; |
|
423 | + } |
|
424 | 424 | |
425 | - /** |
|
426 | - * @name: getRow |
|
427 | - * @desc: returns an array of column values |
|
428 | - * @param: $dsq - dataset |
|
429 | - * |
|
430 | - */ |
|
431 | - function getRow($ds, $mode = 'assoc') { |
|
432 | - if (is_resource($ds)) { |
|
433 | - if ($mode == 'assoc') { |
|
425 | + /** |
|
426 | + * @name: getRow |
|
427 | + * @desc: returns an array of column values |
|
428 | + * @param: $dsq - dataset |
|
429 | + * |
|
430 | + */ |
|
431 | + function getRow($ds, $mode = 'assoc') { |
|
432 | + if (is_resource($ds)) { |
|
433 | + if ($mode == 'assoc') { |
|
434 | 434 | return mysql_fetch_assoc($ds); |
435 | - } |
|
436 | - elseif ($mode == 'num') { |
|
435 | + } |
|
436 | + elseif ($mode == 'num') { |
|
437 | 437 | return mysql_fetch_row($ds); |
438 | - } |
|
439 | - elseif ($mode == 'object') { |
|
438 | + } |
|
439 | + elseif ($mode == 'object') { |
|
440 | 440 | return mysql_fetch_object($ds); |
441 | - } |
|
442 | - elseif ($mode == 'both') { |
|
441 | + } |
|
442 | + elseif ($mode == 'both') { |
|
443 | 443 | return mysql_fetch_array($ds, MYSQL_BOTH); |
444 | - } else { |
|
444 | + } else { |
|
445 | 445 | global $modx; |
446 | 446 | $modx->messageQuit("Unknown get type ($mode) specified for fetchRow - must be empty, 'assoc', 'num' or 'both'."); |
447 | - } |
|
448 | - } |
|
449 | - } |
|
447 | + } |
|
448 | + } |
|
449 | + } |
|
450 | 450 | |
451 | - /** |
|
452 | - * @name: getColumn |
|
453 | - * @desc: returns an array of the values found on colun $name |
|
454 | - * @param: $dsq - dataset or query string |
|
455 | - */ |
|
456 | - function getColumn($name, $dsq) { |
|
457 | - if (!is_resource($dsq)) |
|
458 | - $dsq = $this->query($dsq); |
|
459 | - if ($dsq) { |
|
460 | - $col = array (); |
|
461 | - while ($row = $this->getRow($dsq)) { |
|
451 | + /** |
|
452 | + * @name: getColumn |
|
453 | + * @desc: returns an array of the values found on colun $name |
|
454 | + * @param: $dsq - dataset or query string |
|
455 | + */ |
|
456 | + function getColumn($name, $dsq) { |
|
457 | + if (!is_resource($dsq)) |
|
458 | + $dsq = $this->query($dsq); |
|
459 | + if ($dsq) { |
|
460 | + $col = array (); |
|
461 | + while ($row = $this->getRow($dsq)) { |
|
462 | 462 | $col[] = $row[$name]; |
463 | - } |
|
464 | - return $col; |
|
465 | - } |
|
466 | - } |
|
463 | + } |
|
464 | + return $col; |
|
465 | + } |
|
466 | + } |
|
467 | 467 | |
468 | - /** |
|
469 | - * @name: getColumnNames |
|
470 | - * @desc: returns an array containing the column $name |
|
471 | - * @param: $dsq - dataset or query string |
|
472 | - */ |
|
473 | - function getColumnNames($dsq) { |
|
474 | - if (!is_resource($dsq)) |
|
475 | - $dsq = $this->query($dsq); |
|
476 | - if ($dsq) { |
|
477 | - $names = array (); |
|
478 | - $limit = mysql_num_fields($dsq); |
|
479 | - for ($i = 0; $i < $limit; $i++) { |
|
468 | + /** |
|
469 | + * @name: getColumnNames |
|
470 | + * @desc: returns an array containing the column $name |
|
471 | + * @param: $dsq - dataset or query string |
|
472 | + */ |
|
473 | + function getColumnNames($dsq) { |
|
474 | + if (!is_resource($dsq)) |
|
475 | + $dsq = $this->query($dsq); |
|
476 | + if ($dsq) { |
|
477 | + $names = array (); |
|
478 | + $limit = mysql_num_fields($dsq); |
|
479 | + for ($i = 0; $i < $limit; $i++) { |
|
480 | 480 | $names[] = mysql_field_name($dsq, $i); |
481 | - } |
|
482 | - return $names; |
|
483 | - } |
|
484 | - } |
|
481 | + } |
|
482 | + return $names; |
|
483 | + } |
|
484 | + } |
|
485 | 485 | |
486 | - /** |
|
487 | - * @name: getValue |
|
488 | - * @desc: returns the value from the first column in the set |
|
489 | - * @param: $dsq - dataset or query string |
|
490 | - */ |
|
491 | - function getValue($dsq) { |
|
492 | - if (!is_resource($dsq)) |
|
493 | - $dsq = $this->query($dsq); |
|
494 | - if ($dsq) { |
|
495 | - $r = $this->getRow($dsq, "num"); |
|
496 | - return $r[0]; |
|
497 | - } |
|
498 | - } |
|
486 | + /** |
|
487 | + * @name: getValue |
|
488 | + * @desc: returns the value from the first column in the set |
|
489 | + * @param: $dsq - dataset or query string |
|
490 | + */ |
|
491 | + function getValue($dsq) { |
|
492 | + if (!is_resource($dsq)) |
|
493 | + $dsq = $this->query($dsq); |
|
494 | + if ($dsq) { |
|
495 | + $r = $this->getRow($dsq, "num"); |
|
496 | + return $r[0]; |
|
497 | + } |
|
498 | + } |
|
499 | 499 | |
500 | - /** |
|
501 | - * @name: getTableMetaData |
|
502 | - * @desc: returns an array of MySQL structure detail for each column of a |
|
503 | - * table |
|
504 | - * @param: $table: the full name of the database table |
|
505 | - */ |
|
506 | - function getTableMetaData($table) { |
|
507 | - $metadata = false; |
|
508 | - if (!empty ($table)) { |
|
509 | - $sql = "SHOW FIELDS FROM $table"; |
|
510 | - if ($ds = $this->query($sql)) { |
|
500 | + /** |
|
501 | + * @name: getTableMetaData |
|
502 | + * @desc: returns an array of MySQL structure detail for each column of a |
|
503 | + * table |
|
504 | + * @param: $table: the full name of the database table |
|
505 | + */ |
|
506 | + function getTableMetaData($table) { |
|
507 | + $metadata = false; |
|
508 | + if (!empty ($table)) { |
|
509 | + $sql = "SHOW FIELDS FROM $table"; |
|
510 | + if ($ds = $this->query($sql)) { |
|
511 | 511 | while ($row = $this->getRow($ds)) { |
512 | - $fieldName = $row['Field']; |
|
513 | - $metadata[$fieldName] = $row; |
|
512 | + $fieldName = $row['Field']; |
|
513 | + $metadata[$fieldName] = $row; |
|
514 | + } |
|
514 | 515 | } |
515 | - } |
|
516 | - } |
|
517 | - return $metadata; |
|
518 | - } |
|
516 | + } |
|
517 | + return $metadata; |
|
518 | + } |
|
519 | 519 | |
520 | - /** |
|
521 | - * @name: prepareDate |
|
522 | - * @desc: prepares a date in the proper format for specific database types |
|
523 | - * given a UNIX timestamp |
|
524 | - * @param: $timestamp: a UNIX timestamp |
|
525 | - * @param: $fieldType: the type of field to format the date for |
|
526 | - * (in MySQL, you have DATE, TIME, YEAR, and DATETIME) |
|
527 | - */ |
|
528 | - function prepareDate($timestamp, $fieldType = 'DATETIME') { |
|
529 | - $date = ''; |
|
530 | - if (!$timestamp === false && $timestamp > 0) { |
|
531 | - switch ($fieldType) { |
|
520 | + /** |
|
521 | + * @name: prepareDate |
|
522 | + * @desc: prepares a date in the proper format for specific database types |
|
523 | + * given a UNIX timestamp |
|
524 | + * @param: $timestamp: a UNIX timestamp |
|
525 | + * @param: $fieldType: the type of field to format the date for |
|
526 | + * (in MySQL, you have DATE, TIME, YEAR, and DATETIME) |
|
527 | + */ |
|
528 | + function prepareDate($timestamp, $fieldType = 'DATETIME') { |
|
529 | + $date = ''; |
|
530 | + if (!$timestamp === false && $timestamp > 0) { |
|
531 | + switch ($fieldType) { |
|
532 | 532 | case 'DATE' : |
533 | 533 | $date = date('Y-m-d', $timestamp); |
534 | - break; |
|
534 | + break; |
|
535 | 535 | case 'TIME' : |
536 | 536 | $date = date('H:i:s', $timestamp); |
537 | - break; |
|
537 | + break; |
|
538 | 538 | case 'YEAR' : |
539 | 539 | $date = date('Y', $timestamp); |
540 | - break; |
|
540 | + break; |
|
541 | 541 | default : |
542 | 542 | $date = date('Y-m-d H:i:s', $timestamp); |
543 | - break; |
|
544 | - } |
|
545 | - } |
|
546 | - return $date; |
|
547 | - } |
|
543 | + break; |
|
544 | + } |
|
545 | + } |
|
546 | + return $date; |
|
547 | + } |
|
548 | 548 | |
549 | - /** |
|
550 | - * @name: makeArray |
|
551 | - * @desc: turns a recordset into a multidimensional array |
|
552 | - * @return: an array of row arrays from recordset, or empty array |
|
553 | - * if the recordset was empty, returns false if no recordset |
|
554 | - * was passed |
|
555 | - * @param: $rs Recordset to be packaged into an array |
|
556 | - */ |
|
557 | - function makeArray($rs='',$index=false){ |
|
558 | - if (!$rs) return false; |
|
559 | - $rsArray = array(); |
|
560 | - $iterator = 0; |
|
561 | - while ($row = $this->getRow($rs)) { |
|
562 | - $returnIndex = $index !== false && isset($row[$index]) ? $row[$index] : $iterator; |
|
563 | - $rsArray[$returnIndex] = $row; |
|
564 | - $iterator++; |
|
565 | - } |
|
566 | - return $rsArray; |
|
567 | - } |
|
549 | + /** |
|
550 | + * @name: makeArray |
|
551 | + * @desc: turns a recordset into a multidimensional array |
|
552 | + * @return: an array of row arrays from recordset, or empty array |
|
553 | + * if the recordset was empty, returns false if no recordset |
|
554 | + * was passed |
|
555 | + * @param: $rs Recordset to be packaged into an array |
|
556 | + */ |
|
557 | + function makeArray($rs='',$index=false){ |
|
558 | + if (!$rs) return false; |
|
559 | + $rsArray = array(); |
|
560 | + $iterator = 0; |
|
561 | + while ($row = $this->getRow($rs)) { |
|
562 | + $returnIndex = $index !== false && isset($row[$index]) ? $row[$index] : $iterator; |
|
563 | + $rsArray[$returnIndex] = $row; |
|
564 | + $iterator++; |
|
565 | + } |
|
566 | + return $rsArray; |
|
567 | + } |
|
568 | 568 | |
569 | - /** |
|
570 | - * @name getVersion |
|
571 | - * @desc returns a string containing the database server version |
|
572 | - * |
|
573 | - * @return string |
|
574 | - */ |
|
575 | - function getVersion() { |
|
576 | - return mysql_get_server_info(); |
|
577 | - } |
|
569 | + /** |
|
570 | + * @name getVersion |
|
571 | + * @desc returns a string containing the database server version |
|
572 | + * |
|
573 | + * @return string |
|
574 | + */ |
|
575 | + function getVersion() { |
|
576 | + return mysql_get_server_info(); |
|
577 | + } |
|
578 | 578 | |
579 | - /** |
|
580 | - * @name replaceFullTableName |
|
581 | - * @desc Get full table name. Append table name and table prefix. |
|
582 | - * |
|
583 | - * @param string $str |
|
584 | - * @return string |
|
585 | - */ |
|
586 | - function replaceFullTableName($str,$force=null) { |
|
579 | + /** |
|
580 | + * @name replaceFullTableName |
|
581 | + * @desc Get full table name. Append table name and table prefix. |
|
582 | + * |
|
583 | + * @param string $str |
|
584 | + * @return string |
|
585 | + */ |
|
586 | + function replaceFullTableName($str,$force=null) { |
|
587 | 587 | |
588 | - $str = trim($str); |
|
589 | - $dbase = trim($this->config['dbase'],'`'); |
|
590 | - $prefix = $this->config['table_prefix']; |
|
591 | - if(!empty($force)) |
|
592 | - { |
|
593 | - $result = "`{$dbase}`.`{$prefix}{$str}`"; |
|
594 | - } |
|
595 | - elseif(strpos($str,'[+prefix+]')!==false) |
|
596 | - { |
|
597 | - $result = preg_replace('@\[\+prefix\+\]([0-9a-zA-Z_]+)@', "`{$dbase}`.`{$prefix}$1`", $str); |
|
598 | - } |
|
599 | - else $result = $str; |
|
588 | + $str = trim($str); |
|
589 | + $dbase = trim($this->config['dbase'],'`'); |
|
590 | + $prefix = $this->config['table_prefix']; |
|
591 | + if(!empty($force)) |
|
592 | + { |
|
593 | + $result = "`{$dbase}`.`{$prefix}{$str}`"; |
|
594 | + } |
|
595 | + elseif(strpos($str,'[+prefix+]')!==false) |
|
596 | + { |
|
597 | + $result = preg_replace('@\[\+prefix\+\]([0-9a-zA-Z_]+)@', "`{$dbase}`.`{$prefix}$1`", $str); |
|
598 | + } |
|
599 | + else $result = $str; |
|
600 | 600 | |
601 | - return $result; |
|
602 | - } |
|
601 | + return $result; |
|
602 | + } |
|
603 | 603 | |
604 | - function optimize($table_name) |
|
605 | - { |
|
606 | - $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
|
607 | - if($rs) $rs = $this->query("ALTER TABLE {$table_name}"); |
|
608 | - return $rs; |
|
609 | - } |
|
604 | + function optimize($table_name) |
|
605 | + { |
|
606 | + $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
|
607 | + if($rs) $rs = $this->query("ALTER TABLE {$table_name}"); |
|
608 | + return $rs; |
|
609 | + } |
|
610 | 610 | |
611 | - function truncate($table_name) |
|
612 | - { |
|
613 | - $rs = $this->query("TRUNCATE {$table_name}"); |
|
614 | - return $rs; |
|
615 | - } |
|
611 | + function truncate($table_name) |
|
612 | + { |
|
613 | + $rs = $this->query("TRUNCATE {$table_name}"); |
|
614 | + return $rs; |
|
615 | + } |
|
616 | 616 | |
617 | - function dataSeek($result, $row_number) { |
|
617 | + function dataSeek($result, $row_number) { |
|
618 | 618 | return mysql_data_seek($result, $row_number); |
619 | - } |
|
619 | + } |
|
620 | 620 | |
621 | 621 | function _getFieldsStringFromArray($fields=array()) { |
622 | 622 |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * |
6 | 6 | */ |
7 | 7 | |
8 | -class DBAPI { |
|
8 | +class DBAPI{ |
|
9 | 9 | |
10 | 10 | var $conn; |
11 | 11 | var $config; |
@@ -16,13 +16,13 @@ discard block |
||
16 | 16 | * @name: DBAPI |
17 | 17 | * |
18 | 18 | */ |
19 | - function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET') { |
|
19 | + function __construct($host = '', $dbase = '', $uid = '', $pwd = '', $pre = NULL, $charset = '', $connection_method = 'SET CHARACTER SET'){ |
|
20 | 20 | $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
21 | 21 | $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
22 | 22 | $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
23 | 23 | $this->config['pass'] = $pwd ? $pwd : $GLOBALS['database_password']; |
24 | 24 | $this->config['charset'] = $charset ? $charset : $GLOBALS['database_connection_charset']; |
25 | - $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
|
25 | + $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
|
26 | 26 | $this->config['table_prefix'] = ($pre !== NULL) ? $pre : $GLOBALS['table_prefix']; |
27 | 27 | $this->initDataTypes(); |
28 | 28 | } |
@@ -32,8 +32,8 @@ discard block |
||
32 | 32 | * @desc: called in the constructor to set up arrays containing the types |
33 | 33 | * of database fields that can be used with specific PHP types |
34 | 34 | */ |
35 | - function initDataTypes() { |
|
36 | - $this->dataTypes['numeric'] = array ( |
|
35 | + function initDataTypes(){ |
|
36 | + $this->dataTypes['numeric'] = array( |
|
37 | 37 | 'INT', |
38 | 38 | 'INTEGER', |
39 | 39 | 'TINYINT', |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | 'BIGINT', |
50 | 50 | 'BIT' |
51 | 51 | ); |
52 | - $this->dataTypes['string'] = array ( |
|
52 | + $this->dataTypes['string'] = array( |
|
53 | 53 | 'CHAR', |
54 | 54 | 'VARCHAR', |
55 | 55 | 'BINARY', |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | 'ENUM', |
66 | 66 | 'SET' |
67 | 67 | ); |
68 | - $this->dataTypes['date'] = array ( |
|
68 | + $this->dataTypes['date'] = array( |
|
69 | 69 | 'DATE', |
70 | 70 | 'DATETIME', |
71 | 71 | 'TIMESTAMP', |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * @name: connect |
79 | 79 | * |
80 | 80 | */ |
81 | - function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0) { |
|
81 | + function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0){ |
|
82 | 82 | global $modx; |
83 | 83 | $uid = $uid ? $uid : $this->config['user']; |
84 | 84 | $pwd = $pwd ? $pwd : $this->config['pass']; |
@@ -88,16 +88,16 @@ discard block |
||
88 | 88 | $connection_method = $this->config['connection_method']; |
89 | 89 | $tstart = $modx->getMicroTime(); |
90 | 90 | $safe_count = 0; |
91 | - while(!$this->conn && $safe_count<3) |
|
91 | + while (!$this->conn && $safe_count < 3) |
|
92 | 92 | { |
93 | - if($persist!=0) $this->conn = mysql_pconnect($host, $uid, $pwd); |
|
93 | + if ($persist != 0) $this->conn = mysql_pconnect($host, $uid, $pwd); |
|
94 | 94 | else $this->conn = mysql_connect($host, $uid, $pwd, true); |
95 | 95 | |
96 | - if(!$this->conn) |
|
96 | + if (!$this->conn) |
|
97 | 97 | { |
98 | - if(isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0') |
|
98 | + if (isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0') |
|
99 | 99 | { |
100 | - if($modx->config['send_errormail'] <= 2) |
|
100 | + if ($modx->config['send_errormail'] <= 2) |
|
101 | 101 | { |
102 | 102 | $logtitle = 'Failed to create the database connection!'; |
103 | 103 | $request_uri = $modx->htmlspecialchars($_SERVER['REQUEST_URI']); |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | $referer = $modx->htmlspecialchars($_SERVER['HTTP_REFERER']); |
106 | 106 | |
107 | 107 | $modx->sendmail(array( |
108 | - 'subject' => 'Missing to create the database connection! from ' . $modx->config['site_name'], |
|
108 | + 'subject' => 'Missing to create the database connection! from '.$modx->config['site_name'], |
|
109 | 109 | 'body' => "{$logtitle}\n{$request_uri}\n{$ua}\n{$referer}", |
110 | 110 | 'type' => 'text') |
111 | 111 | ); |
@@ -119,16 +119,16 @@ discard block |
||
119 | 119 | $modx->messageQuit("Failed to create the database connection!"); |
120 | 120 | exit; |
121 | 121 | } else { |
122 | - $dbase = trim($dbase,'`'); // remove the `` chars |
|
122 | + $dbase = trim($dbase, '`'); // remove the `` chars |
|
123 | 123 | if (!@ mysql_select_db($dbase, $this->conn)) { |
124 | - $modx->messageQuit("Failed to select the database '" . $dbase . "'!"); |
|
124 | + $modx->messageQuit("Failed to select the database '".$dbase."'!"); |
|
125 | 125 | exit; |
126 | 126 | } |
127 | 127 | @mysql_query("{$connection_method} {$charset}", $this->conn); |
128 | 128 | $tend = $modx->getMicroTime(); |
129 | 129 | $totaltime = $tend - $tstart; |
130 | 130 | if ($modx->dumpSQL) { |
131 | - $modx->queryCode .= "<fieldset style='text-align:left'><legend>Database connection</legend>" . sprintf("Database connection was created in %2.4f s", $totaltime) . "</fieldset><br />"; |
|
131 | + $modx->queryCode .= "<fieldset style='text-align:left'><legend>Database connection</legend>".sprintf("Database connection was created in %2.4f s", $totaltime)."</fieldset><br />"; |
|
132 | 132 | } |
133 | 133 | if (function_exists('mysql_set_charset')) { |
134 | 134 | mysql_set_charset($this->config['charset']); |
@@ -146,26 +146,26 @@ discard block |
||
146 | 146 | * @name: disconnect |
147 | 147 | * |
148 | 148 | */ |
149 | - function disconnect() { |
|
149 | + function disconnect(){ |
|
150 | 150 | @ mysql_close($this->conn); |
151 | 151 | $this->conn = null; |
152 | 152 | $this->isConnected = false; |
153 | 153 | } |
154 | 154 | |
155 | - function escape($s, $safecount=0) { |
|
155 | + function escape($s, $safecount = 0){ |
|
156 | 156 | |
157 | 157 | $safecount++; |
158 | - if(1000<$safecount) exit("Too many loops '{$safecount}'"); |
|
158 | + if (1000 < $safecount) exit("Too many loops '{$safecount}'"); |
|
159 | 159 | |
160 | 160 | if (empty ($this->conn) || !is_resource($this->conn)) { |
161 | 161 | $this->connect(); |
162 | 162 | } |
163 | 163 | |
164 | - if(is_array($s)) { |
|
165 | - if(count($s) === 0) $s = ''; |
|
164 | + if (is_array($s)) { |
|
165 | + if (count($s) === 0) $s = ''; |
|
166 | 166 | else { |
167 | - foreach($s as $i=>$v) { |
|
168 | - $s[$i] = $this->escape($v,$safecount); |
|
167 | + foreach ($s as $i=>$v) { |
|
168 | + $s[$i] = $this->escape($v, $safecount); |
|
169 | 169 | } |
170 | 170 | } |
171 | 171 | } |
@@ -178,17 +178,17 @@ discard block |
||
178 | 178 | * @desc: Mainly for internal use. |
179 | 179 | * Developers should use select, update, insert, delete where possible |
180 | 180 | */ |
181 | - function query($sql,$watchError=true) { |
|
181 | + function query($sql, $watchError = true){ |
|
182 | 182 | global $modx; |
183 | 183 | if (empty ($this->conn) || !is_resource($this->conn)) { |
184 | 184 | $this->connect(); |
185 | 185 | } |
186 | 186 | $tstart = $modx->getMicroTime(); |
187 | - if(is_array($sql)) $sql = join("\n", $sql); |
|
187 | + if (is_array($sql)) $sql = join("\n", $sql); |
|
188 | 188 | $this->lastQuery = $sql; |
189 | 189 | if (!$result = @ mysql_query($sql, $this->conn)) { |
190 | - if(!$watchError) return; |
|
191 | - switch(mysql_errno()) { |
|
190 | + if (!$watchError) return; |
|
191 | + switch (mysql_errno()) { |
|
192 | 192 | case 1054: |
193 | 193 | case 1060: |
194 | 194 | case 1061: |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | case 1091: |
197 | 197 | break; |
198 | 198 | default: |
199 | - $modx->messageQuit('Execution of a query to the database failed - ' . $this->getLastError(), $sql); |
|
199 | + $modx->messageQuit('Execution of a query to the database failed - '.$this->getLastError(), $sql); |
|
200 | 200 | } |
201 | 201 | } else { |
202 | 202 | $tend = $modx->getMicroTime(); |
@@ -207,15 +207,15 @@ discard block |
||
207 | 207 | array_shift($debug); |
208 | 208 | $debug_path = array(); |
209 | 209 | foreach ($debug as $line) $debug_path[] = $line['function']; |
210 | - $debug_path = implode(' > ',array_reverse($debug_path)); |
|
211 | - $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query " . ($modx->executedQueries + 1) . " - " . sprintf("%2.2f ms", $totaltime*1000) . "</legend>"; |
|
212 | - $modx->queryCode .= $sql . '<br><br>'; |
|
213 | - if ($modx->event->name) $modx->queryCode .= 'Current Event => ' . $modx->event->name . '<br>'; |
|
214 | - if ($modx->event->activePlugin) $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>'; |
|
215 | - if ($modx->currentSnippet) $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>'; |
|
216 | - if (stripos($sql, 'select')===0) $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>'; |
|
217 | - else $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
|
218 | - $modx->queryCode .= 'Functions Path => ' . $debug_path . '<br>'; |
|
210 | + $debug_path = implode(' > ', array_reverse($debug_path)); |
|
211 | + $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query ".($modx->executedQueries + 1)." - ".sprintf("%2.2f ms", $totaltime * 1000)."</legend>"; |
|
212 | + $modx->queryCode .= $sql.'<br><br>'; |
|
213 | + if ($modx->event->name) $modx->queryCode .= 'Current Event => '.$modx->event->name.'<br>'; |
|
214 | + if ($modx->event->activePlugin) $modx->queryCode .= 'Current Plugin => '.$modx->event->activePlugin.'<br>'; |
|
215 | + if ($modx->currentSnippet) $modx->queryCode .= 'Current Snippet => '.$modx->currentSnippet.'<br>'; |
|
216 | + if (stripos($sql, 'select') === 0) $modx->queryCode .= 'Record Count => '.$this->getRecordCount($result).'<br>'; |
|
217 | + else $modx->queryCode .= 'Affected Rows => '.$this->getAffectedRows().'<br>'; |
|
218 | + $modx->queryCode .= 'Functions Path => '.$debug_path.'<br>'; |
|
219 | 219 | $modx->queryCode .= "</fieldset><br />"; |
220 | 220 | } |
221 | 221 | $modx->executedQueries = $modx->executedQueries + 1; |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | * @name: delete |
228 | 228 | * |
229 | 229 | */ |
230 | - function delete($from, $where='', $orderby='', $limit = '') { |
|
230 | + function delete($from, $where = '', $orderby = '', $limit = ''){ |
|
231 | 231 | global $modx; |
232 | 232 | if (!$from) |
233 | 233 | $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
@@ -236,9 +236,9 @@ discard block |
||
236 | 236 | $where = trim($where); |
237 | 237 | $orderby = trim($orderby); |
238 | 238 | $limit = trim($limit); |
239 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
240 | - if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
|
241 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
239 | + if ($where !== '' && stripos($where, 'WHERE') !== 0) $where = "WHERE {$where}"; |
|
240 | + if ($orderby !== '' && stripos($orderby, 'ORDER BY') !== 0) $orderby = "ORDER BY {$orderby}"; |
|
241 | + if ($limit !== '' && stripos($limit, 'LIMIT') !== 0) $limit = "LIMIT {$limit}"; |
|
242 | 242 | return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
243 | 243 | } |
244 | 244 | } |
@@ -247,12 +247,12 @@ discard block |
||
247 | 247 | * @name: select |
248 | 248 | * |
249 | 249 | */ |
250 | - function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") { |
|
250 | + function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = ""){ |
|
251 | 251 | global $modx; |
252 | 252 | |
253 | - if(is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
254 | - if(is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
255 | - if(is_array($where)) $where = join(' ', $where); |
|
253 | + if (is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
254 | + if (is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
255 | + if (is_array($where)) $where = join(' ', $where); |
|
256 | 256 | |
257 | 257 | if (!$from) { |
258 | 258 | $modx->messageQuit("Empty \$from parameters in DBAPI::select()."); |
@@ -264,9 +264,9 @@ discard block |
||
264 | 264 | $where = trim($where); |
265 | 265 | $orderby = trim($orderby); |
266 | 266 | $limit = trim($limit); |
267 | - if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
|
268 | - if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
|
269 | - if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
267 | + if ($where !== '' && stripos($where, 'WHERE') !== 0) $where = "WHERE {$where}"; |
|
268 | + if ($orderby !== '' && stripos($orderby, 'ORDER') !== 0) $orderby = "ORDER BY {$orderby}"; |
|
269 | + if ($limit !== '' && stripos($limit, 'LIMIT') !== 0) $limit = "LIMIT {$limit}"; |
|
270 | 270 | return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
271 | 271 | } |
272 | 272 | |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | * @name: update |
275 | 275 | * |
276 | 276 | */ |
277 | - function update($fields, $table, $where = "") { |
|
277 | + function update($fields, $table, $where = ""){ |
|
278 | 278 | global $modx; |
279 | 279 | if (!$table) |
280 | 280 | $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
@@ -282,17 +282,17 @@ discard block |
||
282 | 282 | $table = $this->replaceFullTableName($table); |
283 | 283 | if (is_array($fields)) { |
284 | 284 | foreach ($fields as $key => $value) { |
285 | - if(is_null($value) || strtolower($value) === 'null'){ |
|
285 | + if (is_null($value) || strtolower($value) === 'null') { |
|
286 | 286 | $flds = 'NULL'; |
287 | - }else{ |
|
288 | - $flds = "'" . $value . "'"; |
|
287 | + } else { |
|
288 | + $flds = "'".$value."'"; |
|
289 | 289 | } |
290 | 290 | $fields[$key] = "`{$key}` = ".$flds; |
291 | 291 | } |
292 | 292 | $fields = implode(",", $fields); |
293 | 293 | } |
294 | 294 | $where = trim($where); |
295 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
295 | + if ($where !== '' && stripos($where, 'WHERE') !== 0) $where = "WHERE {$where}"; |
|
296 | 296 | return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
297 | 297 | } |
298 | 298 | } |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | * @name: insert |
302 | 302 | * @desc: returns either last id inserted or the result from the query |
303 | 303 | */ |
304 | - function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") { |
|
304 | + function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = ""){ |
|
305 | 305 | global $modx; |
306 | 306 | if (!$intotable) |
307 | 307 | $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
@@ -314,13 +314,13 @@ discard block |
||
314 | 314 | $fields = "(`".implode("`, `", array_keys($fields))."`) VALUES('".implode("', '", array_values($fields))."')"; |
315 | 315 | $rt = $this->query("INSERT INTO {$intotable} {$fields}"); |
316 | 316 | } else { |
317 | - if (version_compare($this->getVersion(),"4.0.14")>=0) { |
|
317 | + if (version_compare($this->getVersion(), "4.0.14") >= 0) { |
|
318 | 318 | $fromtable = $this->replaceFullTableName($fromtable); |
319 | 319 | $fields = "(".implode(",", array_keys($fields)).")"; |
320 | 320 | $where = trim($where); |
321 | 321 | $limit = trim($limit); |
322 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
323 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
322 | + if ($where !== '' && stripos($where, 'WHERE') !== 0) $where = "WHERE {$where}"; |
|
323 | + if ($limit !== '' && stripos($limit, 'LIMIT') !== 0) $limit = "LIMIT {$limit}"; |
|
324 | 324 | $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
325 | 325 | } else { |
326 | 326 | $ds = $this->select($fromfields, $fromtable, $where, '', $limit); |
@@ -331,18 +331,18 @@ discard block |
||
331 | 331 | } |
332 | 332 | } |
333 | 333 | } |
334 | - if (($lid = $this->getInsertId())===false) $modx->messageQuit("Couldn't get last insert key!"); |
|
334 | + if (($lid = $this->getInsertId()) === false) $modx->messageQuit("Couldn't get last insert key!"); |
|
335 | 335 | return $lid; |
336 | 336 | } |
337 | 337 | } |
338 | 338 | |
339 | - function save($fields, $table, $where='') { |
|
339 | + function save($fields, $table, $where = ''){ |
|
340 | 340 | |
341 | - if($where === '') $mode = 'insert'; |
|
342 | - elseif($this->getRecordCount($this->select('*',$table,$where))==0) $mode = 'insert'; |
|
341 | + if ($where === '') $mode = 'insert'; |
|
342 | + elseif ($this->getRecordCount($this->select('*', $table, $where)) == 0) $mode = 'insert'; |
|
343 | 343 | else $mode = 'update'; |
344 | 344 | |
345 | - if($mode==='insert') return $this->insert($fields, $table); |
|
345 | + if ($mode === 'insert') return $this->insert($fields, $table); |
|
346 | 346 | else return $this->update($fields, $table, $where); |
347 | 347 | } |
348 | 348 | |
@@ -350,7 +350,7 @@ discard block |
||
350 | 350 | * @name: isResult |
351 | 351 | * |
352 | 352 | */ |
353 | - function isResult($rs) { |
|
353 | + function isResult($rs){ |
|
354 | 354 | return is_resource($rs); |
355 | 355 | } |
356 | 356 | |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | * @name: freeResult |
359 | 359 | * |
360 | 360 | */ |
361 | - function freeResult($rs) { |
|
361 | + function freeResult($rs){ |
|
362 | 362 | mysql_free_result($rs); |
363 | 363 | } |
364 | 364 | |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | * @name: numFields |
367 | 367 | * |
368 | 368 | */ |
369 | - function numFields($rs) { |
|
369 | + function numFields($rs){ |
|
370 | 370 | return mysql_num_fields($rs); |
371 | 371 | } |
372 | 372 | |
@@ -374,15 +374,15 @@ discard block |
||
374 | 374 | * @name: fieldName |
375 | 375 | * |
376 | 376 | */ |
377 | - function fieldName($rs,$col=0) { |
|
378 | - return mysql_field_name($rs,$col); |
|
377 | + function fieldName($rs, $col = 0){ |
|
378 | + return mysql_field_name($rs, $col); |
|
379 | 379 | } |
380 | 380 | |
381 | 381 | /** |
382 | 382 | * @name: selectDb |
383 | 383 | * |
384 | 384 | */ |
385 | - function selectDb($name) { |
|
385 | + function selectDb($name){ |
|
386 | 386 | mysql_select_db($name); |
387 | 387 | } |
388 | 388 | |
@@ -391,8 +391,8 @@ discard block |
||
391 | 391 | * @name: getInsertId |
392 | 392 | * |
393 | 393 | */ |
394 | - function getInsertId($conn=NULL) { |
|
395 | - if( !is_resource($conn)) $conn =& $this->conn; |
|
394 | + function getInsertId($conn = NULL){ |
|
395 | + if (!is_resource($conn)) $conn = & $this->conn; |
|
396 | 396 | return mysql_insert_id($conn); |
397 | 397 | } |
398 | 398 | |
@@ -400,8 +400,8 @@ discard block |
||
400 | 400 | * @name: getAffectedRows |
401 | 401 | * |
402 | 402 | */ |
403 | - function getAffectedRows($conn=NULL) { |
|
404 | - if (!is_resource($conn)) $conn =& $this->conn; |
|
403 | + function getAffectedRows($conn = NULL){ |
|
404 | + if (!is_resource($conn)) $conn = & $this->conn; |
|
405 | 405 | return mysql_affected_rows($conn); |
406 | 406 | } |
407 | 407 | |
@@ -409,8 +409,8 @@ discard block |
||
409 | 409 | * @name: getLastError |
410 | 410 | * |
411 | 411 | */ |
412 | - function getLastError($conn=NULL) { |
|
413 | - if (!is_resource($conn)) $conn =& $this->conn; |
|
412 | + function getLastError($conn = NULL){ |
|
413 | + if (!is_resource($conn)) $conn = & $this->conn; |
|
414 | 414 | return mysql_error($conn); |
415 | 415 | } |
416 | 416 | |
@@ -418,7 +418,7 @@ discard block |
||
418 | 418 | * @name: getRecordCount |
419 | 419 | * |
420 | 420 | */ |
421 | - function getRecordCount($ds) { |
|
421 | + function getRecordCount($ds){ |
|
422 | 422 | return (is_resource($ds)) ? mysql_num_rows($ds) : 0; |
423 | 423 | } |
424 | 424 | |
@@ -428,7 +428,7 @@ discard block |
||
428 | 428 | * @param: $dsq - dataset |
429 | 429 | * |
430 | 430 | */ |
431 | - function getRow($ds, $mode = 'assoc') { |
|
431 | + function getRow($ds, $mode = 'assoc'){ |
|
432 | 432 | if (is_resource($ds)) { |
433 | 433 | if ($mode == 'assoc') { |
434 | 434 | return mysql_fetch_assoc($ds); |
@@ -453,11 +453,11 @@ discard block |
||
453 | 453 | * @desc: returns an array of the values found on colun $name |
454 | 454 | * @param: $dsq - dataset or query string |
455 | 455 | */ |
456 | - function getColumn($name, $dsq) { |
|
456 | + function getColumn($name, $dsq){ |
|
457 | 457 | if (!is_resource($dsq)) |
458 | 458 | $dsq = $this->query($dsq); |
459 | 459 | if ($dsq) { |
460 | - $col = array (); |
|
460 | + $col = array(); |
|
461 | 461 | while ($row = $this->getRow($dsq)) { |
462 | 462 | $col[] = $row[$name]; |
463 | 463 | } |
@@ -470,11 +470,11 @@ discard block |
||
470 | 470 | * @desc: returns an array containing the column $name |
471 | 471 | * @param: $dsq - dataset or query string |
472 | 472 | */ |
473 | - function getColumnNames($dsq) { |
|
473 | + function getColumnNames($dsq){ |
|
474 | 474 | if (!is_resource($dsq)) |
475 | 475 | $dsq = $this->query($dsq); |
476 | 476 | if ($dsq) { |
477 | - $names = array (); |
|
477 | + $names = array(); |
|
478 | 478 | $limit = mysql_num_fields($dsq); |
479 | 479 | for ($i = 0; $i < $limit; $i++) { |
480 | 480 | $names[] = mysql_field_name($dsq, $i); |
@@ -488,7 +488,7 @@ discard block |
||
488 | 488 | * @desc: returns the value from the first column in the set |
489 | 489 | * @param: $dsq - dataset or query string |
490 | 490 | */ |
491 | - function getValue($dsq) { |
|
491 | + function getValue($dsq){ |
|
492 | 492 | if (!is_resource($dsq)) |
493 | 493 | $dsq = $this->query($dsq); |
494 | 494 | if ($dsq) { |
@@ -503,7 +503,7 @@ discard block |
||
503 | 503 | * table |
504 | 504 | * @param: $table: the full name of the database table |
505 | 505 | */ |
506 | - function getTableMetaData($table) { |
|
506 | + function getTableMetaData($table){ |
|
507 | 507 | $metadata = false; |
508 | 508 | if (!empty ($table)) { |
509 | 509 | $sql = "SHOW FIELDS FROM $table"; |
@@ -525,7 +525,7 @@ discard block |
||
525 | 525 | * @param: $fieldType: the type of field to format the date for |
526 | 526 | * (in MySQL, you have DATE, TIME, YEAR, and DATETIME) |
527 | 527 | */ |
528 | - function prepareDate($timestamp, $fieldType = 'DATETIME') { |
|
528 | + function prepareDate($timestamp, $fieldType = 'DATETIME'){ |
|
529 | 529 | $date = ''; |
530 | 530 | if (!$timestamp === false && $timestamp > 0) { |
531 | 531 | switch ($fieldType) { |
@@ -554,7 +554,7 @@ discard block |
||
554 | 554 | * was passed |
555 | 555 | * @param: $rs Recordset to be packaged into an array |
556 | 556 | */ |
557 | - function makeArray($rs='',$index=false){ |
|
557 | + function makeArray($rs = '', $index = false){ |
|
558 | 558 | if (!$rs) return false; |
559 | 559 | $rsArray = array(); |
560 | 560 | $iterator = 0; |
@@ -572,7 +572,7 @@ discard block |
||
572 | 572 | * |
573 | 573 | * @return string |
574 | 574 | */ |
575 | - function getVersion() { |
|
575 | + function getVersion(){ |
|
576 | 576 | return mysql_get_server_info(); |
577 | 577 | } |
578 | 578 | |
@@ -583,16 +583,16 @@ discard block |
||
583 | 583 | * @param string $str |
584 | 584 | * @return string |
585 | 585 | */ |
586 | - function replaceFullTableName($str,$force=null) { |
|
586 | + function replaceFullTableName($str, $force = null){ |
|
587 | 587 | |
588 | 588 | $str = trim($str); |
589 | - $dbase = trim($this->config['dbase'],'`'); |
|
589 | + $dbase = trim($this->config['dbase'], '`'); |
|
590 | 590 | $prefix = $this->config['table_prefix']; |
591 | - if(!empty($force)) |
|
591 | + if (!empty($force)) |
|
592 | 592 | { |
593 | 593 | $result = "`{$dbase}`.`{$prefix}{$str}`"; |
594 | 594 | } |
595 | - elseif(strpos($str,'[+prefix+]')!==false) |
|
595 | + elseif (strpos($str, '[+prefix+]') !== false) |
|
596 | 596 | { |
597 | 597 | $result = preg_replace('@\[\+prefix\+\]([0-9a-zA-Z_]+)@', "`{$dbase}`.`{$prefix}$1`", $str); |
598 | 598 | } |
@@ -604,7 +604,7 @@ discard block |
||
604 | 604 | function optimize($table_name) |
605 | 605 | { |
606 | 606 | $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
607 | - if($rs) $rs = $this->query("ALTER TABLE {$table_name}"); |
|
607 | + if ($rs) $rs = $this->query("ALTER TABLE {$table_name}"); |
|
608 | 608 | return $rs; |
609 | 609 | } |
610 | 610 | |
@@ -614,25 +614,25 @@ discard block |
||
614 | 614 | return $rs; |
615 | 615 | } |
616 | 616 | |
617 | - function dataSeek($result, $row_number) { |
|
617 | + function dataSeek($result, $row_number){ |
|
618 | 618 | return mysql_data_seek($result, $row_number); |
619 | 619 | } |
620 | 620 | |
621 | - function _getFieldsStringFromArray($fields=array()) { |
|
621 | + function _getFieldsStringFromArray($fields = array()){ |
|
622 | 622 | |
623 | - if(empty($fields)) return '*'; |
|
623 | + if (empty($fields)) return '*'; |
|
624 | 624 | |
625 | 625 | $_ = array(); |
626 | - foreach($fields as $k=>$v) { |
|
627 | - if($k!==$v) $_[] = "{$v} as {$k}"; |
|
626 | + foreach ($fields as $k=>$v) { |
|
627 | + if ($k !== $v) $_[] = "{$v} as {$k}"; |
|
628 | 628 | else $_[] = $v; |
629 | 629 | } |
630 | 630 | return join(',', $_); |
631 | 631 | } |
632 | 632 | |
633 | - function _getFromStringFromArray($tables=array()) { |
|
633 | + function _getFromStringFromArray($tables = array()){ |
|
634 | 634 | $_ = array(); |
635 | - foreach($tables as $k=>$v) { |
|
635 | + foreach ($tables as $k=>$v) { |
|
636 | 636 | $_[] = $v; |
637 | 637 | } |
638 | 638 | return join(' ', $_); |
@@ -5,7 +5,8 @@ discard block |
||
5 | 5 | * |
6 | 6 | */ |
7 | 7 | |
8 | -class DBAPI { |
|
8 | +class DBAPI |
|
9 | +{ |
|
9 | 10 | |
10 | 11 | var $conn; |
11 | 12 | var $config; |
@@ -16,7 +17,8 @@ discard block |
||
16 | 17 | * @name: DBAPI |
17 | 18 | * |
18 | 19 | */ |
19 | - function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET') { |
|
20 | + function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET') |
|
21 | + { |
|
20 | 22 | $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
21 | 23 | $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
22 | 24 | $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
@@ -32,7 +34,8 @@ discard block |
||
32 | 34 | * @desc: called in the constructor to set up arrays containing the types |
33 | 35 | * of database fields that can be used with specific PHP types |
34 | 36 | */ |
35 | - function initDataTypes() { |
|
37 | + function initDataTypes() |
|
38 | + { |
|
36 | 39 | $this->dataTypes['numeric'] = array ( |
37 | 40 | 'INT', |
38 | 41 | 'INTEGER', |
@@ -78,7 +81,8 @@ discard block |
||
78 | 81 | * @name: connect |
79 | 82 | * |
80 | 83 | */ |
81 | - function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0) { |
|
84 | + function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0) |
|
85 | + { |
|
82 | 86 | global $modx; |
83 | 87 | $uid = $uid ? $uid : $this->config['user']; |
84 | 88 | $pwd = $pwd ? $pwd : $this->config['pass']; |
@@ -88,17 +92,16 @@ discard block |
||
88 | 92 | $connection_method = $this->config['connection_method']; |
89 | 93 | $tstart = $modx->getMicroTime(); |
90 | 94 | $safe_count = 0; |
91 | - while(!$this->conn && $safe_count<3) |
|
92 | - { |
|
93 | - if($persist!=0) $this->conn = mysql_pconnect($host, $uid, $pwd); |
|
94 | - else $this->conn = mysql_connect($host, $uid, $pwd, true); |
|
95 | + while(!$this->conn && $safe_count<3) { |
|
96 | + if($persist!=0) { |
|
97 | + $this->conn = mysql_pconnect($host, $uid, $pwd); |
|
98 | + } else { |
|
99 | + $this->conn = mysql_connect($host, $uid, $pwd, true); |
|
100 | + } |
|
95 | 101 | |
96 | - if(!$this->conn) |
|
97 | - { |
|
98 | - if(isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0') |
|
99 | - { |
|
100 | - if($modx->config['send_errormail'] <= 2) |
|
101 | - { |
|
102 | + if(!$this->conn) { |
|
103 | + if(isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0') { |
|
104 | + if($modx->config['send_errormail'] <= 2) { |
|
102 | 105 | $logtitle = 'Failed to create the database connection!'; |
103 | 106 | $request_uri = $modx->htmlspecialchars($_SERVER['REQUEST_URI']); |
104 | 107 | $ua = $modx->htmlspecialchars($_SERVER['HTTP_USER_AGENT']); |
@@ -146,30 +149,36 @@ discard block |
||
146 | 149 | * @name: disconnect |
147 | 150 | * |
148 | 151 | */ |
149 | - function disconnect() { |
|
152 | + function disconnect() |
|
153 | + { |
|
150 | 154 | @ mysql_close($this->conn); |
151 | 155 | $this->conn = null; |
152 | 156 | $this->isConnected = false; |
153 | 157 | } |
154 | 158 | |
155 | - function escape($s, $safecount=0) { |
|
159 | + function escape($s, $safecount=0) |
|
160 | + { |
|
156 | 161 | |
157 | 162 | $safecount++; |
158 | - if(1000<$safecount) exit("Too many loops '{$safecount}'"); |
|
163 | + if(1000<$safecount) { |
|
164 | + exit("Too many loops '{$safecount}'"); |
|
165 | + } |
|
159 | 166 | |
160 | 167 | if (empty ($this->conn) || !is_resource($this->conn)) { |
161 | 168 | $this->connect(); |
162 | 169 | } |
163 | 170 | |
164 | 171 | if(is_array($s)) { |
165 | - if(count($s) === 0) $s = ''; |
|
166 | - else { |
|
172 | + if(count($s) === 0) { |
|
173 | + $s = ''; |
|
174 | + } else { |
|
167 | 175 | foreach($s as $i=>$v) { |
168 | 176 | $s[$i] = $this->escape($v,$safecount); |
169 | 177 | } |
170 | 178 | } |
179 | + } else { |
|
180 | + $s = mysql_real_escape_string($s, $this->conn); |
|
171 | 181 | } |
172 | - else $s = mysql_real_escape_string($s, $this->conn); |
|
173 | 182 | return $s; |
174 | 183 | } |
175 | 184 | |
@@ -178,16 +187,21 @@ discard block |
||
178 | 187 | * @desc: Mainly for internal use. |
179 | 188 | * Developers should use select, update, insert, delete where possible |
180 | 189 | */ |
181 | - function query($sql,$watchError=true) { |
|
190 | + function query($sql,$watchError=true) |
|
191 | + { |
|
182 | 192 | global $modx; |
183 | 193 | if (empty ($this->conn) || !is_resource($this->conn)) { |
184 | 194 | $this->connect(); |
185 | 195 | } |
186 | 196 | $tstart = $modx->getMicroTime(); |
187 | - if(is_array($sql)) $sql = join("\n", $sql); |
|
197 | + if(is_array($sql)) { |
|
198 | + $sql = join("\n", $sql); |
|
199 | + } |
|
188 | 200 | $this->lastQuery = $sql; |
189 | 201 | if (!$result = @ mysql_query($sql, $this->conn)) { |
190 | - if(!$watchError) return; |
|
202 | + if(!$watchError) { |
|
203 | + return; |
|
204 | + } |
|
191 | 205 | switch(mysql_errno()) { |
192 | 206 | case 1054: |
193 | 207 | case 1060: |
@@ -206,15 +220,26 @@ discard block |
||
206 | 220 | $debug = debug_backtrace(); |
207 | 221 | array_shift($debug); |
208 | 222 | $debug_path = array(); |
209 | - foreach ($debug as $line) $debug_path[] = $line['function']; |
|
223 | + foreach ($debug as $line) { |
|
224 | + $debug_path[] = $line['function']; |
|
225 | + } |
|
210 | 226 | $debug_path = implode(' > ',array_reverse($debug_path)); |
211 | 227 | $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query " . ($modx->executedQueries + 1) . " - " . sprintf("%2.2f ms", $totaltime*1000) . "</legend>"; |
212 | 228 | $modx->queryCode .= $sql . '<br><br>'; |
213 | - if ($modx->event->name) $modx->queryCode .= 'Current Event => ' . $modx->event->name . '<br>'; |
|
214 | - if ($modx->event->activePlugin) $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>'; |
|
215 | - if ($modx->currentSnippet) $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>'; |
|
216 | - if (stripos($sql, 'select')===0) $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>'; |
|
217 | - else $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
|
229 | + if ($modx->event->name) { |
|
230 | + $modx->queryCode .= 'Current Event => ' . $modx->event->name . '<br>'; |
|
231 | + } |
|
232 | + if ($modx->event->activePlugin) { |
|
233 | + $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>'; |
|
234 | + } |
|
235 | + if ($modx->currentSnippet) { |
|
236 | + $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>'; |
|
237 | + } |
|
238 | + if (stripos($sql, 'select')===0) { |
|
239 | + $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>'; |
|
240 | + } else { |
|
241 | + $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
|
242 | + } |
|
218 | 243 | $modx->queryCode .= 'Functions Path => ' . $debug_path . '<br>'; |
219 | 244 | $modx->queryCode .= "</fieldset><br />"; |
220 | 245 | } |
@@ -227,18 +252,25 @@ discard block |
||
227 | 252 | * @name: delete |
228 | 253 | * |
229 | 254 | */ |
230 | - function delete($from, $where='', $orderby='', $limit = '') { |
|
255 | + function delete($from, $where='', $orderby='', $limit = '') |
|
256 | + { |
|
231 | 257 | global $modx; |
232 | - if (!$from) |
|
233 | - $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
|
234 | - else { |
|
258 | + if (!$from) { |
|
259 | + $modx->messageQuit("Empty \$from parameters in DBAPI::delete()."); |
|
260 | + } else { |
|
235 | 261 | $from = $this->replaceFullTableName($from); |
236 | 262 | $where = trim($where); |
237 | 263 | $orderby = trim($orderby); |
238 | 264 | $limit = trim($limit); |
239 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
240 | - if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
|
241 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
265 | + if($where!=='' && stripos($where, 'WHERE')!==0) { |
|
266 | + $where = "WHERE {$where}"; |
|
267 | + } |
|
268 | + if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) { |
|
269 | + $orderby = "ORDER BY {$orderby}"; |
|
270 | + } |
|
271 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) { |
|
272 | + $limit = "LIMIT {$limit}"; |
|
273 | + } |
|
242 | 274 | return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
243 | 275 | } |
244 | 276 | } |
@@ -247,12 +279,19 @@ discard block |
||
247 | 279 | * @name: select |
248 | 280 | * |
249 | 281 | */ |
250 | - function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") { |
|
282 | + function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") |
|
283 | + { |
|
251 | 284 | global $modx; |
252 | 285 | |
253 | - if(is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields); |
|
254 | - if(is_array($from)) $from = $this->_getFromStringFromArray($from); |
|
255 | - if(is_array($where)) $where = join(' ', $where); |
|
286 | + if(is_array($fields)) { |
|
287 | + $fields = $this->_getFieldsStringFromArray($fields); |
|
288 | + } |
|
289 | + if(is_array($from)) { |
|
290 | + $from = $this->_getFromStringFromArray($from); |
|
291 | + } |
|
292 | + if(is_array($where)) { |
|
293 | + $where = join(' ', $where); |
|
294 | + } |
|
256 | 295 | |
257 | 296 | if (!$from) { |
258 | 297 | $modx->messageQuit("Empty \$from parameters in DBAPI::select()."); |
@@ -264,9 +303,15 @@ discard block |
||
264 | 303 | $where = trim($where); |
265 | 304 | $orderby = trim($orderby); |
266 | 305 | $limit = trim($limit); |
267 | - if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
|
268 | - if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
|
269 | - if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
306 | + if($where!=='' && stripos($where,'WHERE')!==0) { |
|
307 | + $where = "WHERE {$where}"; |
|
308 | + } |
|
309 | + if($orderby!=='' && stripos($orderby,'ORDER')!==0) { |
|
310 | + $orderby = "ORDER BY {$orderby}"; |
|
311 | + } |
|
312 | + if($limit!=='' && stripos($limit,'LIMIT')!==0) { |
|
313 | + $limit = "LIMIT {$limit}"; |
|
314 | + } |
|
270 | 315 | return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
271 | 316 | } |
272 | 317 | |
@@ -274,17 +319,18 @@ discard block |
||
274 | 319 | * @name: update |
275 | 320 | * |
276 | 321 | */ |
277 | - function update($fields, $table, $where = "") { |
|
322 | + function update($fields, $table, $where = "") |
|
323 | + { |
|
278 | 324 | global $modx; |
279 | - if (!$table) |
|
280 | - $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
|
281 | - else { |
|
325 | + if (!$table) { |
|
326 | + $modx->messageQuit("Empty \$table parameter in DBAPI::update()."); |
|
327 | + } else { |
|
282 | 328 | $table = $this->replaceFullTableName($table); |
283 | 329 | if (is_array($fields)) { |
284 | 330 | foreach ($fields as $key => $value) { |
285 | - if(is_null($value) || strtolower($value) === 'null'){ |
|
331 | + if(is_null($value) || strtolower($value) === 'null') { |
|
286 | 332 | $flds = 'NULL'; |
287 | - }else{ |
|
333 | + } else { |
|
288 | 334 | $flds = "'" . $value . "'"; |
289 | 335 | } |
290 | 336 | $fields[$key] = "`{$key}` = ".$flds; |
@@ -292,7 +338,9 @@ discard block |
||
292 | 338 | $fields = implode(",", $fields); |
293 | 339 | } |
294 | 340 | $where = trim($where); |
295 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
341 | + if($where!=='' && stripos($where, 'WHERE')!==0) { |
|
342 | + $where = "WHERE {$where}"; |
|
343 | + } |
|
296 | 344 | return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
297 | 345 | } |
298 | 346 | } |
@@ -301,11 +349,12 @@ discard block |
||
301 | 349 | * @name: insert |
302 | 350 | * @desc: returns either last id inserted or the result from the query |
303 | 351 | */ |
304 | - function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") { |
|
352 | + function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") |
|
353 | + { |
|
305 | 354 | global $modx; |
306 | - if (!$intotable) |
|
307 | - $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
|
308 | - else { |
|
355 | + if (!$intotable) { |
|
356 | + $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert()."); |
|
357 | + } else { |
|
309 | 358 | $intotable = $this->replaceFullTableName($intotable); |
310 | 359 | if (!is_array($fields)) { |
311 | 360 | $this->query("INSERT INTO {$intotable} {$fields}"); |
@@ -319,8 +368,12 @@ discard block |
||
319 | 368 | $fields = "(".implode(",", array_keys($fields)).")"; |
320 | 369 | $where = trim($where); |
321 | 370 | $limit = trim($limit); |
322 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
323 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
371 | + if($where!=='' && stripos($where, 'WHERE')!==0) { |
|
372 | + $where = "WHERE {$where}"; |
|
373 | + } |
|
374 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) { |
|
375 | + $limit = "LIMIT {$limit}"; |
|
376 | + } |
|
324 | 377 | $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
325 | 378 | } else { |
326 | 379 | $ds = $this->select($fromfields, $fromtable, $where, '', $limit); |
@@ -331,26 +384,37 @@ discard block |
||
331 | 384 | } |
332 | 385 | } |
333 | 386 | } |
334 | - if (($lid = $this->getInsertId())===false) $modx->messageQuit("Couldn't get last insert key!"); |
|
387 | + if (($lid = $this->getInsertId())===false) { |
|
388 | + $modx->messageQuit("Couldn't get last insert key!"); |
|
389 | + } |
|
335 | 390 | return $lid; |
336 | 391 | } |
337 | 392 | } |
338 | 393 | |
339 | - function save($fields, $table, $where='') { |
|
394 | + function save($fields, $table, $where='') |
|
395 | + { |
|
340 | 396 | |
341 | - if($where === '') $mode = 'insert'; |
|
342 | - elseif($this->getRecordCount($this->select('*',$table,$where))==0) $mode = 'insert'; |
|
343 | - else $mode = 'update'; |
|
397 | + if($where === '') { |
|
398 | + $mode = 'insert'; |
|
399 | + } elseif($this->getRecordCount($this->select('*',$table,$where))==0) { |
|
400 | + $mode = 'insert'; |
|
401 | + } else { |
|
402 | + $mode = 'update'; |
|
403 | + } |
|
344 | 404 | |
345 | - if($mode==='insert') return $this->insert($fields, $table); |
|
346 | - else return $this->update($fields, $table, $where); |
|
405 | + if($mode==='insert') { |
|
406 | + return $this->insert($fields, $table); |
|
407 | + } else { |
|
408 | + return $this->update($fields, $table, $where); |
|
409 | + } |
|
347 | 410 | } |
348 | 411 | |
349 | 412 | /** |
350 | 413 | * @name: isResult |
351 | 414 | * |
352 | 415 | */ |
353 | - function isResult($rs) { |
|
416 | + function isResult($rs) |
|
417 | + { |
|
354 | 418 | return is_resource($rs); |
355 | 419 | } |
356 | 420 | |
@@ -358,7 +422,8 @@ discard block |
||
358 | 422 | * @name: freeResult |
359 | 423 | * |
360 | 424 | */ |
361 | - function freeResult($rs) { |
|
425 | + function freeResult($rs) |
|
426 | + { |
|
362 | 427 | mysql_free_result($rs); |
363 | 428 | } |
364 | 429 | |
@@ -366,7 +431,8 @@ discard block |
||
366 | 431 | * @name: numFields |
367 | 432 | * |
368 | 433 | */ |
369 | - function numFields($rs) { |
|
434 | + function numFields($rs) |
|
435 | + { |
|
370 | 436 | return mysql_num_fields($rs); |
371 | 437 | } |
372 | 438 | |
@@ -374,7 +440,8 @@ discard block |
||
374 | 440 | * @name: fieldName |
375 | 441 | * |
376 | 442 | */ |
377 | - function fieldName($rs,$col=0) { |
|
443 | + function fieldName($rs,$col=0) |
|
444 | + { |
|
378 | 445 | return mysql_field_name($rs,$col); |
379 | 446 | } |
380 | 447 | |
@@ -382,7 +449,8 @@ discard block |
||
382 | 449 | * @name: selectDb |
383 | 450 | * |
384 | 451 | */ |
385 | - function selectDb($name) { |
|
452 | + function selectDb($name) |
|
453 | + { |
|
386 | 454 | mysql_select_db($name); |
387 | 455 | } |
388 | 456 | |
@@ -391,8 +459,11 @@ discard block |
||
391 | 459 | * @name: getInsertId |
392 | 460 | * |
393 | 461 | */ |
394 | - function getInsertId($conn=NULL) { |
|
395 | - if( !is_resource($conn)) $conn =& $this->conn; |
|
462 | + function getInsertId($conn=NULL) |
|
463 | + { |
|
464 | + if( !is_resource($conn)) { |
|
465 | + $conn =& $this->conn; |
|
466 | + } |
|
396 | 467 | return mysql_insert_id($conn); |
397 | 468 | } |
398 | 469 | |
@@ -400,8 +471,11 @@ discard block |
||
400 | 471 | * @name: getAffectedRows |
401 | 472 | * |
402 | 473 | */ |
403 | - function getAffectedRows($conn=NULL) { |
|
404 | - if (!is_resource($conn)) $conn =& $this->conn; |
|
474 | + function getAffectedRows($conn=NULL) |
|
475 | + { |
|
476 | + if (!is_resource($conn)) { |
|
477 | + $conn =& $this->conn; |
|
478 | + } |
|
405 | 479 | return mysql_affected_rows($conn); |
406 | 480 | } |
407 | 481 | |
@@ -409,8 +483,11 @@ discard block |
||
409 | 483 | * @name: getLastError |
410 | 484 | * |
411 | 485 | */ |
412 | - function getLastError($conn=NULL) { |
|
413 | - if (!is_resource($conn)) $conn =& $this->conn; |
|
486 | + function getLastError($conn=NULL) |
|
487 | + { |
|
488 | + if (!is_resource($conn)) { |
|
489 | + $conn =& $this->conn; |
|
490 | + } |
|
414 | 491 | return mysql_error($conn); |
415 | 492 | } |
416 | 493 | |
@@ -418,7 +495,8 @@ discard block |
||
418 | 495 | * @name: getRecordCount |
419 | 496 | * |
420 | 497 | */ |
421 | - function getRecordCount($ds) { |
|
498 | + function getRecordCount($ds) |
|
499 | + { |
|
422 | 500 | return (is_resource($ds)) ? mysql_num_rows($ds) : 0; |
423 | 501 | } |
424 | 502 | |
@@ -428,18 +506,16 @@ discard block |
||
428 | 506 | * @param: $dsq - dataset |
429 | 507 | * |
430 | 508 | */ |
431 | - function getRow($ds, $mode = 'assoc') { |
|
509 | + function getRow($ds, $mode = 'assoc') |
|
510 | + { |
|
432 | 511 | if (is_resource($ds)) { |
433 | 512 | if ($mode == 'assoc') { |
434 | 513 | return mysql_fetch_assoc($ds); |
435 | - } |
|
436 | - elseif ($mode == 'num') { |
|
514 | + } elseif ($mode == 'num') { |
|
437 | 515 | return mysql_fetch_row($ds); |
438 | - } |
|
439 | - elseif ($mode == 'object') { |
|
516 | + } elseif ($mode == 'object') { |
|
440 | 517 | return mysql_fetch_object($ds); |
441 | - } |
|
442 | - elseif ($mode == 'both') { |
|
518 | + } elseif ($mode == 'both') { |
|
443 | 519 | return mysql_fetch_array($ds, MYSQL_BOTH); |
444 | 520 | } else { |
445 | 521 | global $modx; |
@@ -453,9 +529,11 @@ discard block |
||
453 | 529 | * @desc: returns an array of the values found on colun $name |
454 | 530 | * @param: $dsq - dataset or query string |
455 | 531 | */ |
456 | - function getColumn($name, $dsq) { |
|
457 | - if (!is_resource($dsq)) |
|
458 | - $dsq = $this->query($dsq); |
|
532 | + function getColumn($name, $dsq) |
|
533 | + { |
|
534 | + if (!is_resource($dsq)) { |
|
535 | + $dsq = $this->query($dsq); |
|
536 | + } |
|
459 | 537 | if ($dsq) { |
460 | 538 | $col = array (); |
461 | 539 | while ($row = $this->getRow($dsq)) { |
@@ -470,9 +548,11 @@ discard block |
||
470 | 548 | * @desc: returns an array containing the column $name |
471 | 549 | * @param: $dsq - dataset or query string |
472 | 550 | */ |
473 | - function getColumnNames($dsq) { |
|
474 | - if (!is_resource($dsq)) |
|
475 | - $dsq = $this->query($dsq); |
|
551 | + function getColumnNames($dsq) |
|
552 | + { |
|
553 | + if (!is_resource($dsq)) { |
|
554 | + $dsq = $this->query($dsq); |
|
555 | + } |
|
476 | 556 | if ($dsq) { |
477 | 557 | $names = array (); |
478 | 558 | $limit = mysql_num_fields($dsq); |
@@ -488,9 +568,11 @@ discard block |
||
488 | 568 | * @desc: returns the value from the first column in the set |
489 | 569 | * @param: $dsq - dataset or query string |
490 | 570 | */ |
491 | - function getValue($dsq) { |
|
492 | - if (!is_resource($dsq)) |
|
493 | - $dsq = $this->query($dsq); |
|
571 | + function getValue($dsq) |
|
572 | + { |
|
573 | + if (!is_resource($dsq)) { |
|
574 | + $dsq = $this->query($dsq); |
|
575 | + } |
|
494 | 576 | if ($dsq) { |
495 | 577 | $r = $this->getRow($dsq, "num"); |
496 | 578 | return $r[0]; |
@@ -503,7 +585,8 @@ discard block |
||
503 | 585 | * table |
504 | 586 | * @param: $table: the full name of the database table |
505 | 587 | */ |
506 | - function getTableMetaData($table) { |
|
588 | + function getTableMetaData($table) |
|
589 | + { |
|
507 | 590 | $metadata = false; |
508 | 591 | if (!empty ($table)) { |
509 | 592 | $sql = "SHOW FIELDS FROM $table"; |
@@ -525,7 +608,8 @@ discard block |
||
525 | 608 | * @param: $fieldType: the type of field to format the date for |
526 | 609 | * (in MySQL, you have DATE, TIME, YEAR, and DATETIME) |
527 | 610 | */ |
528 | - function prepareDate($timestamp, $fieldType = 'DATETIME') { |
|
611 | + function prepareDate($timestamp, $fieldType = 'DATETIME') |
|
612 | + { |
|
529 | 613 | $date = ''; |
530 | 614 | if (!$timestamp === false && $timestamp > 0) { |
531 | 615 | switch ($fieldType) { |
@@ -554,8 +638,11 @@ discard block |
||
554 | 638 | * was passed |
555 | 639 | * @param: $rs Recordset to be packaged into an array |
556 | 640 | */ |
557 | - function makeArray($rs='',$index=false){ |
|
558 | - if (!$rs) return false; |
|
641 | + function makeArray($rs='',$index=false) |
|
642 | + { |
|
643 | + if (!$rs) { |
|
644 | + return false; |
|
645 | + } |
|
559 | 646 | $rsArray = array(); |
560 | 647 | $iterator = 0; |
561 | 648 | while ($row = $this->getRow($rs)) { |
@@ -572,7 +659,8 @@ discard block |
||
572 | 659 | * |
573 | 660 | * @return string |
574 | 661 | */ |
575 | - function getVersion() { |
|
662 | + function getVersion() |
|
663 | + { |
|
576 | 664 | return mysql_get_server_info(); |
577 | 665 | } |
578 | 666 | |
@@ -583,20 +671,19 @@ discard block |
||
583 | 671 | * @param string $str |
584 | 672 | * @return string |
585 | 673 | */ |
586 | - function replaceFullTableName($str,$force=null) { |
|
674 | + function replaceFullTableName($str,$force=null) |
|
675 | + { |
|
587 | 676 | |
588 | 677 | $str = trim($str); |
589 | 678 | $dbase = trim($this->config['dbase'],'`'); |
590 | 679 | $prefix = $this->config['table_prefix']; |
591 | - if(!empty($force)) |
|
592 | - { |
|
680 | + if(!empty($force)) { |
|
593 | 681 | $result = "`{$dbase}`.`{$prefix}{$str}`"; |
594 | - } |
|
595 | - elseif(strpos($str,'[+prefix+]')!==false) |
|
596 | - { |
|
682 | + } elseif(strpos($str,'[+prefix+]')!==false) { |
|
597 | 683 | $result = preg_replace('@\[\+prefix\+\]([0-9a-zA-Z_]+)@', "`{$dbase}`.`{$prefix}$1`", $str); |
684 | + } else { |
|
685 | + $result = $str; |
|
598 | 686 | } |
599 | - else $result = $str; |
|
600 | 687 | |
601 | 688 | return $result; |
602 | 689 | } |
@@ -604,7 +691,9 @@ discard block |
||
604 | 691 | function optimize($table_name) |
605 | 692 | { |
606 | 693 | $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
607 | - if($rs) $rs = $this->query("ALTER TABLE {$table_name}"); |
|
694 | + if($rs) { |
|
695 | + $rs = $this->query("ALTER TABLE {$table_name}"); |
|
696 | + } |
|
608 | 697 | return $rs; |
609 | 698 | } |
610 | 699 | |
@@ -614,23 +703,31 @@ discard block |
||
614 | 703 | return $rs; |
615 | 704 | } |
616 | 705 | |
617 | - function dataSeek($result, $row_number) { |
|
706 | + function dataSeek($result, $row_number) |
|
707 | + { |
|
618 | 708 | return mysql_data_seek($result, $row_number); |
619 | 709 | } |
620 | 710 | |
621 | - function _getFieldsStringFromArray($fields=array()) { |
|
711 | + function _getFieldsStringFromArray($fields=array()) |
|
712 | + { |
|
622 | 713 | |
623 | - if(empty($fields)) return '*'; |
|
714 | + if(empty($fields)) { |
|
715 | + return '*'; |
|
716 | + } |
|
624 | 717 | |
625 | 718 | $_ = array(); |
626 | 719 | foreach($fields as $k=>$v) { |
627 | - if($k!==$v) $_[] = "{$v} as {$k}"; |
|
628 | - else $_[] = $v; |
|
720 | + if($k!==$v) { |
|
721 | + $_[] = "{$v} as {$k}"; |
|
722 | + } else { |
|
723 | + $_[] = $v; |
|
724 | + } |
|
629 | 725 | } |
630 | 726 | return join(',', $_); |
631 | 727 | } |
632 | 728 | |
633 | - function _getFromStringFromArray($tables=array()) { |
|
729 | + function _getFromStringFromArray($tables=array()) |
|
730 | + { |
|
634 | 731 | $_ = array(); |
635 | 732 | foreach($tables as $k=>$v) { |
636 | 733 | $_[] = $v; |
@@ -16,14 +16,14 @@ discard block |
||
16 | 16 | * @name: DBAPI |
17 | 17 | * |
18 | 18 | */ |
19 | - function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET') { |
|
19 | + function __construct($host='',$dbase='', $uid='',$pwd='',$pre=null,$charset='',$connection_method='SET CHARACTER SET') { |
|
20 | 20 | $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
21 | 21 | $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
22 | 22 | $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
23 | 23 | $this->config['pass'] = $pwd ? $pwd : $GLOBALS['database_password']; |
24 | 24 | $this->config['charset'] = $charset ? $charset : $GLOBALS['database_connection_charset']; |
25 | 25 | $this->config['connection_method'] = $this->_dbconnectionmethod = (isset($GLOBALS['database_connection_method']) ? $GLOBALS['database_connection_method'] : $connection_method); |
26 | - $this->config['table_prefix'] = ($pre !== NULL) ? $pre : $GLOBALS['table_prefix']; |
|
26 | + $this->config['table_prefix'] = ($pre !== null) ? $pre : $GLOBALS['table_prefix']; |
|
27 | 27 | $this->initDataTypes(); |
28 | 28 | } |
29 | 29 | |
@@ -236,9 +236,9 @@ discard block |
||
236 | 236 | $where = trim($where); |
237 | 237 | $orderby = trim($orderby); |
238 | 238 | $limit = trim($limit); |
239 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
239 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "where {$where}"; |
|
240 | 240 | if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}"; |
241 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
241 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "limit {$limit}"; |
|
242 | 242 | return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}"); |
243 | 243 | } |
244 | 244 | } |
@@ -264,10 +264,10 @@ discard block |
||
264 | 264 | $where = trim($where); |
265 | 265 | $orderby = trim($orderby); |
266 | 266 | $limit = trim($limit); |
267 | - if($where!=='' && stripos($where,'WHERE')!==0) $where = "WHERE {$where}"; |
|
267 | + if($where!=='' && stripos($where,'WHERE')!==0) $where = "where {$where}"; |
|
268 | 268 | if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}"; |
269 | - if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
270 | - return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
|
269 | + if($limit!=='' && stripos($limit,'LIMIT')!==0) $limit = "limit {$limit}"; |
|
270 | + return $this->query("select {$fields} FROM {$from} {$where} {$orderby} {$limit}"); |
|
271 | 271 | } |
272 | 272 | |
273 | 273 | /** |
@@ -292,8 +292,8 @@ discard block |
||
292 | 292 | $fields = implode(",", $fields); |
293 | 293 | } |
294 | 294 | $where = trim($where); |
295 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
296 | - return $this->query("UPDATE {$table} SET {$fields} {$where}"); |
|
295 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "where {$where}"; |
|
296 | + return $this->query("update {$table} SET {$fields} {$where}"); |
|
297 | 297 | } |
298 | 298 | } |
299 | 299 | |
@@ -319,8 +319,8 @@ discard block |
||
319 | 319 | $fields = "(".implode(",", array_keys($fields)).")"; |
320 | 320 | $where = trim($where); |
321 | 321 | $limit = trim($limit); |
322 | - if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}"; |
|
323 | - if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}"; |
|
322 | + if($where!=='' && stripos($where, 'WHERE')!==0) $where = "where {$where}"; |
|
323 | + if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "limit {$limit}"; |
|
324 | 324 | $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}"); |
325 | 325 | } else { |
326 | 326 | $ds = $this->select($fromfields, $fromtable, $where, '', $limit); |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | * @name: getInsertId |
392 | 392 | * |
393 | 393 | */ |
394 | - function getInsertId($conn=NULL) { |
|
394 | + function getInsertId($conn=null) { |
|
395 | 395 | if( !is_resource($conn)) $conn =& $this->conn; |
396 | 396 | return mysql_insert_id($conn); |
397 | 397 | } |
@@ -400,7 +400,7 @@ discard block |
||
400 | 400 | * @name: getAffectedRows |
401 | 401 | * |
402 | 402 | */ |
403 | - function getAffectedRows($conn=NULL) { |
|
403 | + function getAffectedRows($conn=null) { |
|
404 | 404 | if (!is_resource($conn)) $conn =& $this->conn; |
405 | 405 | return mysql_affected_rows($conn); |
406 | 406 | } |
@@ -409,7 +409,7 @@ discard block |
||
409 | 409 | * @name: getLastError |
410 | 410 | * |
411 | 411 | */ |
412 | - function getLastError($conn=NULL) { |
|
412 | + function getLastError($conn=null) { |
|
413 | 413 | if (!is_resource($conn)) $conn =& $this->conn; |
414 | 414 | return mysql_error($conn); |
415 | 415 | } |
@@ -610,7 +610,7 @@ discard block |
||
610 | 610 | |
611 | 611 | function truncate($table_name) |
612 | 612 | { |
613 | - $rs = $this->query("TRUNCATE {$table_name}"); |
|
613 | + $rs = $this->query("truncate {$table_name}"); |
|
614 | 614 | return $rs; |
615 | 615 | } |
616 | 616 |
@@ -452,6 +452,7 @@ discard block |
||
452 | 452 | * @name: getColumn |
453 | 453 | * @desc: returns an array of the values found on colun $name |
454 | 454 | * @param: $dsq - dataset or query string |
455 | + * @param string $name |
|
455 | 456 | */ |
456 | 457 | function getColumn($name, $dsq) { |
457 | 458 | if (!is_resource($dsq)) |
@@ -601,6 +602,9 @@ discard block |
||
601 | 602 | return $result; |
602 | 603 | } |
603 | 604 | |
605 | + /** |
|
606 | + * @param string $table_name |
|
607 | + */ |
|
604 | 608 | function optimize($table_name) |
605 | 609 | { |
606 | 610 | $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
@@ -618,6 +622,9 @@ discard block |
||
618 | 622 | return mysql_data_seek($result, $row_number); |
619 | 623 | } |
620 | 624 | |
625 | + /** |
|
626 | + * @return string |
|
627 | + */ |
|
621 | 628 | function _getFieldsStringFromArray($fields=array()) { |
622 | 629 | |
623 | 630 | if(empty($fields)) return '*'; |
@@ -630,6 +637,9 @@ discard block |
||
630 | 637 | return join(',', $_); |
631 | 638 | } |
632 | 639 | |
640 | + /** |
|
641 | + * @return string |
|
642 | + */ |
|
633 | 643 | function _getFromStringFromArray($tables=array()) { |
634 | 644 | $_ = array(); |
635 | 645 | foreach($tables as $k=>$v) { |
@@ -9,9 +9,9 @@ |
||
9 | 9 | |
10 | 10 | if (empty($database_type)) $database_type = 'mysql'; |
11 | 11 | |
12 | -if (!include_once MODX_MANAGER_PATH . 'includes/extenders/dbapi.' . $database_type . '.class.inc.php'){ |
|
12 | +if (!include_once MODX_MANAGER_PATH.'includes/extenders/dbapi.'.$database_type.'.class.inc.php') { |
|
13 | 13 | return false; |
14 | -}else{ |
|
15 | - $this->db= new DBAPI; |
|
14 | +} else { |
|
15 | + $this->db = new DBAPI; |
|
16 | 16 | return true; |
17 | 17 | } |
@@ -7,11 +7,13 @@ |
||
7 | 7 | |
8 | 8 | global $database_type; |
9 | 9 | |
10 | -if (empty($database_type)) $database_type = 'mysql'; |
|
10 | +if (empty($database_type)) { |
|
11 | + $database_type = 'mysql'; |
|
12 | +} |
|
11 | 13 | |
12 | -if (!include_once MODX_MANAGER_PATH . 'includes/extenders/dbapi.' . $database_type . '.class.inc.php'){ |
|
14 | +if (!include_once MODX_MANAGER_PATH . 'includes/extenders/dbapi.' . $database_type . '.class.inc.php') { |
|
13 | 15 | return false; |
14 | -}else{ |
|
16 | +} else { |
|
15 | 17 | $this->db= new DBAPI; |
16 | 18 | return true; |
17 | 19 | } |
@@ -2,26 +2,26 @@ |
||
2 | 2 | // todo file_put_contents(), strftime(), mb_*() |
3 | 3 | class PHPCOMPAT |
4 | 4 | { |
5 | - function __construct() |
|
6 | - { |
|
7 | - } |
|
5 | + function __construct() |
|
6 | + { |
|
7 | + } |
|
8 | 8 | |
9 | - function htmlspecialchars($str='', $flags = ENT_COMPAT, $encode='') |
|
10 | - { |
|
11 | - global $modx; |
|
9 | + function htmlspecialchars($str='', $flags = ENT_COMPAT, $encode='') |
|
10 | + { |
|
11 | + global $modx; |
|
12 | 12 | |
13 | - if($str=='') return ''; |
|
13 | + if($str=='') return ''; |
|
14 | 14 | |
15 | - if($encode=='') $encode = $modx->config['modx_charset']; |
|
15 | + if($encode=='') $encode = $modx->config['modx_charset']; |
|
16 | 16 | |
17 | - $ent_str = htmlspecialchars($str, $flags, $encode); |
|
17 | + $ent_str = htmlspecialchars($str, $flags, $encode); |
|
18 | 18 | |
19 | - if(!empty($str) && empty($ent_str)) |
|
20 | - { |
|
21 | - $detect_order = implode(',', mb_detect_order()); |
|
22 | - $ent_str = mb_convert_encoding($str, $encode, $detect_order); |
|
23 | - } |
|
19 | + if(!empty($str) && empty($ent_str)) |
|
20 | + { |
|
21 | + $detect_order = implode(',', mb_detect_order()); |
|
22 | + $ent_str = mb_convert_encoding($str, $encode, $detect_order); |
|
23 | + } |
|
24 | 24 | |
25 | - return $ent_str; |
|
26 | - } |
|
25 | + return $ent_str; |
|
26 | + } |
|
27 | 27 | } |
@@ -6,17 +6,17 @@ |
||
6 | 6 | { |
7 | 7 | } |
8 | 8 | |
9 | - function htmlspecialchars($str='', $flags = ENT_COMPAT, $encode='') |
|
9 | + function htmlspecialchars($str = '', $flags = ENT_COMPAT, $encode = '') |
|
10 | 10 | { |
11 | 11 | global $modx; |
12 | 12 | |
13 | - if($str=='') return ''; |
|
13 | + if ($str == '') return ''; |
|
14 | 14 | |
15 | - if($encode=='') $encode = $modx->config['modx_charset']; |
|
15 | + if ($encode == '') $encode = $modx->config['modx_charset']; |
|
16 | 16 | |
17 | 17 | $ent_str = htmlspecialchars($str, $flags, $encode); |
18 | 18 | |
19 | - if(!empty($str) && empty($ent_str)) |
|
19 | + if (!empty($str) && empty($ent_str)) |
|
20 | 20 | { |
21 | 21 | $detect_order = implode(',', mb_detect_order()); |
22 | 22 | $ent_str = mb_convert_encoding($str, $encode, $detect_order); |
@@ -10,14 +10,17 @@ |
||
10 | 10 | { |
11 | 11 | global $modx; |
12 | 12 | |
13 | - if($str=='') return ''; |
|
13 | + if($str=='') { |
|
14 | + return ''; |
|
15 | + } |
|
14 | 16 | |
15 | - if($encode=='') $encode = $modx->config['modx_charset']; |
|
17 | + if($encode=='') { |
|
18 | + $encode = $modx->config['modx_charset']; |
|
19 | + } |
|
16 | 20 | |
17 | 21 | $ent_str = htmlspecialchars($str, $flags, $encode); |
18 | 22 | |
19 | - if(!empty($str) && empty($ent_str)) |
|
20 | - { |
|
23 | + if(!empty($str) && empty($ent_str)) { |
|
21 | 24 | $detect_order = implode(',', mb_detect_order()); |
22 | 25 | $ent_str = mb_convert_encoding($str, $encode, $detect_order); |
23 | 26 | } |
@@ -6,6 +6,9 @@ |
||
6 | 6 | { |
7 | 7 | } |
8 | 8 | |
9 | + /** |
|
10 | + * @param integer $flags |
|
11 | + */ |
|
9 | 12 | function htmlspecialchars($str='', $flags = ENT_COMPAT, $encode='') |
10 | 13 | { |
11 | 14 | global $modx; |
@@ -598,7 +598,7 @@ discard block |
||
598 | 598 | else $opt = true; |
599 | 599 | } |
600 | 600 | elseif(isset($modx->config['mce_element_format'])&&$modx->config['mce_element_format']==='html') |
601 | - $opt = false; |
|
601 | + $opt = false; |
|
602 | 602 | else $opt = true; |
603 | 603 | return nl2br($value,$opt); |
604 | 604 | case 'ltrim': |
@@ -1022,7 +1022,7 @@ discard block |
||
1022 | 1022 | { |
1023 | 1023 | $bt = $content; |
1024 | 1024 | if(strpos($content,'[*')!==false && $modx->documentIdentifier) |
1025 | - $content = $modx->mergeDocumentContent($content); |
|
1025 | + $content = $modx->mergeDocumentContent($content); |
|
1026 | 1026 | if(strpos($content,'[(')!==false) $content = $modx->mergeSettingsContent($content); |
1027 | 1027 | if(strpos($content,'{{')!==false) $content = $modx->mergeChunkContent($content); |
1028 | 1028 | if(strpos($content,'[!')!==false) $content = str_replace(array('[!','!]'),array('[[',']]'),$content); |
@@ -1,8 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if(!defined('MODX_CORE_PATH')) define('MODX_CORE_PATH', MODX_MANAGER_PATH.'includes/'); |
|
3 | +if (!defined('MODX_CORE_PATH')) define('MODX_CORE_PATH', MODX_MANAGER_PATH.'includes/'); |
|
4 | 4 | |
5 | -class MODIFIERS { |
|
5 | +class MODIFIERS{ |
|
6 | 6 | |
7 | 7 | var $placeholders = array(); |
8 | 8 | var $vars = array(); |
@@ -24,14 +24,14 @@ discard block |
||
24 | 24 | $this->condModifiers = '=,is,eq,equals,ne,neq,notequals,isnot,isnt,not,%,isempty,isnotempty,isntempty,>=,gte,eg,gte,greaterthan,>,gt,isgreaterthan,isgt,lowerthan,<,lt,<=,lte,islte,islowerthan,islt,el,find,in,inarray,in_array,fnmatch,wcard,wcard_match,wildcard,wildcard_match,is_file,is_dir,file_exists,is_readable,is_writable,is_image,regex,preg,preg_match,memberof,mo,isinrole,ir'; |
25 | 25 | } |
26 | 26 | |
27 | - function phxFilter($key,$value,$modifiers) |
|
27 | + function phxFilter($key, $value, $modifiers) |
|
28 | 28 | { |
29 | 29 | global $modx; |
30 | - if(substr($modifiers,0,3)!=='id(') $value = $this->parseDocumentSource($value); |
|
30 | + if (substr($modifiers, 0, 3) !== 'id(') $value = $this->parseDocumentSource($value); |
|
31 | 31 | $this->srcValue = $value; |
32 | 32 | $modifiers = trim($modifiers); |
33 | - $modifiers = ':'.trim($modifiers,':'); |
|
34 | - $modifiers = str_replace(array("\r\n","\r"), "\n", $modifiers); |
|
33 | + $modifiers = ':'.trim($modifiers, ':'); |
|
34 | + $modifiers = str_replace(array("\r\n", "\r"), "\n", $modifiers); |
|
35 | 35 | $modifiers = $this->splitEachModifiers($modifiers); |
36 | 36 | |
37 | 37 | $this->placeholders = array(); |
@@ -39,117 +39,117 @@ discard block |
||
39 | 39 | $this->placeholders['dummy'] = ''; |
40 | 40 | $this->condition = array(); |
41 | 41 | $this->vars = array(); |
42 | - $this->vars['name'] = & $key; |
|
43 | - $value = $this->parsePhx($key,$value,$modifiers); |
|
42 | + $this->vars['name'] = & $key; |
|
43 | + $value = $this->parsePhx($key, $value, $modifiers); |
|
44 | 44 | $this->vars = array(); |
45 | 45 | return $value; |
46 | 46 | } |
47 | 47 | |
48 | - function _getDelim($mode,$modifiers) { |
|
49 | - $c = substr($modifiers,0,1); |
|
50 | - if(!in_array($c, array('"', "'", '`')) ) return false; |
|
48 | + function _getDelim($mode, $modifiers){ |
|
49 | + $c = substr($modifiers, 0, 1); |
|
50 | + if (!in_array($c, array('"', "'", '`'))) return false; |
|
51 | 51 | |
52 | - $modifiers = substr($modifiers,1); |
|
53 | - $closure = $mode=='(' ? "{$c})" : $c; |
|
54 | - if(strpos($modifiers, $closure)===false) return false; |
|
52 | + $modifiers = substr($modifiers, 1); |
|
53 | + $closure = $mode == '(' ? "{$c})" : $c; |
|
54 | + if (strpos($modifiers, $closure) === false) return false; |
|
55 | 55 | |
56 | 56 | return $c; |
57 | 57 | } |
58 | 58 | |
59 | - function _getOpt($mode,$delim,$modifiers) { |
|
60 | - if($delim) { |
|
61 | - if($mode=='(') return substr($modifiers,1,strpos($modifiers, $delim . ')' )-1); |
|
59 | + function _getOpt($mode, $delim, $modifiers){ |
|
60 | + if ($delim) { |
|
61 | + if ($mode == '(') return substr($modifiers, 1, strpos($modifiers, $delim.')') - 1); |
|
62 | 62 | |
63 | - return substr($modifiers,1,strpos($modifiers,$delim,1)-1); |
|
63 | + return substr($modifiers, 1, strpos($modifiers, $delim, 1) - 1); |
|
64 | 64 | } |
65 | 65 | else { |
66 | - if($mode=='(') return substr($modifiers,0,strpos($modifiers, ')') ); |
|
66 | + if ($mode == '(') return substr($modifiers, 0, strpos($modifiers, ')')); |
|
67 | 67 | |
68 | 68 | $chars = str_split($modifiers); |
69 | - $opt=''; |
|
70 | - foreach($chars as $c) { |
|
71 | - if($c==':' || $c==')') break; |
|
72 | - $opt .=$c; |
|
69 | + $opt = ''; |
|
70 | + foreach ($chars as $c) { |
|
71 | + if ($c == ':' || $c == ')') break; |
|
72 | + $opt .= $c; |
|
73 | 73 | } |
74 | 74 | return $opt; |
75 | 75 | } |
76 | 76 | } |
77 | - function _getRemainModifiers($mode,$delim,$modifiers) { |
|
78 | - if($delim) { |
|
79 | - if($mode=='(') |
|
80 | - return $this->_fetchContent($modifiers, $delim . ')'); |
|
77 | + function _getRemainModifiers($mode, $delim, $modifiers){ |
|
78 | + if ($delim) { |
|
79 | + if ($mode == '(') |
|
80 | + return $this->_fetchContent($modifiers, $delim.')'); |
|
81 | 81 | else { |
82 | 82 | $modifiers = trim($modifiers); |
83 | - $modifiers = substr($modifiers,1); |
|
83 | + $modifiers = substr($modifiers, 1); |
|
84 | 84 | return $this->_fetchContent($modifiers, $delim); |
85 | 85 | } |
86 | 86 | } |
87 | 87 | else { |
88 | - if($mode=='(') return $this->_fetchContent($modifiers, ')'); |
|
88 | + if ($mode == '(') return $this->_fetchContent($modifiers, ')'); |
|
89 | 89 | $chars = str_split($modifiers); |
90 | - foreach($chars as $c) { |
|
91 | - if($c==':') return $modifiers; |
|
92 | - else $modifiers = substr($modifiers,1); |
|
90 | + foreach ($chars as $c) { |
|
91 | + if ($c == ':') return $modifiers; |
|
92 | + else $modifiers = substr($modifiers, 1); |
|
93 | 93 | } |
94 | 94 | return $modifiers; |
95 | 95 | } |
96 | 96 | } |
97 | 97 | |
98 | - function _fetchContent($string,$delim) { |
|
98 | + function _fetchContent($string, $delim){ |
|
99 | 99 | $len = strlen($delim); |
100 | 100 | $string = $this->parseDocumentSource($string); |
101 | - return substr($string,strpos($string, $delim)+$len); |
|
101 | + return substr($string, strpos($string, $delim) + $len); |
|
102 | 102 | } |
103 | 103 | |
104 | - function splitEachModifiers($modifiers) { |
|
104 | + function splitEachModifiers($modifiers){ |
|
105 | 105 | global $modx; |
106 | 106 | |
107 | 107 | $cmd = ''; |
108 | 108 | $bt = ''; |
109 | - while($bt!==$modifiers) { |
|
109 | + while ($bt !== $modifiers) { |
|
110 | 110 | $bt = $modifiers; |
111 | - $c = substr($modifiers,0,1); |
|
112 | - $modifiers = substr($modifiers,1); |
|
111 | + $c = substr($modifiers, 0, 1); |
|
112 | + $modifiers = substr($modifiers, 1); |
|
113 | 113 | |
114 | - if($c===':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) { // :=, :!=, :<=, :>=, :!<=, :!>= |
|
115 | - $c = substr($modifiers,strlen($match[1]),1); |
|
114 | + if ($c === ':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) { // :=, :!=, :<=, :>=, :!<=, :!>= |
|
115 | + $c = substr($modifiers, strlen($match[1]), 1); |
|
116 | 116 | $debuginfo = "#i=0 #c=[{$c}] #m=[{$modifiers}]"; |
117 | - if($c==='(') $modifiers = substr($modifiers,strlen($match[1])+1); |
|
118 | - else $modifiers = substr($modifiers,strlen($match[1])); |
|
117 | + if ($c === '(') $modifiers = substr($modifiers, strlen($match[1]) + 1); |
|
118 | + else $modifiers = substr($modifiers, strlen($match[1])); |
|
119 | 119 | |
120 | - $delim = $this->_getDelim($c,$modifiers); |
|
121 | - $opt = $this->_getOpt($c,$delim,$modifiers); |
|
122 | - $modifiers = trim($this->_getRemainModifiers($c,$delim,$modifiers)); |
|
120 | + $delim = $this->_getDelim($c, $modifiers); |
|
121 | + $opt = $this->_getOpt($c, $delim, $modifiers); |
|
122 | + $modifiers = trim($this->_getRemainModifiers($c, $delim, $modifiers)); |
|
123 | 123 | |
124 | - $result[]=array('cmd'=>trim($match[1]),'opt'=>$opt,'debuginfo'=>$debuginfo); |
|
124 | + $result[] = array('cmd'=>trim($match[1]), 'opt'=>$opt, 'debuginfo'=>$debuginfo); |
|
125 | 125 | $cmd = ''; |
126 | 126 | } |
127 | - elseif(in_array($c,array('+','-','*','/')) && preg_match('@^[0-9]+@', $modifiers, $match)) { // :+3, :-3, :*3 ... |
|
128 | - $modifiers = substr($modifiers,strlen($match[0])); |
|
129 | - $result[]=array('cmd'=>'math','opt'=>'%s'.$c.$match[0]); |
|
127 | + elseif (in_array($c, array('+', '-', '*', '/')) && preg_match('@^[0-9]+@', $modifiers, $match)) { // :+3, :-3, :*3 ... |
|
128 | + $modifiers = substr($modifiers, strlen($match[0])); |
|
129 | + $result[] = array('cmd'=>'math', 'opt'=>'%s'.$c.$match[0]); |
|
130 | 130 | $cmd = ''; |
131 | 131 | } |
132 | - elseif($c==='(' || $c==='=') { |
|
132 | + elseif ($c === '(' || $c === '=') { |
|
133 | 133 | $modifiers = $m1 = trim($modifiers); |
134 | - $delim = $this->_getDelim($c,$modifiers); |
|
135 | - $opt = $this->_getOpt($c,$delim,$modifiers); |
|
136 | - $modifiers = trim($this->_getRemainModifiers($c,$delim,$modifiers)); |
|
134 | + $delim = $this->_getDelim($c, $modifiers); |
|
135 | + $opt = $this->_getOpt($c, $delim, $modifiers); |
|
136 | + $modifiers = trim($this->_getRemainModifiers($c, $delim, $modifiers)); |
|
137 | 137 | $debuginfo = "#i=1 #c=[{$c}] #delim=[{$delim}] #m1=[{$m1}] remainMdf=[{$modifiers}]"; |
138 | 138 | |
139 | - $result[]=array('cmd'=>trim($cmd),'opt'=>$opt,'debuginfo'=>$debuginfo); |
|
139 | + $result[] = array('cmd'=>trim($cmd), 'opt'=>$opt, 'debuginfo'=>$debuginfo); |
|
140 | 140 | |
141 | 141 | $cmd = ''; |
142 | 142 | } |
143 | - elseif($c==':') { |
|
143 | + elseif ($c == ':') { |
|
144 | 144 | $debuginfo = "#i=2 #c=[{$c}] #m=[{$modifiers}]"; |
145 | - if($cmd!=='') $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
|
145 | + if ($cmd !== '') $result[] = array('cmd'=>trim($cmd), 'opt'=>'', 'debuginfo'=>$debuginfo); |
|
146 | 146 | |
147 | 147 | $cmd = ''; |
148 | 148 | } |
149 | - elseif(trim($modifiers)=='' && trim($cmd)!=='') { |
|
149 | + elseif (trim($modifiers) == '' && trim($cmd) !== '') { |
|
150 | 150 | $debuginfo = "#i=3 #c=[{$c}] #m=[{$modifiers}]"; |
151 | 151 | $cmd .= $c; |
152 | - $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
|
152 | + $result[] = array('cmd'=>trim($cmd), 'opt'=>'', 'debuginfo'=>$debuginfo); |
|
153 | 153 | |
154 | 154 | break; |
155 | 155 | } |
@@ -158,64 +158,64 @@ discard block |
||
158 | 158 | } |
159 | 159 | } |
160 | 160 | |
161 | - if(empty($result)) return array(); |
|
161 | + if (empty($result)) return array(); |
|
162 | 162 | |
163 | - foreach($result as $i=>$a) |
|
163 | + foreach ($result as $i=>$a) |
|
164 | 164 | { |
165 | 165 | $a['opt'] = $this->parseDocumentSource($a['opt']); |
166 | - $result[$i]['opt'] = $modx->mergePlaceholderContent($a['opt'],$this->placeholders); |
|
166 | + $result[$i]['opt'] = $modx->mergePlaceholderContent($a['opt'], $this->placeholders); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | return $result; |
170 | 170 | } |
171 | 171 | |
172 | - function parsePhx($key,$value,$modifiers) |
|
172 | + function parsePhx($key, $value, $modifiers) |
|
173 | 173 | { |
174 | 174 | global $modx; |
175 | - $cacheKey = md5(sprintf('parsePhx#%s#%s#%s',$key,$value,print_r($modifiers,true))); |
|
176 | - if(isset($this->tmpCache[$cacheKey])) return $this->tmpCache[$cacheKey]; |
|
177 | - if(empty($modifiers)) return ''; |
|
175 | + $cacheKey = md5(sprintf('parsePhx#%s#%s#%s', $key, $value, print_r($modifiers, true))); |
|
176 | + if (isset($this->tmpCache[$cacheKey])) return $this->tmpCache[$cacheKey]; |
|
177 | + if (empty($modifiers)) return ''; |
|
178 | 178 | |
179 | - foreach($modifiers as $m) |
|
179 | + foreach ($modifiers as $m) |
|
180 | 180 | { |
181 | 181 | $lastKey = strtolower($m['cmd']); |
182 | 182 | } |
183 | - $_ = explode(',',$this->condModifiers); |
|
184 | - if(in_array($lastKey,$_)) |
|
183 | + $_ = explode(',', $this->condModifiers); |
|
184 | + if (in_array($lastKey, $_)) |
|
185 | 185 | { |
186 | - $modifiers[] = array('cmd'=>'then','opt'=>'1'); |
|
187 | - $modifiers[] = array('cmd'=>'else','opt'=>'0'); |
|
186 | + $modifiers[] = array('cmd'=>'then', 'opt'=>'1'); |
|
187 | + $modifiers[] = array('cmd'=>'else', 'opt'=>'0'); |
|
188 | 188 | } |
189 | 189 | |
190 | - foreach($modifiers as $i=>$a) |
|
190 | + foreach ($modifiers as $i=>$a) |
|
191 | 191 | { |
192 | - $value = $this->Filter($key,$value, $a['cmd'], $a['opt']); |
|
192 | + $value = $this->Filter($key, $value, $a['cmd'], $a['opt']); |
|
193 | 193 | } |
194 | 194 | $this->tmpCache[$cacheKey] = $value; |
195 | 195 | return $value; |
196 | 196 | } |
197 | 197 | |
198 | 198 | // Parser: modifier detection and eXtended processing if needed |
199 | - function Filter($key, $value, $cmd, $opt='') |
|
199 | + function Filter($key, $value, $cmd, $opt = '') |
|
200 | 200 | { |
201 | 201 | global $modx; |
202 | 202 | |
203 | - if($key==='documentObject') $value = $modx->documentIdentifier; |
|
203 | + if ($key === 'documentObject') $value = $modx->documentIdentifier; |
|
204 | 204 | $cmd = $this->parseDocumentSource($cmd); |
205 | - if(preg_match('@^[1-9][/0-9]*$@',$cmd)) |
|
205 | + if (preg_match('@^[1-9][/0-9]*$@', $cmd)) |
|
206 | 206 | { |
207 | - if(strpos($cmd,'/')!==false) |
|
208 | - $cmd = $this->substr($cmd,strrpos($cmd,'/')+1); |
|
207 | + if (strpos($cmd, '/') !== false) |
|
208 | + $cmd = $this->substr($cmd, strrpos($cmd, '/') + 1); |
|
209 | 209 | $opt = $cmd; |
210 | 210 | $cmd = 'id'; |
211 | 211 | } |
212 | 212 | |
213 | - if(isset($modx->snippetCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
214 | - elseif(isset($modx->chunkCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
213 | + if (isset($modx->snippetCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
214 | + elseif (isset($modx->chunkCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
215 | 215 | else $this->elmName = ''; |
216 | 216 | |
217 | 217 | $cmd = strtolower($cmd); |
218 | - if($this->elmName!=='') |
|
218 | + if ($this->elmName !== '') |
|
219 | 219 | $value = $this->getValueFromElement($key, $value, $cmd, $opt); |
220 | 220 | else |
221 | 221 | $value = $this->getValueFromPreset($key, $value, $cmd, $opt); |
@@ -225,12 +225,12 @@ discard block |
||
225 | 225 | return $value; |
226 | 226 | } |
227 | 227 | |
228 | - function isEmpty($cmd,$value) |
|
228 | + function isEmpty($cmd, $value) |
|
229 | 229 | { |
230 | - if($value!=='') return false; |
|
230 | + if ($value !== '') return false; |
|
231 | 231 | |
232 | - $_ = explode(',', $this->condModifiers . ',_default,default,if,input,or,and,show,this,select,switch,then,else,id,ifempty,smart_desc,smart_description,summary'); |
|
233 | - if(in_array($cmd,$_)) return false; |
|
232 | + $_ = explode(',', $this->condModifiers.',_default,default,if,input,or,and,show,this,select,switch,then,else,id,ifempty,smart_desc,smart_description,summary'); |
|
233 | + if (in_array($cmd, $_)) return false; |
|
234 | 234 | else return true; |
235 | 235 | } |
236 | 236 | |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | { |
239 | 239 | global $modx; |
240 | 240 | |
241 | - if($this->isEmpty($cmd,$value)) return ''; |
|
241 | + if ($this->isEmpty($cmd, $value)) return ''; |
|
242 | 242 | |
243 | 243 | $this->key = $key; |
244 | 244 | $this->value = $value; |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | ##### Conditional Modifiers |
250 | 250 | case 'input': |
251 | 251 | case 'if': |
252 | - if(!$opt) return $value; |
|
252 | + if (!$opt) return $value; |
|
253 | 253 | return $opt; |
254 | 254 | case '=': |
255 | 255 | case 'eq': |
@@ -262,9 +262,9 @@ discard block |
||
262 | 262 | case 'isnot': |
263 | 263 | case 'isnt': |
264 | 264 | case 'not': |
265 | - $this->condition[] = intval($value != $opt);break; |
|
265 | + $this->condition[] = intval($value != $opt); break; |
|
266 | 266 | case '%': |
267 | - $this->condition[] = intval($value%$opt==0);break; |
|
267 | + $this->condition[] = intval($value % $opt == 0); break; |
|
268 | 268 | case 'isempty': |
269 | 269 | $this->condition[] = intval(empty($value)); break; |
270 | 270 | case 'isntempty': |
@@ -274,57 +274,57 @@ discard block |
||
274 | 274 | case 'gte': |
275 | 275 | case 'eg': |
276 | 276 | case 'isgte': |
277 | - $this->condition[] = intval($value >= $opt);break; |
|
277 | + $this->condition[] = intval($value >= $opt); break; |
|
278 | 278 | case '<=': |
279 | 279 | case 'lte': |
280 | 280 | case 'el': |
281 | 281 | case 'islte': |
282 | - $this->condition[] = intval($value <= $opt);break; |
|
282 | + $this->condition[] = intval($value <= $opt); break; |
|
283 | 283 | case '>': |
284 | 284 | case 'gt': |
285 | 285 | case 'greaterthan': |
286 | 286 | case 'isgreaterthan': |
287 | 287 | case 'isgt': |
288 | - $this->condition[] = intval($value > $opt);break; |
|
288 | + $this->condition[] = intval($value > $opt); break; |
|
289 | 289 | case '<': |
290 | 290 | case 'lt': |
291 | 291 | case 'lowerthan': |
292 | 292 | case 'islowerthan': |
293 | 293 | case 'islt': |
294 | - $this->condition[] = intval($value < $opt);break; |
|
294 | + $this->condition[] = intval($value < $opt); break; |
|
295 | 295 | case 'find': |
296 | - $this->condition[] = intval(strpos($value, $opt)!==false);break; |
|
296 | + $this->condition[] = intval(strpos($value, $opt) !== false); break; |
|
297 | 297 | case 'inarray': |
298 | 298 | case 'in_array': |
299 | 299 | case 'in': |
300 | 300 | $opt = explode(',', $opt); |
301 | - $this->condition[] = intval(in_array($value, $opt)!==false);break; |
|
301 | + $this->condition[] = intval(in_array($value, $opt) !== false); break; |
|
302 | 302 | case 'wildcard_match': |
303 | 303 | case 'wcard_match': |
304 | 304 | case 'wildcard': |
305 | 305 | case 'wcard': |
306 | 306 | case 'fnmatch': |
307 | - $this->condition[] = intval(fnmatch($opt, $value)!==false);break; |
|
307 | + $this->condition[] = intval(fnmatch($opt, $value) !== false); break; |
|
308 | 308 | case 'is_file': |
309 | 309 | case 'is_dir': |
310 | 310 | case 'file_exists': |
311 | 311 | case 'is_readable': |
312 | 312 | case 'is_writable': |
313 | - if(!$opt) $path = $value; |
|
313 | + if (!$opt) $path = $value; |
|
314 | 314 | else $path = $opt; |
315 | - if(strpos($path,MODX_MANAGER_PATH)!==false) exit('Can not read core path'); |
|
316 | - if(strpos($path,$modx->config['base_path'])===false) $path = ltrim($path,'/'); |
|
317 | - $this->condition[] = intval($cmd($path)!==false);break; |
|
315 | + if (strpos($path, MODX_MANAGER_PATH) !== false) exit('Can not read core path'); |
|
316 | + if (strpos($path, $modx->config['base_path']) === false) $path = ltrim($path, '/'); |
|
317 | + $this->condition[] = intval($cmd($path) !== false); break; |
|
318 | 318 | case 'is_image': |
319 | - if(!$opt) $path = $value; |
|
319 | + if (!$opt) $path = $value; |
|
320 | 320 | else $path = $opt; |
321 | - if(!is_file($path)) {$this->condition[]='0';break;} |
|
321 | + if (!is_file($path)) {$this->condition[] = '0'; break; } |
|
322 | 322 | $_ = getimagesize($path); |
323 | - $this->condition[] = intval($_[0]);break; |
|
323 | + $this->condition[] = intval($_[0]); break; |
|
324 | 324 | case 'regex': |
325 | 325 | case 'preg': |
326 | 326 | case 'preg_match': |
327 | - $this->condition[] = intval(preg_match($opt,$value));break; |
|
327 | + $this->condition[] = intval(preg_match($opt, $value)); break; |
|
328 | 328 | case 'isinrole': |
329 | 329 | case 'ir': |
330 | 330 | case 'memberof': |
@@ -333,50 +333,50 @@ discard block |
||
333 | 333 | $this->condition[] = $this->includeMdfFile('memberof'); |
334 | 334 | break; |
335 | 335 | case 'or': |
336 | - $this->condition[] = '||';break; |
|
336 | + $this->condition[] = '||'; break; |
|
337 | 337 | case 'and': |
338 | - $this->condition[] = '&&';break; |
|
338 | + $this->condition[] = '&&'; break; |
|
339 | 339 | case 'show': |
340 | 340 | case 'this': |
341 | - $conditional = join(' ',$this->condition); |
|
341 | + $conditional = join(' ', $this->condition); |
|
342 | 342 | $isvalid = intval(eval("return ({$conditional});")); |
343 | 343 | if ($isvalid) return $this->srcValue; |
344 | 344 | return NULL; |
345 | 345 | case 'then': |
346 | - $conditional = join(' ',$this->condition); |
|
346 | + $conditional = join(' ', $this->condition); |
|
347 | 347 | $isvalid = intval(eval("return ({$conditional});")); |
348 | 348 | if ($isvalid) return $opt; |
349 | 349 | return null; |
350 | 350 | case 'else': |
351 | - $conditional = join(' ',$this->condition); |
|
351 | + $conditional = join(' ', $this->condition); |
|
352 | 352 | $isvalid = intval(eval("return ({$conditional});")); |
353 | 353 | if (!$isvalid) return $opt; |
354 | 354 | break; |
355 | 355 | case 'select': |
356 | 356 | case 'switch': |
357 | - $raw = explode('&',$opt); |
|
357 | + $raw = explode('&', $opt); |
|
358 | 358 | $map = array(); |
359 | 359 | $c = count($raw); |
360 | - for($m=0; $m<$c; $m++) { |
|
361 | - $mi = explode('=',$raw[$m],2); |
|
360 | + for ($m = 0; $m < $c; $m++) { |
|
361 | + $mi = explode('=', $raw[$m], 2); |
|
362 | 362 | $map[$mi[0]] = $mi[1]; |
363 | 363 | } |
364 | - if(isset($map[$value])) return $map[$value]; |
|
364 | + if (isset($map[$value])) return $map[$value]; |
|
365 | 365 | else return ''; |
366 | 366 | ##### End of Conditional Modifiers |
367 | 367 | |
368 | 368 | ##### Encode / Decode / Hash / Escape |
369 | 369 | case 'htmlent': |
370 | 370 | case 'htmlentities': |
371 | - return htmlentities($value,ENT_QUOTES,$modx->config['modx_charset']); |
|
371 | + return htmlentities($value, ENT_QUOTES, $modx->config['modx_charset']); |
|
372 | 372 | case 'html_entity_decode': |
373 | 373 | case 'decode_html': |
374 | 374 | case 'html_decode': |
375 | - return html_entity_decode($value,ENT_QUOTES,$modx->config['modx_charset']); |
|
375 | + return html_entity_decode($value, ENT_QUOTES, $modx->config['modx_charset']); |
|
376 | 376 | case 'esc': |
377 | 377 | case 'escape': |
378 | 378 | $value = preg_replace('/&(#[0-9]+|[a-z]+);/i', '&$1;', htmlspecialchars($value, ENT_QUOTES, $modx->config['modx_charset'])); |
379 | - return str_replace(array('[', ']', '`'),array('[', ']', '`'),$value); |
|
379 | + return str_replace(array('[', ']', '`'), array('[', ']', '`'), $value); |
|
380 | 380 | case 'sql_escape': |
381 | 381 | case 'encode_js': |
382 | 382 | return $modx->db->escape($value); |
@@ -386,39 +386,39 @@ discard block |
||
386 | 386 | case 'html_encode': |
387 | 387 | return preg_replace('/&(#[0-9]+|[a-z]+);/i', '&$1;', htmlspecialchars($value, ENT_QUOTES, $modx->config['modx_charset'])); |
388 | 388 | case 'spam_protect': |
389 | - return str_replace(array('@','.'),array('@','.'),$value); |
|
389 | + return str_replace(array('@', '.'), array('@', '.'), $value); |
|
390 | 390 | case 'strip': |
391 | - if($opt==='') $opt = ' '; |
|
391 | + if ($opt === '') $opt = ' '; |
|
392 | 392 | return preg_replace('/[\n\r\t\s]+/', $opt, $value); |
393 | 393 | case 'strip_linefeeds': |
394 | - return str_replace(array("\n","\r"), '', $value); |
|
394 | + return str_replace(array("\n", "\r"), '', $value); |
|
395 | 395 | case 'notags': |
396 | 396 | case 'strip_tags': |
397 | 397 | case 'remove_html': |
398 | - if($opt!=='') |
|
398 | + if ($opt !== '') |
|
399 | 399 | { |
400 | 400 | $param = array(); |
401 | - foreach(explode(',',$opt) as $v) |
|
401 | + foreach (explode(',', $opt) as $v) |
|
402 | 402 | { |
403 | - $v = trim($v,'</> '); |
|
403 | + $v = trim($v, '</> '); |
|
404 | 404 | $param[] = "<{$v}>"; |
405 | 405 | } |
406 | - $params = join(',',$param); |
|
406 | + $params = join(',', $param); |
|
407 | 407 | } |
408 | 408 | else $params = ''; |
409 | - if(!strpos($params,'<br>')===false) { |
|
410 | - $value = preg_replace('@(<br[ /]*>)\n@','$1',$value); |
|
411 | - $value = preg_replace('@<br[ /]*>@',"\n",$value); |
|
409 | + if (!strpos($params, '<br>') === false) { |
|
410 | + $value = preg_replace('@(<br[ /]*>)\n@', '$1', $value); |
|
411 | + $value = preg_replace('@<br[ /]*>@', "\n", $value); |
|
412 | 412 | } |
413 | - return $this->strip_tags($value,$params); |
|
413 | + return $this->strip_tags($value, $params); |
|
414 | 414 | case 'urlencode': |
415 | 415 | case 'url_encode': |
416 | 416 | case 'encode_url': |
417 | 417 | return urlencode($value); |
418 | 418 | case 'base64_decode': |
419 | - if($opt!=='false') $opt = true; |
|
419 | + if ($opt !== 'false') $opt = true; |
|
420 | 420 | else $opt = false; |
421 | - return base64_decode($value,$opt); |
|
421 | + return base64_decode($value, $opt); |
|
422 | 422 | case 'encode_sha1': $cmd = 'sha1'; |
423 | 423 | case 'addslashes': |
424 | 424 | case 'urldecode': |
@@ -442,18 +442,18 @@ discard block |
||
442 | 442 | case 'upper_case': |
443 | 443 | return $this->strtoupper($value); |
444 | 444 | case 'capitalize': |
445 | - $_ = explode(' ',$value); |
|
446 | - foreach($_ as $i=>$v) |
|
445 | + $_ = explode(' ', $value); |
|
446 | + foreach ($_ as $i=>$v) |
|
447 | 447 | { |
448 | 448 | $_[$i] = ucfirst($v); |
449 | 449 | } |
450 | - return join(' ',$_); |
|
450 | + return join(' ', $_); |
|
451 | 451 | case 'zenhan': |
452 | - if(empty($opt)) $opt='VKas'; |
|
453 | - return mb_convert_kana($value,$opt,$modx->config['modx_charset']); |
|
452 | + if (empty($opt)) $opt = 'VKas'; |
|
453 | + return mb_convert_kana($value, $opt, $modx->config['modx_charset']); |
|
454 | 454 | case 'hanzen': |
455 | - if(empty($opt)) $opt='VKAS'; |
|
456 | - return mb_convert_kana($value,$opt,$modx->config['modx_charset']); |
|
455 | + if (empty($opt)) $opt = 'VKAS'; |
|
456 | + return mb_convert_kana($value, $opt, $modx->config['modx_charset']); |
|
457 | 457 | case 'str_shuffle': |
458 | 458 | case 'shuffle': |
459 | 459 | return $this->str_shuffle($value); |
@@ -467,7 +467,7 @@ discard block |
||
467 | 467 | return $this->strlen($value); |
468 | 468 | case 'count_words': |
469 | 469 | $value = trim($value); |
470 | - return count(preg_split('/\s+/',$value)); |
|
470 | + return count(preg_split('/\s+/', $value)); |
|
471 | 471 | case 'str_word_count': |
472 | 472 | case 'word_count': |
473 | 473 | case 'wordcount': |
@@ -475,55 +475,55 @@ discard block |
||
475 | 475 | case 'count_paragraphs': |
476 | 476 | $value = trim($value); |
477 | 477 | $value = preg_replace('/\r/', '', $value); |
478 | - return count(preg_split('/\n+/',$value)); |
|
478 | + return count(preg_split('/\n+/', $value)); |
|
479 | 479 | case 'strpos': |
480 | - if($opt!=0&&empty($opt)) return $value; |
|
481 | - return $this->strpos($value,$opt); |
|
480 | + if ($opt != 0 && empty($opt)) return $value; |
|
481 | + return $this->strpos($value, $opt); |
|
482 | 482 | case 'wordwrap': |
483 | 483 | // default: 70 |
484 | 484 | $wrapat = intval($opt) ? intval($opt) : 70; |
485 | 485 | if (version_compare(PHP_VERSION, '5.3.0') >= 0) return $this->includeMdfFile('wordwrap'); |
486 | - else return preg_replace("@(\b\w+\b)@e","wordwrap('\\1',\$wrapat,' ',1)",$value); |
|
486 | + else return preg_replace("@(\b\w+\b)@e", "wordwrap('\\1',\$wrapat,' ',1)", $value); |
|
487 | 487 | case 'wrap_text': |
488 | - $width = preg_match('/^[1-9][0-9]*$/',$opt) ? $opt : 70; |
|
489 | - if($modx->config['manager_language']==='japanese-utf8') { |
|
488 | + $width = preg_match('/^[1-9][0-9]*$/', $opt) ? $opt : 70; |
|
489 | + if ($modx->config['manager_language'] === 'japanese-utf8') { |
|
490 | 490 | $chunk = array(); |
491 | - $bt=''; |
|
492 | - while($bt!=$value) { |
|
491 | + $bt = ''; |
|
492 | + while ($bt != $value) { |
|
493 | 493 | $bt = $value; |
494 | - if($this->strlen($value)<$width) { |
|
494 | + if ($this->strlen($value) < $width) { |
|
495 | 495 | $chunk[] = $value; |
496 | 496 | break; |
497 | 497 | } |
498 | - $chunk[] = $this->substr($value,0,$width); |
|
499 | - $value = $this->substr($value,$width); |
|
498 | + $chunk[] = $this->substr($value, 0, $width); |
|
499 | + $value = $this->substr($value, $width); |
|
500 | 500 | } |
501 | - return join("\n",$chunk); |
|
501 | + return join("\n", $chunk); |
|
502 | 502 | } |
503 | 503 | else |
504 | - return wordwrap($value,$width,"\n",true); |
|
504 | + return wordwrap($value, $width, "\n", true); |
|
505 | 505 | case 'substr': |
506 | - if(empty($opt)) break; |
|
507 | - if(strpos($opt,',')!==false) { |
|
508 | - list($b,$e) = explode(',',$opt,2); |
|
509 | - return $this->substr($value,$b,(int)$e); |
|
506 | + if (empty($opt)) break; |
|
507 | + if (strpos($opt, ',') !== false) { |
|
508 | + list($b, $e) = explode(',', $opt, 2); |
|
509 | + return $this->substr($value, $b, (int) $e); |
|
510 | 510 | } |
511 | - else return $this->substr($value,$opt); |
|
511 | + else return $this->substr($value, $opt); |
|
512 | 512 | case 'limit': |
513 | 513 | case 'trim_to': // http://www.movabletype.jp/documentation/appendices/modifiers/trim_to.html |
514 | - if(strpos($opt,'+')!==false) |
|
515 | - list($len,$str) = explode('+',$opt,2); |
|
514 | + if (strpos($opt, '+') !== false) |
|
515 | + list($len, $str) = explode('+', $opt, 2); |
|
516 | 516 | else { |
517 | 517 | $len = $opt; |
518 | 518 | $str = ''; |
519 | 519 | } |
520 | - if($len==='') $len = 100; |
|
521 | - if(abs($len) > $this->strlen($value)) $str =''; |
|
522 | - if(preg_match('/^[1-9][0-9]*$/',$len)) { |
|
523 | - return $this->substr($value,0,$len) . $str; |
|
520 | + if ($len === '') $len = 100; |
|
521 | + if (abs($len) > $this->strlen($value)) $str = ''; |
|
522 | + if (preg_match('/^[1-9][0-9]*$/', $len)) { |
|
523 | + return $this->substr($value, 0, $len).$str; |
|
524 | 524 | } |
525 | - elseif(preg_match('/^\-[1-9][0-9]*$/',$len)) { |
|
526 | - return $str . $this->substr($value,$len); |
|
525 | + elseif (preg_match('/^\-[1-9][0-9]*$/', $len)) { |
|
526 | + return $str.$this->substr($value, $len); |
|
527 | 527 | } |
528 | 528 | break; |
529 | 529 | case 'summary': |
@@ -532,81 +532,81 @@ discard block |
||
532 | 532 | return $this->includeMdfFile('summary'); |
533 | 533 | case 'replace': |
534 | 534 | case 'str_replace': |
535 | - if(empty($opt) || strpos($opt,',')===false) break; |
|
536 | - if (substr_count($opt, ',') ==1) $delim = ','; |
|
537 | - elseif(substr_count($opt, '|') ==1) $delim = '|'; |
|
538 | - elseif(substr_count($opt, '=>')==1) $delim = '=>'; |
|
539 | - elseif(substr_count($opt, '/') ==1) $delim = '/'; |
|
535 | + if (empty($opt) || strpos($opt, ',') === false) break; |
|
536 | + if (substr_count($opt, ',') == 1) $delim = ','; |
|
537 | + elseif (substr_count($opt, '|') == 1) $delim = '|'; |
|
538 | + elseif (substr_count($opt, '=>') == 1) $delim = '=>'; |
|
539 | + elseif (substr_count($opt, '/') == 1) $delim = '/'; |
|
540 | 540 | else break; |
541 | - list($s,$r) = explode($delim,$opt); |
|
542 | - if($value!=='') return str_replace($s,$r,$value); |
|
541 | + list($s, $r) = explode($delim, $opt); |
|
542 | + if ($value !== '') return str_replace($s, $r, $value); |
|
543 | 543 | break; |
544 | 544 | case 'replace_to': |
545 | 545 | case 'tpl': |
546 | - if($value!=='') return str_replace(array('[+value+]','[+output+]','{value}','%s'),$value,$opt); |
|
546 | + if ($value !== '') return str_replace(array('[+value+]', '[+output+]', '{value}', '%s'), $value, $opt); |
|
547 | 547 | break; |
548 | 548 | case 'eachtpl': |
549 | - $value = explode('||',$value); |
|
549 | + $value = explode('||', $value); |
|
550 | 550 | $_ = array(); |
551 | - foreach($value as $v) { |
|
552 | - $_[] = str_replace(array('[+value+]','[+output+]','{value}','%s'),$v,$opt); |
|
551 | + foreach ($value as $v) { |
|
552 | + $_[] = str_replace(array('[+value+]', '[+output+]', '{value}', '%s'), $v, $opt); |
|
553 | 553 | } |
554 | 554 | return join("\n", $_); |
555 | 555 | case 'array_pop': |
556 | 556 | case 'array_shift': |
557 | - if(strpos($value,'||')!==false) $delim = '||'; |
|
557 | + if (strpos($value, '||') !== false) $delim = '||'; |
|
558 | 558 | else $delim = ','; |
559 | - return $cmd(explode($delim,$value)); |
|
559 | + return $cmd(explode($delim, $value)); |
|
560 | 560 | case 'preg_replace': |
561 | 561 | case 'regex_replace': |
562 | - if(empty($opt) || strpos($opt,',')===false) break; |
|
563 | - list($s,$r) = explode(',',$opt,2); |
|
564 | - if($value!=='') return preg_replace($s,$r,$value); |
|
562 | + if (empty($opt) || strpos($opt, ',') === false) break; |
|
563 | + list($s, $r) = explode(',', $opt, 2); |
|
564 | + if ($value !== '') return preg_replace($s, $r, $value); |
|
565 | 565 | break; |
566 | 566 | case 'cat': |
567 | 567 | case 'concatenate': |
568 | 568 | case '.': |
569 | - if($value!=='') return $value . $opt; |
|
569 | + if ($value !== '') return $value.$opt; |
|
570 | 570 | break; |
571 | 571 | case 'sprintf': |
572 | 572 | case 'string_format': |
573 | - if($value!=='') return sprintf($opt,$value); |
|
573 | + if ($value !== '') return sprintf($opt, $value); |
|
574 | 574 | break; |
575 | 575 | case 'number_format': |
576 | - if($opt=='') $opt = 0; |
|
577 | - return number_format($value,$opt); |
|
576 | + if ($opt == '') $opt = 0; |
|
577 | + return number_format($value, $opt); |
|
578 | 578 | case 'money_format': |
579 | - setlocale(LC_MONETARY,setlocale(LC_TIME,0)); |
|
580 | - if($value!=='') return money_format($opt,(double)$value); |
|
579 | + setlocale(LC_MONETARY, setlocale(LC_TIME, 0)); |
|
580 | + if ($value !== '') return money_format($opt, (double) $value); |
|
581 | 581 | break; |
582 | 582 | case 'tobool': |
583 | 583 | return boolval($value); |
584 | 584 | case 'nl2lf': |
585 | - if($value!=='') return str_replace(array("\r\n","\n", "\r"), '\n', $value); |
|
585 | + if ($value !== '') return str_replace(array("\r\n", "\n", "\r"), '\n', $value); |
|
586 | 586 | break; |
587 | 587 | case 'br2nl': |
588 | 588 | return preg_replace('@<br[\s/]*>@i', "\n", $value); |
589 | 589 | case 'nl2br': |
590 | 590 | if (version_compare(PHP_VERSION, '5.3.0', '<')) |
591 | 591 | return nl2br($value); |
592 | - if($opt!=='') |
|
592 | + if ($opt !== '') |
|
593 | 593 | { |
594 | 594 | $opt = trim($opt); |
595 | 595 | $opt = strtolower($opt); |
596 | - if($opt==='false') $opt = false; |
|
597 | - elseif($opt==='0') $opt = false; |
|
596 | + if ($opt === 'false') $opt = false; |
|
597 | + elseif ($opt === '0') $opt = false; |
|
598 | 598 | else $opt = true; |
599 | 599 | } |
600 | - elseif(isset($modx->config['mce_element_format'])&&$modx->config['mce_element_format']==='html') |
|
600 | + elseif (isset($modx->config['mce_element_format']) && $modx->config['mce_element_format'] === 'html') |
|
601 | 601 | $opt = false; |
602 | 602 | else $opt = true; |
603 | - return nl2br($value,$opt); |
|
603 | + return nl2br($value, $opt); |
|
604 | 604 | case 'ltrim': |
605 | 605 | case 'rtrim': |
606 | 606 | case 'trim': // ref http://mblo.info/modifiers/custom-modifiers/rtrim_opt.html |
607 | - if($opt==='') |
|
607 | + if ($opt === '') |
|
608 | 608 | return $cmd($value); |
609 | - else return $cmd($value,$opt); |
|
609 | + else return $cmd($value, $opt); |
|
610 | 610 | // These are all straight wrappers for PHP functions |
611 | 611 | case 'ucfirst': |
612 | 612 | case 'lcfirst': |
@@ -617,16 +617,16 @@ discard block |
||
617 | 617 | case 'strftime': |
618 | 618 | case 'date': |
619 | 619 | case 'dateformat': |
620 | - if(empty($opt)) $opt = $modx->toDateFormat(null, 'formatOnly'); |
|
621 | - if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value); |
|
622 | - if(strpos($opt,'%')!==false) |
|
623 | - return strftime($opt,0+$value); |
|
620 | + if (empty($opt)) $opt = $modx->toDateFormat(null, 'formatOnly'); |
|
621 | + if (!preg_match('@^[0-9]+$@', $value)) $value = strtotime($value); |
|
622 | + if (strpos($opt, '%') !== false) |
|
623 | + return strftime($opt, 0 + $value); |
|
624 | 624 | else |
625 | - return date($opt,0+$value); |
|
625 | + return date($opt, 0 + $value); |
|
626 | 626 | case 'time': |
627 | - if(empty($opt)) $opt = '%H:%M'; |
|
628 | - if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value); |
|
629 | - return strftime($opt,0+$value); |
|
627 | + if (empty($opt)) $opt = '%H:%M'; |
|
628 | + if (!preg_match('@^[0-9]+$@', $value)) $value = strtotime($value); |
|
629 | + return strftime($opt, 0 + $value); |
|
630 | 630 | case 'strtotime': |
631 | 631 | return strtotime($value); |
632 | 632 | ##### mathematical function |
@@ -635,40 +635,40 @@ discard block |
||
635 | 635 | case 'tofloat': |
636 | 636 | return floatval($value); |
637 | 637 | case 'round': |
638 | - if(!$opt) $opt = 0; |
|
639 | - return $cmd($value,$opt); |
|
638 | + if (!$opt) $opt = 0; |
|
639 | + return $cmd($value, $opt); |
|
640 | 640 | case 'max': |
641 | 641 | case 'min': |
642 | - return $cmd(explode(',',$value)); |
|
642 | + return $cmd(explode(',', $value)); |
|
643 | 643 | case 'floor': |
644 | 644 | case 'ceil': |
645 | 645 | case 'abs': |
646 | 646 | return $cmd($value); |
647 | 647 | case 'math': |
648 | 648 | case 'calc': |
649 | - $value = (int)$value; |
|
650 | - if(empty($value)) $value = '0'; |
|
651 | - $filter = str_replace(array('[+value+]','[+output+]','{value}','%s'),'?',$opt); |
|
652 | - $filter = preg_replace('@([a-zA-Z\n\r\t\s])@','',$filter); |
|
653 | - if(strpos($filter,'?')===false) $filter = "?{$filter}"; |
|
654 | - $filter = str_replace('?',$value,$filter); |
|
649 | + $value = (int) $value; |
|
650 | + if (empty($value)) $value = '0'; |
|
651 | + $filter = str_replace(array('[+value+]', '[+output+]', '{value}', '%s'), '?', $opt); |
|
652 | + $filter = preg_replace('@([a-zA-Z\n\r\t\s])@', '', $filter); |
|
653 | + if (strpos($filter, '?') === false) $filter = "?{$filter}"; |
|
654 | + $filter = str_replace('?', $value, $filter); |
|
655 | 655 | return eval("return {$filter};"); |
656 | 656 | case 'count': |
657 | - if($value=='') return 0; |
|
658 | - $value = explode(',',$value); |
|
657 | + if ($value == '') return 0; |
|
658 | + $value = explode(',', $value); |
|
659 | 659 | return count($value); |
660 | 660 | case 'sort': |
661 | 661 | case 'rsort': |
662 | - if(strpos($value,"\n")!==false) $delim="\n"; |
|
662 | + if (strpos($value, "\n") !== false) $delim = "\n"; |
|
663 | 663 | else $delim = ','; |
664 | - $swap = explode($delim,$value); |
|
665 | - if(!$opt) $opt = SORT_REGULAR; |
|
664 | + $swap = explode($delim, $value); |
|
665 | + if (!$opt) $opt = SORT_REGULAR; |
|
666 | 666 | else $opt = constant($opt); |
667 | - $cmd($swap,$opt); |
|
668 | - return join($delim,$swap); |
|
667 | + $cmd($swap, $opt); |
|
668 | + return join($delim, $swap); |
|
669 | 669 | ##### Resource fields |
670 | 670 | case 'id': |
671 | - if($opt) return $this->getDocumentObject($opt,$key); |
|
671 | + if ($opt) return $this->getDocumentObject($opt, $key); |
|
672 | 672 | break; |
673 | 673 | case 'type': |
674 | 674 | case 'contenttype': |
@@ -705,36 +705,36 @@ discard block |
||
705 | 705 | case 'privatemgr': |
706 | 706 | case 'content_dispo': |
707 | 707 | case 'hidemenu': |
708 | - if($cmd==='contenttype') $cmd = 'contentType'; |
|
709 | - return $this->getDocumentObject($value,$cmd); |
|
708 | + if ($cmd === 'contenttype') $cmd = 'contentType'; |
|
709 | + return $this->getDocumentObject($value, $cmd); |
|
710 | 710 | case 'title': |
711 | - $pagetitle = $this->getDocumentObject($value,'pagetitle'); |
|
712 | - $longtitle = $this->getDocumentObject($value,'longtitle'); |
|
711 | + $pagetitle = $this->getDocumentObject($value, 'pagetitle'); |
|
712 | + $longtitle = $this->getDocumentObject($value, 'longtitle'); |
|
713 | 713 | return $longtitle ? $longtitle : $pagetitle; |
714 | 714 | case 'shorttitle': |
715 | - $pagetitle = $this->getDocumentObject($value,'pagetitle'); |
|
716 | - $menutitle = $this->getDocumentObject($value,'menutitle'); |
|
715 | + $pagetitle = $this->getDocumentObject($value, 'pagetitle'); |
|
716 | + $menutitle = $this->getDocumentObject($value, 'menutitle'); |
|
717 | 717 | return $menutitle ? $menutitle : $pagetitle; |
718 | 718 | case 'templatename': |
719 | - $rs = $modx->db->select('templatename','[+prefix+]site_templates',"id='{$value}'"); |
|
719 | + $rs = $modx->db->select('templatename', '[+prefix+]site_templates', "id='{$value}'"); |
|
720 | 720 | $templateName = $modx->db->getValue($rs); |
721 | 721 | return !$templateName ? '(blank)' : $templateName; |
722 | 722 | case 'getfield': |
723 | - if(!$opt) $opt = 'content'; |
|
724 | - return $modx->getField($opt,$value); |
|
723 | + if (!$opt) $opt = 'content'; |
|
724 | + return $modx->getField($opt, $value); |
|
725 | 725 | case 'children': |
726 | 726 | case 'childids': |
727 | - if($value=='') $value = 0; // 値がない場合はルートと見なす |
|
727 | + if ($value == '') $value = 0; // 値がない場合はルートと見なす |
|
728 | 728 | $published = 1; |
729 | - if($opt=='') $opt = 'page'; |
|
730 | - $_ = explode(',',$opt); |
|
729 | + if ($opt == '') $opt = 'page'; |
|
730 | + $_ = explode(',', $opt); |
|
731 | 731 | $where = array(); |
732 | - foreach($_ as $opt) { |
|
733 | - switch(trim($opt)) { |
|
732 | + foreach ($_ as $opt) { |
|
733 | + switch (trim($opt)) { |
|
734 | 734 | case 'page'; case '!folder'; case '!isfolder': $where[] = 'sc.isfolder=0'; break; |
735 | 735 | case 'folder'; case 'isfolder': $where[] = 'sc.isfolder=1'; break; |
736 | - case 'menu'; case 'show_menu': $where[] = 'sc.hidemenu=0'; break; |
|
737 | - case '!menu'; case '!show_menu': $where[] = 'sc.hidemenu=1'; break; |
|
736 | + case 'menu'; case 'show_menu': $where[] = 'sc.hidemenu=0'; break; |
|
737 | + case '!menu'; case '!show_menu': $where[] = 'sc.hidemenu=1'; break; |
|
738 | 738 | case 'published': $published = 1; break; |
739 | 739 | case '!published': $published = 0; break; |
740 | 740 | } |
@@ -742,69 +742,69 @@ discard block |
||
742 | 742 | $where = join(' AND ', $where); |
743 | 743 | $children = $modx->getDocumentChildren($value, $published, '0', 'id', $where); |
744 | 744 | $result = array(); |
745 | - foreach((array)$children as $child){ |
|
745 | + foreach ((array) $children as $child) { |
|
746 | 746 | $result[] = $child['id']; |
747 | 747 | } |
748 | 748 | return join(',', $result); |
749 | 749 | case 'fullurl': |
750 | - if(!is_numeric($value)) return $value; |
|
750 | + if (!is_numeric($value)) return $value; |
|
751 | 751 | return $modx->makeUrl($value); |
752 | 752 | case 'makeurl': |
753 | - if(!is_numeric($value)) return $value; |
|
754 | - if(!$opt) $opt = 'full'; |
|
755 | - return $modx->makeUrl($value,'','',$opt); |
|
753 | + if (!is_numeric($value)) return $value; |
|
754 | + if (!$opt) $opt = 'full'; |
|
755 | + return $modx->makeUrl($value, '', '', $opt); |
|
756 | 756 | |
757 | 757 | ##### File system |
758 | 758 | case 'getimageinfo': |
759 | 759 | case 'imageinfo': |
760 | - if(!is_file($value)) return ''; |
|
760 | + if (!is_file($value)) return ''; |
|
761 | 761 | $_ = getimagesize($value); |
762 | - if(!$_[0]) return ''; |
|
762 | + if (!$_[0]) return ''; |
|
763 | 763 | $info['width'] = $_[0]; |
764 | 764 | $info['height'] = $_[1]; |
765 | - if ($_[0] > $_[1]) $info['aspect'] = 'landscape'; |
|
766 | - elseif($_[0] < $_[1]) $info['aspect'] = 'portrait'; |
|
765 | + if ($_[0] > $_[1]) $info['aspect'] = 'landscape'; |
|
766 | + elseif ($_[0] < $_[1]) $info['aspect'] = 'portrait'; |
|
767 | 767 | else $info['aspect'] = 'square'; |
768 | - switch($_[2]) { |
|
768 | + switch ($_[2]) { |
|
769 | 769 | case IMAGETYPE_GIF : $info['type'] = 'gif'; break; |
770 | 770 | case IMAGETYPE_JPEG : $info['type'] = 'jpg'; break; |
771 | 771 | case IMAGETYPE_PNG : $info['type'] = 'png'; break; |
772 | 772 | default : $info['type'] = 'unknown'; |
773 | 773 | } |
774 | 774 | $info['attrib'] = $_[3]; |
775 | - switch($opt) { |
|
775 | + switch ($opt) { |
|
776 | 776 | case 'width' : return $info['width']; |
777 | 777 | case 'height': return $info['height']; |
778 | 778 | case 'aspect': return $info['aspect']; |
779 | 779 | case 'type' : return $info['type']; |
780 | 780 | case 'attrib': return $info['attrib']; |
781 | - default : return print_r($info,true); |
|
781 | + default : return print_r($info, true); |
|
782 | 782 | } |
783 | 783 | |
784 | 784 | case 'file_get_contents': |
785 | 785 | case 'readfile': |
786 | - if(!is_file($value)) return $value; |
|
786 | + if (!is_file($value)) return $value; |
|
787 | 787 | $value = realpath($value); |
788 | - if(strpos($value,MODX_MANAGER_PATH)!==false) exit('Can not read core file'); |
|
789 | - $ext = strtolower(substr($value,-4)); |
|
790 | - if($ext==='.php') exit('Can not read php file'); |
|
791 | - if($ext==='.cgi') exit('Can not read cgi file'); |
|
788 | + if (strpos($value, MODX_MANAGER_PATH) !== false) exit('Can not read core file'); |
|
789 | + $ext = strtolower(substr($value, -4)); |
|
790 | + if ($ext === '.php') exit('Can not read php file'); |
|
791 | + if ($ext === '.cgi') exit('Can not read cgi file'); |
|
792 | 792 | return file_get_contents($value); |
793 | 793 | case 'filesize': |
794 | - if($value == '') return ''; |
|
794 | + if ($value == '') return ''; |
|
795 | 795 | $filename = $value; |
796 | 796 | |
797 | 797 | $site_url = $modx->config['site_url']; |
798 | - if(strpos($filename,$site_url) === 0) |
|
799 | - $filename = substr($filename,0,strlen($site_url)); |
|
800 | - $filename = trim($filename,'/'); |
|
798 | + if (strpos($filename, $site_url) === 0) |
|
799 | + $filename = substr($filename, 0, strlen($site_url)); |
|
800 | + $filename = trim($filename, '/'); |
|
801 | 801 | |
802 | - $opt = trim($opt,'/'); |
|
803 | - if($opt!=='') $opt .= '/'; |
|
802 | + $opt = trim($opt, '/'); |
|
803 | + if ($opt !== '') $opt .= '/'; |
|
804 | 804 | |
805 | 805 | $filename = MODX_BASE_PATH.$opt.$filename; |
806 | 806 | |
807 | - if(is_file($filename)){ |
|
807 | + if (is_file($filename)) { |
|
808 | 808 | clearstatcache(); |
809 | 809 | $size = filesize($filename); |
810 | 810 | return $size; |
@@ -837,10 +837,10 @@ discard block |
||
837 | 837 | $this->opt = $cmd; |
838 | 838 | return $this->includeMdfFile('moduser'); |
839 | 839 | case 'userinfo': |
840 | - if(empty($opt)) $this->opt = 'username'; |
|
840 | + if (empty($opt)) $this->opt = 'username'; |
|
841 | 841 | return $this->includeMdfFile('moduser'); |
842 | 842 | case 'webuserinfo': |
843 | - if(empty($opt)) $this->opt = 'username'; |
|
843 | + if (empty($opt)) $this->opt = 'username'; |
|
844 | 844 | $this->value = -$value; |
845 | 845 | return $this->includeMdfFile('moduser'); |
846 | 846 | ##### Special functions |
@@ -851,28 +851,28 @@ discard block |
||
851 | 851 | case 'ifnotempty': |
852 | 852 | if (!empty($value)) return $opt; break; |
853 | 853 | case 'datagrid': |
854 | - include_once(MODX_CORE_PATH . 'controls/datagrid.class.php'); |
|
854 | + include_once(MODX_CORE_PATH.'controls/datagrid.class.php'); |
|
855 | 855 | $grd = new DataGrid(); |
856 | 856 | $grd->ds = trim($value); |
857 | 857 | $grd->itemStyle = ''; |
858 | 858 | $grd->altItemStyle = ''; |
859 | - $pos = strpos($value,"\n"); |
|
860 | - if($pos) $_ = substr($value,0,$pos); |
|
859 | + $pos = strpos($value, "\n"); |
|
860 | + if ($pos) $_ = substr($value, 0, $pos); |
|
861 | 861 | else $_ = $pos; |
862 | - $grd->cdelim = strpos($_,"\t")!==false ? 'tab' : ','; |
|
862 | + $grd->cdelim = strpos($_, "\t") !== false ? 'tab' : ','; |
|
863 | 863 | return $grd->render(); |
864 | 864 | case 'rotate': |
865 | 865 | case 'evenodd': |
866 | - if(strpos($opt,',')===false) $opt = 'odd,even'; |
|
866 | + if (strpos($opt, ',') === false) $opt = 'odd,even'; |
|
867 | 867 | $_ = explode(',', $opt); |
868 | 868 | $c = count($_); |
869 | 869 | $i = $value + $c; |
870 | 870 | $i = $i % $c; |
871 | 871 | return $_[$i]; |
872 | 872 | case 'takeval': |
873 | - $arr = explode(",",$opt); |
|
873 | + $arr = explode(",", $opt); |
|
874 | 874 | $idx = $value; |
875 | - if(!is_numeric($idx)) return $value; |
|
875 | + if (!is_numeric($idx)) return $value; |
|
876 | 876 | return $arr[$idx]; |
877 | 877 | case 'getimage': |
878 | 878 | return $this->includeMdfFile('getimage'); |
@@ -880,17 +880,17 @@ discard block |
||
880 | 880 | return $modx->nicesize($value); |
881 | 881 | case 'googlemap': |
882 | 882 | case 'googlemaps': |
883 | - if(empty($opt)) $opt = 'border:none;width:500px;height:350px;'; |
|
883 | + if (empty($opt)) $opt = 'border:none;width:500px;height:350px;'; |
|
884 | 884 | $tpl = '<iframe style="[+style+]" src="https://maps.google.co.jp/maps?ll=[+value+]&output=embed&z=15"></iframe>'; |
885 | 885 | $ph['style'] = $opt; |
886 | 886 | $ph['value'] = $value; |
887 | - return $modx->parseText($tpl,$ph); |
|
887 | + return $modx->parseText($tpl, $ph); |
|
888 | 888 | case 'youtube': |
889 | 889 | case 'youtube16x9': |
890 | - if(empty($opt)) $opt = 560; |
|
891 | - $h = round($opt*0.5625); |
|
890 | + if (empty($opt)) $opt = 560; |
|
891 | + $h = round($opt * 0.5625); |
|
892 | 892 | $tpl = '<iframe width="%s" height="%s" src="https://www.youtube.com/embed/%s" frameborder="0" allowfullscreen></iframe>'; |
893 | - return sprintf($tpl,$opt,$h,$value); |
|
893 | + return sprintf($tpl, $opt, $h, $value); |
|
894 | 894 | //case 'youtube4x3':%s*0.75+25 |
895 | 895 | case 'setvar': |
896 | 896 | $modx->placeholders[$opt] = $value; |
@@ -920,7 +920,7 @@ discard block |
||
920 | 920 | return $value; |
921 | 921 | } |
922 | 922 | |
923 | - function includeMdfFile($cmd) { |
|
923 | + function includeMdfFile($cmd){ |
|
924 | 924 | global $modx; |
925 | 925 | $key = $this->key; |
926 | 926 | $value = $this->value; |
@@ -931,54 +931,54 @@ discard block |
||
931 | 931 | function getValueFromElement($key, $value, $cmd, $opt) |
932 | 932 | { |
933 | 933 | global $modx; |
934 | - if( isset($modx->snippetCache[$this->elmName]) ) |
|
934 | + if (isset($modx->snippetCache[$this->elmName])) |
|
935 | 935 | { |
936 | 936 | $php = $modx->snippetCache[$this->elmName]; |
937 | 937 | } |
938 | 938 | else |
939 | 939 | { |
940 | 940 | $esc_elmName = $modx->db->escape($this->elmName); |
941 | - $result = $modx->db->select('snippet','[+prefix+]site_snippets',"name='{$esc_elmName}'"); |
|
941 | + $result = $modx->db->select('snippet', '[+prefix+]site_snippets', "name='{$esc_elmName}'"); |
|
942 | 942 | $total = $modx->db->getRecordCount($result); |
943 | - if($total == 1) |
|
943 | + if ($total == 1) |
|
944 | 944 | { |
945 | 945 | $row = $modx->db->getRow($result); |
946 | 946 | $php = $row['snippet']; |
947 | 947 | } |
948 | - elseif($total == 0) |
|
948 | + elseif ($total == 0) |
|
949 | 949 | { |
950 | 950 | $assets_path = MODX_BASE_PATH.'assets/'; |
951 | - if(is_file($assets_path."modifiers/mdf_{$cmd}.inc.php")) |
|
951 | + if (is_file($assets_path."modifiers/mdf_{$cmd}.inc.php")) |
|
952 | 952 | $modifiers_path = $assets_path."modifiers/mdf_{$cmd}.inc.php"; |
953 | - elseif(is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php")) |
|
953 | + elseif (is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php")) |
|
954 | 954 | $modifiers_path = $assets_path."plugins/phx/modifiers/{$cmd}.phx.php"; |
955 | - elseif(is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php")) |
|
955 | + elseif (is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php")) |
|
956 | 956 | $modifiers_path = MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php"; |
957 | 957 | else $modifiers_path = false; |
958 | 958 | |
959 | - if($modifiers_path) { |
|
959 | + if ($modifiers_path) { |
|
960 | 960 | $php = @file_get_contents($modifiers_path); |
961 | 961 | $php = trim($php); |
962 | - if(substr($php,0,5)==='<?php') $php = substr($php,6); |
|
963 | - if(substr($php,0,2)==='<?') $php = substr($php,3); |
|
964 | - if(substr($php,-2)==='?>') $php = substr($php,0,-2); |
|
965 | - if($this->elmName!=='') |
|
962 | + if (substr($php, 0, 5) === '<?php') $php = substr($php, 6); |
|
963 | + if (substr($php, 0, 2) === '<?') $php = substr($php, 3); |
|
964 | + if (substr($php, -2) === '?>') $php = substr($php, 0, -2); |
|
965 | + if ($this->elmName !== '') |
|
966 | 966 | $modx->snippetCache[$this->elmName.'Props'] = ''; |
967 | 967 | } |
968 | 968 | else |
969 | 969 | $php = false; |
970 | 970 | } |
971 | 971 | else $php = false; |
972 | - if($this->elmName!=='') $modx->snippetCache[$this->elmName]= $php; |
|
972 | + if ($this->elmName !== '') $modx->snippetCache[$this->elmName] = $php; |
|
973 | 973 | } |
974 | - if($php==='') $php=false; |
|
974 | + if ($php === '') $php = false; |
|
975 | 975 | |
976 | - if($php===false) $html = $modx->getChunk($this->elmName); |
|
976 | + if ($php === false) $html = $modx->getChunk($this->elmName); |
|
977 | 977 | else $html = false; |
978 | 978 | |
979 | 979 | $self = '[+output+]'; |
980 | 980 | |
981 | - if($php !== false) |
|
981 | + if ($php !== false) |
|
982 | 982 | { |
983 | 983 | ob_start(); |
984 | 984 | $options = $opt; |
@@ -991,71 +991,71 @@ discard block |
||
991 | 991 | $this->vars['options'] = & $opt; |
992 | 992 | $custom = eval($php); |
993 | 993 | $msg = ob_get_contents(); |
994 | - if($value===$this->bt) $value = $msg . $custom; |
|
994 | + if ($value === $this->bt) $value = $msg.$custom; |
|
995 | 995 | ob_end_clean(); |
996 | 996 | } |
997 | - elseif($html!==false && isset($value) && $value!=='') |
|
997 | + elseif ($html !== false && isset($value) && $value !== '') |
|
998 | 998 | { |
999 | - $html = str_replace(array($self,'[+value+]'), $value, $html); |
|
1000 | - $value = str_replace(array('[+options+]','[+param+]'), $opt, $html); |
|
999 | + $html = str_replace(array($self, '[+value+]'), $value, $html); |
|
1000 | + $value = str_replace(array('[+options+]', '[+param+]'), $opt, $html); |
|
1001 | 1001 | } |
1002 | 1002 | else return false; |
1003 | 1003 | |
1004 | - if($php===false && $html===false && $value!=='' |
|
1005 | - && (strpos($cmd,'[+value+]')!==false || strpos($cmd,$self)!==false)) |
|
1004 | + if ($php === false && $html === false && $value !== '' |
|
1005 | + && (strpos($cmd, '[+value+]') !== false || strpos($cmd, $self) !== false)) |
|
1006 | 1006 | { |
1007 | - $value = str_replace(array('[+value+]',$self),$value,$cmd); |
|
1007 | + $value = str_replace(array('[+value+]', $self), $value, $cmd); |
|
1008 | 1008 | } |
1009 | 1009 | return $value; |
1010 | 1010 | } |
1011 | 1011 | |
1012 | - function parseDocumentSource($content='') |
|
1012 | + function parseDocumentSource($content = '') |
|
1013 | 1013 | { |
1014 | 1014 | global $modx; |
1015 | 1015 | |
1016 | - if(strpos($content,'[')===false && strpos($content,'{')===false) return $content; |
|
1016 | + if (strpos($content, '[') === false && strpos($content, '{') === false) return $content; |
|
1017 | 1017 | |
1018 | - if(!$modx->maxParserPasses) $modx->maxParserPasses = 10; |
|
1019 | - $bt=''; |
|
1020 | - $i=0; |
|
1021 | - while($bt!==$content) |
|
1018 | + if (!$modx->maxParserPasses) $modx->maxParserPasses = 10; |
|
1019 | + $bt = ''; |
|
1020 | + $i = 0; |
|
1021 | + while ($bt !== $content) |
|
1022 | 1022 | { |
1023 | 1023 | $bt = $content; |
1024 | - if(strpos($content,'[*')!==false && $modx->documentIdentifier) |
|
1024 | + if (strpos($content, '[*') !== false && $modx->documentIdentifier) |
|
1025 | 1025 | $content = $modx->mergeDocumentContent($content); |
1026 | - if(strpos($content,'[(')!==false) $content = $modx->mergeSettingsContent($content); |
|
1027 | - if(strpos($content,'{{')!==false) $content = $modx->mergeChunkContent($content); |
|
1028 | - if(strpos($content,'[!')!==false) $content = str_replace(array('[!','!]'),array('[[',']]'),$content); |
|
1029 | - if(strpos($content,'[[')!==false) $content = $modx->evalSnippets($content); |
|
1026 | + if (strpos($content, '[(') !== false) $content = $modx->mergeSettingsContent($content); |
|
1027 | + if (strpos($content, '{{') !== false) $content = $modx->mergeChunkContent($content); |
|
1028 | + if (strpos($content, '[!') !== false) $content = str_replace(array('[!', '!]'), array('[[', ']]'), $content); |
|
1029 | + if (strpos($content, '[[') !== false) $content = $modx->evalSnippets($content); |
|
1030 | 1030 | |
1031 | - if($content===$bt) break; |
|
1032 | - if($modx->maxParserPasses < $i) break; |
|
1031 | + if ($content === $bt) break; |
|
1032 | + if ($modx->maxParserPasses < $i) break; |
|
1033 | 1033 | $i++; |
1034 | 1034 | } |
1035 | 1035 | return $content; |
1036 | 1036 | } |
1037 | 1037 | |
1038 | - function getDocumentObject($target='',$field='pagetitle') |
|
1038 | + function getDocumentObject($target = '', $field = 'pagetitle') |
|
1039 | 1039 | { |
1040 | 1040 | global $modx; |
1041 | 1041 | |
1042 | 1042 | $target = trim($target); |
1043 | - if(empty($target)) $target = $modx->config['site_start']; |
|
1044 | - if(preg_match('@^[1-9][0-9]*$@',$target)) $method='id'; |
|
1043 | + if (empty($target)) $target = $modx->config['site_start']; |
|
1044 | + if (preg_match('@^[1-9][0-9]*$@', $target)) $method = 'id'; |
|
1045 | 1045 | else $method = 'alias'; |
1046 | 1046 | |
1047 | - if(!isset($this->documentObject[$target])) |
|
1047 | + if (!isset($this->documentObject[$target])) |
|
1048 | 1048 | { |
1049 | - $this->documentObject[$target] = $modx->getDocumentObject($method,$target,'direct'); |
|
1049 | + $this->documentObject[$target] = $modx->getDocumentObject($method, $target, 'direct'); |
|
1050 | 1050 | } |
1051 | 1051 | |
1052 | - if($this->documentObject[$target]['publishedon']==='0') |
|
1052 | + if ($this->documentObject[$target]['publishedon'] === '0') |
|
1053 | 1053 | return ''; |
1054 | - elseif(isset($this->documentObject[$target][$field])) |
|
1054 | + elseif (isset($this->documentObject[$target][$field])) |
|
1055 | 1055 | { |
1056 | - if(is_array($this->documentObject[$target][$field])) |
|
1056 | + if (is_array($this->documentObject[$target][$field])) |
|
1057 | 1057 | { |
1058 | - $a = $modx->getTemplateVarOutput($field,$target); |
|
1058 | + $a = $modx->getTemplateVarOutput($field, $target); |
|
1059 | 1059 | $this->documentObject[$target][$field] = $a[$field]; |
1060 | 1060 | } |
1061 | 1061 | } |
@@ -1064,8 +1064,8 @@ discard block |
||
1064 | 1064 | return $this->documentObject[$target][$field]; |
1065 | 1065 | } |
1066 | 1066 | |
1067 | - function setPlaceholders($value = '', $key = '', $path = '') { |
|
1068 | - if($path!=='') $key = "{$path}.{$key}"; |
|
1067 | + function setPlaceholders($value = '', $key = '', $path = ''){ |
|
1068 | + if ($path !== '') $key = "{$path}.{$key}"; |
|
1069 | 1069 | if (is_array($value)) { |
1070 | 1070 | foreach ($value as $subkey => $subval) { |
1071 | 1071 | $this->setPlaceholders($subval, $subkey, $key); |
@@ -1075,77 +1075,77 @@ discard block |
||
1075 | 1075 | } |
1076 | 1076 | |
1077 | 1077 | // Sets a placeholder variable which can only be access by Modifiers |
1078 | - function setModifiersVariable($key, $value) { |
|
1078 | + function setModifiersVariable($key, $value){ |
|
1079 | 1079 | if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value; |
1080 | 1080 | } |
1081 | 1081 | |
1082 | 1082 | //mbstring |
1083 | - function substr($str, $s, $l = null) { |
|
1083 | + function substr($str, $s, $l = null){ |
|
1084 | 1084 | global $modx; |
1085 | - if(is_null($l)) $l = $this->strlen($str); |
|
1085 | + if (is_null($l)) $l = $this->strlen($str); |
|
1086 | 1086 | if (function_exists('mb_substr')) |
1087 | 1087 | { |
1088 | - if(strpos($str,"\r")!==false) |
|
1089 | - $str = str_replace(array("\r\n","\r"), "\n", $str); |
|
1088 | + if (strpos($str, "\r") !== false) |
|
1089 | + $str = str_replace(array("\r\n", "\r"), "\n", $str); |
|
1090 | 1090 | return mb_substr($str, $s, $l, $modx->config['modx_charset']); |
1091 | 1091 | } |
1092 | 1092 | return substr($str, $s, $l); |
1093 | 1093 | } |
1094 | - function strpos($haystack,$needle,$offset=0) { |
|
1094 | + function strpos($haystack, $needle, $offset = 0){ |
|
1095 | 1095 | global $modx; |
1096 | - if (function_exists('mb_strpos')) return mb_strpos($haystack,$needle,$offset,$modx->config['modx_charset']); |
|
1097 | - return strpos($haystack,$needle,$offset); |
|
1096 | + if (function_exists('mb_strpos')) return mb_strpos($haystack, $needle, $offset, $modx->config['modx_charset']); |
|
1097 | + return strpos($haystack, $needle, $offset); |
|
1098 | 1098 | } |
1099 | - function strlen($str) { |
|
1099 | + function strlen($str){ |
|
1100 | 1100 | global $modx; |
1101 | - if (function_exists('mb_strlen')) return mb_strlen(str_replace("\r\n", "\n", $str),$modx->config['modx_charset']); |
|
1101 | + if (function_exists('mb_strlen')) return mb_strlen(str_replace("\r\n", "\n", $str), $modx->config['modx_charset']); |
|
1102 | 1102 | return strlen($str); |
1103 | 1103 | } |
1104 | - function strtolower($str) { |
|
1104 | + function strtolower($str){ |
|
1105 | 1105 | if (function_exists('mb_strtolower')) return mb_strtolower($str); |
1106 | 1106 | return strtolower($str); |
1107 | 1107 | } |
1108 | - function strtoupper($str) { |
|
1108 | + function strtoupper($str){ |
|
1109 | 1109 | if (function_exists('mb_strtoupper')) return mb_strtoupper($str); |
1110 | 1110 | return strtoupper($str); |
1111 | 1111 | } |
1112 | - function ucfirst($str) { |
|
1112 | + function ucfirst($str){ |
|
1113 | 1113 | if (function_exists('mb_strtoupper')) |
1114 | 1114 | return mb_strtoupper($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
1115 | 1115 | return ucfirst($str); |
1116 | 1116 | } |
1117 | - function lcfirst($str) { |
|
1117 | + function lcfirst($str){ |
|
1118 | 1118 | if (function_exists('mb_strtolower')) |
1119 | 1119 | return mb_strtolower($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
1120 | 1120 | return lcfirst($str); |
1121 | 1121 | } |
1122 | - function ucwords($str) { |
|
1122 | + function ucwords($str){ |
|
1123 | 1123 | if (function_exists('mb_convert_case')) |
1124 | 1124 | return mb_convert_case($str, MB_CASE_TITLE); |
1125 | 1125 | return ucwords($str); |
1126 | 1126 | } |
1127 | - function strrev($str) { |
|
1127 | + function strrev($str){ |
|
1128 | 1128 | preg_match_all('/./us', $str, $ar); |
1129 | 1129 | return join(array_reverse($ar[0])); |
1130 | 1130 | } |
1131 | - function str_shuffle($str) { |
|
1131 | + function str_shuffle($str){ |
|
1132 | 1132 | preg_match_all('/./us', $str, $ar); |
1133 | 1133 | shuffle($ar[0]); |
1134 | 1134 | return join($ar[0]); |
1135 | 1135 | } |
1136 | - function str_word_count($str) { |
|
1137 | - return count(preg_split('~[^\p{L}\p{N}\']+~u',$str)); |
|
1136 | + function str_word_count($str){ |
|
1137 | + return count(preg_split('~[^\p{L}\p{N}\']+~u', $str)); |
|
1138 | 1138 | } |
1139 | - function strip_tags($value,$params='') { |
|
1139 | + function strip_tags($value, $params = ''){ |
|
1140 | 1140 | global $modx; |
1141 | 1141 | |
1142 | - if(stripos($params,'style')===false && stripos($value,'</style>')!==false) { |
|
1142 | + if (stripos($params, 'style') === false && stripos($value, '</style>') !== false) { |
|
1143 | 1143 | $value = preg_replace('@<style.*?>.*?</style>@is', '', $value); |
1144 | 1144 | } |
1145 | - if(stripos($params,'script')===false && stripos($value,'</script>')!==false) { |
|
1145 | + if (stripos($params, 'script') === false && stripos($value, '</script>') !== false) { |
|
1146 | 1146 | $value = preg_replace('@<script.*?>.*?</script>@is', '', $value); |
1147 | 1147 | } |
1148 | 1148 | |
1149 | - return trim(strip_tags($value,$params)); |
|
1149 | + return trim(strip_tags($value, $params)); |
|
1150 | 1150 | } |
1151 | 1151 | } |
@@ -1,8 +1,11 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if(!defined('MODX_CORE_PATH')) define('MODX_CORE_PATH', MODX_MANAGER_PATH.'includes/'); |
|
3 | +if(!defined('MODX_CORE_PATH')) { |
|
4 | + define('MODX_CORE_PATH', MODX_MANAGER_PATH.'includes/'); |
|
5 | +} |
|
4 | 6 | |
5 | -class MODIFIERS { |
|
7 | +class MODIFIERS |
|
8 | +{ |
|
6 | 9 | |
7 | 10 | var $placeholders = array(); |
8 | 11 | var $vars = array(); |
@@ -20,14 +23,18 @@ discard block |
||
20 | 23 | { |
21 | 24 | global $modx; |
22 | 25 | |
23 | - if (function_exists('mb_internal_encoding')) mb_internal_encoding($modx->config['modx_charset']); |
|
26 | + if (function_exists('mb_internal_encoding')) { |
|
27 | + mb_internal_encoding($modx->config['modx_charset']); |
|
28 | + } |
|
24 | 29 | $this->condModifiers = '=,is,eq,equals,ne,neq,notequals,isnot,isnt,not,%,isempty,isnotempty,isntempty,>=,gte,eg,gte,greaterthan,>,gt,isgreaterthan,isgt,lowerthan,<,lt,<=,lte,islte,islowerthan,islt,el,find,in,inarray,in_array,fnmatch,wcard,wcard_match,wildcard,wildcard_match,is_file,is_dir,file_exists,is_readable,is_writable,is_image,regex,preg,preg_match,memberof,mo,isinrole,ir'; |
25 | 30 | } |
26 | 31 | |
27 | 32 | function phxFilter($key,$value,$modifiers) |
28 | 33 | { |
29 | 34 | global $modx; |
30 | - if(substr($modifiers,0,3)!=='id(') $value = $this->parseDocumentSource($value); |
|
35 | + if(substr($modifiers,0,3)!=='id(') { |
|
36 | + $value = $this->parseDocumentSource($value); |
|
37 | + } |
|
31 | 38 | $this->srcValue = $value; |
32 | 39 | $modifiers = trim($modifiers); |
33 | 40 | $modifiers = ':'.trim($modifiers,':'); |
@@ -45,63 +52,81 @@ discard block |
||
45 | 52 | return $value; |
46 | 53 | } |
47 | 54 | |
48 | - function _getDelim($mode,$modifiers) { |
|
55 | + function _getDelim($mode,$modifiers) |
|
56 | + { |
|
49 | 57 | $c = substr($modifiers,0,1); |
50 | - if(!in_array($c, array('"', "'", '`')) ) return false; |
|
58 | + if(!in_array($c, array('"', "'", '`')) ) { |
|
59 | + return false; |
|
60 | + } |
|
51 | 61 | |
52 | 62 | $modifiers = substr($modifiers,1); |
53 | 63 | $closure = $mode=='(' ? "{$c})" : $c; |
54 | - if(strpos($modifiers, $closure)===false) return false; |
|
64 | + if(strpos($modifiers, $closure)===false) { |
|
65 | + return false; |
|
66 | + } |
|
55 | 67 | |
56 | 68 | return $c; |
57 | 69 | } |
58 | 70 | |
59 | - function _getOpt($mode,$delim,$modifiers) { |
|
71 | + function _getOpt($mode,$delim,$modifiers) |
|
72 | + { |
|
60 | 73 | if($delim) { |
61 | - if($mode=='(') return substr($modifiers,1,strpos($modifiers, $delim . ')' )-1); |
|
74 | + if($mode=='(') { |
|
75 | + return substr($modifiers,1,strpos($modifiers, $delim . ')' )-1); |
|
76 | + } |
|
62 | 77 | |
63 | 78 | return substr($modifiers,1,strpos($modifiers,$delim,1)-1); |
64 | - } |
|
65 | - else { |
|
66 | - if($mode=='(') return substr($modifiers,0,strpos($modifiers, ')') ); |
|
79 | + } else { |
|
80 | + if($mode=='(') { |
|
81 | + return substr($modifiers,0,strpos($modifiers, ')') ); |
|
82 | + } |
|
67 | 83 | |
68 | 84 | $chars = str_split($modifiers); |
69 | 85 | $opt=''; |
70 | 86 | foreach($chars as $c) { |
71 | - if($c==':' || $c==')') break; |
|
87 | + if($c==':' || $c==')') { |
|
88 | + break; |
|
89 | + } |
|
72 | 90 | $opt .=$c; |
73 | 91 | } |
74 | 92 | return $opt; |
75 | 93 | } |
76 | 94 | } |
77 | - function _getRemainModifiers($mode,$delim,$modifiers) { |
|
95 | + function _getRemainModifiers($mode,$delim,$modifiers) |
|
96 | + { |
|
78 | 97 | if($delim) { |
79 | - if($mode=='(') |
|
80 | - return $this->_fetchContent($modifiers, $delim . ')'); |
|
81 | - else { |
|
98 | + if($mode=='(') { |
|
99 | + return $this->_fetchContent($modifiers, $delim . ')'); |
|
100 | + } else { |
|
82 | 101 | $modifiers = trim($modifiers); |
83 | 102 | $modifiers = substr($modifiers,1); |
84 | 103 | return $this->_fetchContent($modifiers, $delim); |
85 | 104 | } |
86 | - } |
|
87 | - else { |
|
88 | - if($mode=='(') return $this->_fetchContent($modifiers, ')'); |
|
105 | + } else { |
|
106 | + if($mode=='(') { |
|
107 | + return $this->_fetchContent($modifiers, ')'); |
|
108 | + } |
|
89 | 109 | $chars = str_split($modifiers); |
90 | 110 | foreach($chars as $c) { |
91 | - if($c==':') return $modifiers; |
|
92 | - else $modifiers = substr($modifiers,1); |
|
111 | + if($c==':') { |
|
112 | + return $modifiers; |
|
113 | + } else { |
|
114 | + $modifiers = substr($modifiers,1); |
|
115 | + } |
|
93 | 116 | } |
94 | 117 | return $modifiers; |
95 | 118 | } |
96 | 119 | } |
97 | 120 | |
98 | - function _fetchContent($string,$delim) { |
|
121 | + function _fetchContent($string,$delim) |
|
122 | + { |
|
99 | 123 | $len = strlen($delim); |
100 | 124 | $string = $this->parseDocumentSource($string); |
101 | 125 | return substr($string,strpos($string, $delim)+$len); |
102 | 126 | } |
103 | 127 | |
104 | - function splitEachModifiers($modifiers) { |
|
128 | + function splitEachModifiers($modifiers) |
|
129 | + { |
|
105 | 130 | global $modx; |
106 | 131 | |
107 | 132 | $cmd = ''; |
@@ -111,11 +136,15 @@ discard block |
||
111 | 136 | $c = substr($modifiers,0,1); |
112 | 137 | $modifiers = substr($modifiers,1); |
113 | 138 | |
114 | - if($c===':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) { // :=, :!=, :<=, :>=, :!<=, :!>= |
|
139 | + if($c===':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) { |
|
140 | +// :=, :!=, :<=, :>=, :!<=, :!>= |
|
115 | 141 | $c = substr($modifiers,strlen($match[1]),1); |
116 | 142 | $debuginfo = "#i=0 #c=[{$c}] #m=[{$modifiers}]"; |
117 | - if($c==='(') $modifiers = substr($modifiers,strlen($match[1])+1); |
|
118 | - else $modifiers = substr($modifiers,strlen($match[1])); |
|
143 | + if($c==='(') { |
|
144 | + $modifiers = substr($modifiers,strlen($match[1])+1); |
|
145 | + } else { |
|
146 | + $modifiers = substr($modifiers,strlen($match[1])); |
|
147 | + } |
|
119 | 148 | |
120 | 149 | $delim = $this->_getDelim($c,$modifiers); |
121 | 150 | $opt = $this->_getOpt($c,$delim,$modifiers); |
@@ -123,13 +152,12 @@ discard block |
||
123 | 152 | |
124 | 153 | $result[]=array('cmd'=>trim($match[1]),'opt'=>$opt,'debuginfo'=>$debuginfo); |
125 | 154 | $cmd = ''; |
126 | - } |
|
127 | - elseif(in_array($c,array('+','-','*','/')) && preg_match('@^[0-9]+@', $modifiers, $match)) { // :+3, :-3, :*3 ... |
|
155 | + } elseif(in_array($c,array('+','-','*','/')) && preg_match('@^[0-9]+@', $modifiers, $match)) { |
|
156 | +// :+3, :-3, :*3 ... |
|
128 | 157 | $modifiers = substr($modifiers,strlen($match[0])); |
129 | 158 | $result[]=array('cmd'=>'math','opt'=>'%s'.$c.$match[0]); |
130 | 159 | $cmd = ''; |
131 | - } |
|
132 | - elseif($c==='(' || $c==='=') { |
|
160 | + } elseif($c==='(' || $c==='=') { |
|
133 | 161 | $modifiers = $m1 = trim($modifiers); |
134 | 162 | $delim = $this->_getDelim($c,$modifiers); |
135 | 163 | $opt = $this->_getOpt($c,$delim,$modifiers); |
@@ -139,29 +167,29 @@ discard block |
||
139 | 167 | $result[]=array('cmd'=>trim($cmd),'opt'=>$opt,'debuginfo'=>$debuginfo); |
140 | 168 | |
141 | 169 | $cmd = ''; |
142 | - } |
|
143 | - elseif($c==':') { |
|
170 | + } elseif($c==':') { |
|
144 | 171 | $debuginfo = "#i=2 #c=[{$c}] #m=[{$modifiers}]"; |
145 | - if($cmd!=='') $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
|
172 | + if($cmd!=='') { |
|
173 | + $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
|
174 | + } |
|
146 | 175 | |
147 | 176 | $cmd = ''; |
148 | - } |
|
149 | - elseif(trim($modifiers)=='' && trim($cmd)!=='') { |
|
177 | + } elseif(trim($modifiers)=='' && trim($cmd)!=='') { |
|
150 | 178 | $debuginfo = "#i=3 #c=[{$c}] #m=[{$modifiers}]"; |
151 | 179 | $cmd .= $c; |
152 | 180 | $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
153 | 181 | |
154 | 182 | break; |
155 | - } |
|
156 | - else { |
|
183 | + } else { |
|
157 | 184 | $cmd .= $c; |
158 | 185 | } |
159 | 186 | } |
160 | 187 | |
161 | - if(empty($result)) return array(); |
|
188 | + if(empty($result)) { |
|
189 | + return array(); |
|
190 | + } |
|
162 | 191 | |
163 | - foreach($result as $i=>$a) |
|
164 | - { |
|
192 | + foreach($result as $i=>$a) { |
|
165 | 193 | $a['opt'] = $this->parseDocumentSource($a['opt']); |
166 | 194 | $result[$i]['opt'] = $modx->mergePlaceholderContent($a['opt'],$this->placeholders); |
167 | 195 | } |
@@ -173,22 +201,23 @@ discard block |
||
173 | 201 | { |
174 | 202 | global $modx; |
175 | 203 | $cacheKey = md5(sprintf('parsePhx#%s#%s#%s',$key,$value,print_r($modifiers,true))); |
176 | - if(isset($this->tmpCache[$cacheKey])) return $this->tmpCache[$cacheKey]; |
|
177 | - if(empty($modifiers)) return ''; |
|
204 | + if(isset($this->tmpCache[$cacheKey])) { |
|
205 | + return $this->tmpCache[$cacheKey]; |
|
206 | + } |
|
207 | + if(empty($modifiers)) { |
|
208 | + return ''; |
|
209 | + } |
|
178 | 210 | |
179 | - foreach($modifiers as $m) |
|
180 | - { |
|
211 | + foreach($modifiers as $m) { |
|
181 | 212 | $lastKey = strtolower($m['cmd']); |
182 | 213 | } |
183 | 214 | $_ = explode(',',$this->condModifiers); |
184 | - if(in_array($lastKey,$_)) |
|
185 | - { |
|
215 | + if(in_array($lastKey,$_)) { |
|
186 | 216 | $modifiers[] = array('cmd'=>'then','opt'=>'1'); |
187 | 217 | $modifiers[] = array('cmd'=>'else','opt'=>'0'); |
188 | 218 | } |
189 | 219 | |
190 | - foreach($modifiers as $i=>$a) |
|
191 | - { |
|
220 | + foreach($modifiers as $i=>$a) { |
|
192 | 221 | $value = $this->Filter($key,$value, $a['cmd'], $a['opt']); |
193 | 222 | } |
194 | 223 | $this->tmpCache[$cacheKey] = $value; |
@@ -200,25 +229,32 @@ discard block |
||
200 | 229 | { |
201 | 230 | global $modx; |
202 | 231 | |
203 | - if($key==='documentObject') $value = $modx->documentIdentifier; |
|
232 | + if($key==='documentObject') { |
|
233 | + $value = $modx->documentIdentifier; |
|
234 | + } |
|
204 | 235 | $cmd = $this->parseDocumentSource($cmd); |
205 | - if(preg_match('@^[1-9][/0-9]*$@',$cmd)) |
|
206 | - { |
|
207 | - if(strpos($cmd,'/')!==false) |
|
208 | - $cmd = $this->substr($cmd,strrpos($cmd,'/')+1); |
|
236 | + if(preg_match('@^[1-9][/0-9]*$@',$cmd)) { |
|
237 | + if(strpos($cmd,'/')!==false) { |
|
238 | + $cmd = $this->substr($cmd,strrpos($cmd,'/')+1); |
|
239 | + } |
|
209 | 240 | $opt = $cmd; |
210 | 241 | $cmd = 'id'; |
211 | 242 | } |
212 | 243 | |
213 | - if(isset($modx->snippetCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
214 | - elseif(isset($modx->chunkCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
215 | - else $this->elmName = ''; |
|
244 | + if(isset($modx->snippetCache["phx:{$cmd}"])) { |
|
245 | + $this->elmName = "phx:{$cmd}"; |
|
246 | + } elseif(isset($modx->chunkCache["phx:{$cmd}"])) { |
|
247 | + $this->elmName = "phx:{$cmd}"; |
|
248 | + } else { |
|
249 | + $this->elmName = ''; |
|
250 | + } |
|
216 | 251 | |
217 | 252 | $cmd = strtolower($cmd); |
218 | - if($this->elmName!=='') |
|
219 | - $value = $this->getValueFromElement($key, $value, $cmd, $opt); |
|
220 | - else |
|
221 | - $value = $this->getValueFromPreset($key, $value, $cmd, $opt); |
|
253 | + if($this->elmName!=='') { |
|
254 | + $value = $this->getValueFromElement($key, $value, $cmd, $opt); |
|
255 | + } else { |
|
256 | + $value = $this->getValueFromPreset($key, $value, $cmd, $opt); |
|
257 | + } |
|
222 | 258 | |
223 | 259 | $value = str_replace('[+key+]', $key, $value); |
224 | 260 | |
@@ -227,29 +263,37 @@ discard block |
||
227 | 263 | |
228 | 264 | function isEmpty($cmd,$value) |
229 | 265 | { |
230 | - if($value!=='') return false; |
|
266 | + if($value!=='') { |
|
267 | + return false; |
|
268 | + } |
|
231 | 269 | |
232 | 270 | $_ = explode(',', $this->condModifiers . ',_default,default,if,input,or,and,show,this,select,switch,then,else,id,ifempty,smart_desc,smart_description,summary'); |
233 | - if(in_array($cmd,$_)) return false; |
|
234 | - else return true; |
|
271 | + if(in_array($cmd,$_)) { |
|
272 | + return false; |
|
273 | + } else { |
|
274 | + return true; |
|
275 | + } |
|
235 | 276 | } |
236 | 277 | |
237 | 278 | function getValueFromPreset($key, $value, $cmd, $opt) |
238 | 279 | { |
239 | 280 | global $modx; |
240 | 281 | |
241 | - if($this->isEmpty($cmd,$value)) return ''; |
|
282 | + if($this->isEmpty($cmd,$value)) { |
|
283 | + return ''; |
|
284 | + } |
|
242 | 285 | |
243 | 286 | $this->key = $key; |
244 | 287 | $this->value = $value; |
245 | 288 | $this->opt = $opt; |
246 | 289 | |
247 | - switch ($cmd) |
|
248 | - { |
|
290 | + switch ($cmd) { |
|
249 | 291 | ##### Conditional Modifiers |
250 | 292 | case 'input': |
251 | 293 | case 'if': |
252 | - if(!$opt) return $value; |
|
294 | + if(!$opt) { |
|
295 | + return $value; |
|
296 | + } |
|
253 | 297 | return $opt; |
254 | 298 | case '=': |
255 | 299 | case 'eq': |
@@ -310,14 +354,24 @@ discard block |
||
310 | 354 | case 'file_exists': |
311 | 355 | case 'is_readable': |
312 | 356 | case 'is_writable': |
313 | - if(!$opt) $path = $value; |
|
314 | - else $path = $opt; |
|
315 | - if(strpos($path,MODX_MANAGER_PATH)!==false) exit('Can not read core path'); |
|
316 | - if(strpos($path,$modx->config['base_path'])===false) $path = ltrim($path,'/'); |
|
357 | + if(!$opt) { |
|
358 | + $path = $value; |
|
359 | + } else { |
|
360 | + $path = $opt; |
|
361 | + } |
|
362 | + if(strpos($path,MODX_MANAGER_PATH)!==false) { |
|
363 | + exit('Can not read core path'); |
|
364 | + } |
|
365 | + if(strpos($path,$modx->config['base_path'])===false) { |
|
366 | + $path = ltrim($path,'/'); |
|
367 | + } |
|
317 | 368 | $this->condition[] = intval($cmd($path)!==false);break; |
318 | 369 | case 'is_image': |
319 | - if(!$opt) $path = $value; |
|
320 | - else $path = $opt; |
|
370 | + if(!$opt) { |
|
371 | + $path = $value; |
|
372 | + } else { |
|
373 | + $path = $opt; |
|
374 | + } |
|
321 | 375 | if(!is_file($path)) {$this->condition[]='0';break;} |
322 | 376 | $_ = getimagesize($path); |
323 | 377 | $this->condition[] = intval($_[0]);break; |
@@ -340,17 +394,23 @@ discard block |
||
340 | 394 | case 'this': |
341 | 395 | $conditional = join(' ',$this->condition); |
342 | 396 | $isvalid = intval(eval("return ({$conditional});")); |
343 | - if ($isvalid) return $this->srcValue; |
|
397 | + if ($isvalid) { |
|
398 | + return $this->srcValue; |
|
399 | + } |
|
344 | 400 | return NULL; |
345 | 401 | case 'then': |
346 | 402 | $conditional = join(' ',$this->condition); |
347 | 403 | $isvalid = intval(eval("return ({$conditional});")); |
348 | - if ($isvalid) return $opt; |
|
404 | + if ($isvalid) { |
|
405 | + return $opt; |
|
406 | + } |
|
349 | 407 | return null; |
350 | 408 | case 'else': |
351 | 409 | $conditional = join(' ',$this->condition); |
352 | 410 | $isvalid = intval(eval("return ({$conditional});")); |
353 | - if (!$isvalid) return $opt; |
|
411 | + if (!$isvalid) { |
|
412 | + return $opt; |
|
413 | + } |
|
354 | 414 | break; |
355 | 415 | case 'select': |
356 | 416 | case 'switch': |
@@ -361,8 +421,11 @@ discard block |
||
361 | 421 | $mi = explode('=',$raw[$m],2); |
362 | 422 | $map[$mi[0]] = $mi[1]; |
363 | 423 | } |
364 | - if(isset($map[$value])) return $map[$value]; |
|
365 | - else return ''; |
|
424 | + if(isset($map[$value])) { |
|
425 | + return $map[$value]; |
|
426 | + } else { |
|
427 | + return ''; |
|
428 | + } |
|
366 | 429 | ##### End of Conditional Modifiers |
367 | 430 | |
368 | 431 | ##### Encode / Decode / Hash / Escape |
@@ -388,24 +451,25 @@ discard block |
||
388 | 451 | case 'spam_protect': |
389 | 452 | return str_replace(array('@','.'),array('@','.'),$value); |
390 | 453 | case 'strip': |
391 | - if($opt==='') $opt = ' '; |
|
454 | + if($opt==='') { |
|
455 | + $opt = ' '; |
|
456 | + } |
|
392 | 457 | return preg_replace('/[\n\r\t\s]+/', $opt, $value); |
393 | 458 | case 'strip_linefeeds': |
394 | 459 | return str_replace(array("\n","\r"), '', $value); |
395 | 460 | case 'notags': |
396 | 461 | case 'strip_tags': |
397 | 462 | case 'remove_html': |
398 | - if($opt!=='') |
|
399 | - { |
|
463 | + if($opt!=='') { |
|
400 | 464 | $param = array(); |
401 | - foreach(explode(',',$opt) as $v) |
|
402 | - { |
|
465 | + foreach(explode(',',$opt) as $v) { |
|
403 | 466 | $v = trim($v,'</> '); |
404 | 467 | $param[] = "<{$v}>"; |
405 | 468 | } |
406 | 469 | $params = join(',',$param); |
470 | + } else { |
|
471 | + $params = ''; |
|
407 | 472 | } |
408 | - else $params = ''; |
|
409 | 473 | if(!strpos($params,'<br>')===false) { |
410 | 474 | $value = preg_replace('@(<br[ /]*>)\n@','$1',$value); |
411 | 475 | $value = preg_replace('@<br[ /]*>@',"\n",$value); |
@@ -416,8 +480,11 @@ discard block |
||
416 | 480 | case 'encode_url': |
417 | 481 | return urlencode($value); |
418 | 482 | case 'base64_decode': |
419 | - if($opt!=='false') $opt = true; |
|
420 | - else $opt = false; |
|
483 | + if($opt!=='false') { |
|
484 | + $opt = true; |
|
485 | + } else { |
|
486 | + $opt = false; |
|
487 | + } |
|
421 | 488 | return base64_decode($value,$opt); |
422 | 489 | case 'encode_sha1': $cmd = 'sha1'; |
423 | 490 | case 'addslashes': |
@@ -443,16 +510,19 @@ discard block |
||
443 | 510 | return $this->strtoupper($value); |
444 | 511 | case 'capitalize': |
445 | 512 | $_ = explode(' ',$value); |
446 | - foreach($_ as $i=>$v) |
|
447 | - { |
|
513 | + foreach($_ as $i=>$v) { |
|
448 | 514 | $_[$i] = ucfirst($v); |
449 | 515 | } |
450 | 516 | return join(' ',$_); |
451 | 517 | case 'zenhan': |
452 | - if(empty($opt)) $opt='VKas'; |
|
518 | + if(empty($opt)) { |
|
519 | + $opt='VKas'; |
|
520 | + } |
|
453 | 521 | return mb_convert_kana($value,$opt,$modx->config['modx_charset']); |
454 | 522 | case 'hanzen': |
455 | - if(empty($opt)) $opt='VKAS'; |
|
523 | + if(empty($opt)) { |
|
524 | + $opt='VKAS'; |
|
525 | + } |
|
456 | 526 | return mb_convert_kana($value,$opt,$modx->config['modx_charset']); |
457 | 527 | case 'str_shuffle': |
458 | 528 | case 'shuffle': |
@@ -477,13 +547,18 @@ discard block |
||
477 | 547 | $value = preg_replace('/\r/', '', $value); |
478 | 548 | return count(preg_split('/\n+/',$value)); |
479 | 549 | case 'strpos': |
480 | - if($opt!=0&&empty($opt)) return $value; |
|
550 | + if($opt!=0&&empty($opt)) { |
|
551 | + return $value; |
|
552 | + } |
|
481 | 553 | return $this->strpos($value,$opt); |
482 | 554 | case 'wordwrap': |
483 | 555 | // default: 70 |
484 | 556 | $wrapat = intval($opt) ? intval($opt) : 70; |
485 | - if (version_compare(PHP_VERSION, '5.3.0') >= 0) return $this->includeMdfFile('wordwrap'); |
|
486 | - else return preg_replace("@(\b\w+\b)@e","wordwrap('\\1',\$wrapat,' ',1)",$value); |
|
557 | + if (version_compare(PHP_VERSION, '5.3.0') >= 0) { |
|
558 | + return $this->includeMdfFile('wordwrap'); |
|
559 | + } else { |
|
560 | + return preg_replace("@(\b\w+\b)@e","wordwrap('\\1',\$wrapat,' ',1)",$value); |
|
561 | + } |
|
487 | 562 | case 'wrap_text': |
488 | 563 | $width = preg_match('/^[1-9][0-9]*$/',$opt) ? $opt : 70; |
489 | 564 | if($modx->config['manager_language']==='japanese-utf8') { |
@@ -499,30 +574,36 @@ discard block |
||
499 | 574 | $value = $this->substr($value,$width); |
500 | 575 | } |
501 | 576 | return join("\n",$chunk); |
577 | + } else { |
|
578 | + return wordwrap($value,$width,"\n",true); |
|
502 | 579 | } |
503 | - else |
|
504 | - return wordwrap($value,$width,"\n",true); |
|
505 | 580 | case 'substr': |
506 | - if(empty($opt)) break; |
|
581 | + if(empty($opt)) { |
|
582 | + break; |
|
583 | + } |
|
507 | 584 | if(strpos($opt,',')!==false) { |
508 | 585 | list($b,$e) = explode(',',$opt,2); |
509 | 586 | return $this->substr($value,$b,(int)$e); |
587 | + } else { |
|
588 | + return $this->substr($value,$opt); |
|
510 | 589 | } |
511 | - else return $this->substr($value,$opt); |
|
512 | 590 | case 'limit': |
513 | 591 | case 'trim_to': // http://www.movabletype.jp/documentation/appendices/modifiers/trim_to.html |
514 | - if(strpos($opt,'+')!==false) |
|
515 | - list($len,$str) = explode('+',$opt,2); |
|
516 | - else { |
|
592 | + if(strpos($opt,'+')!==false) { |
|
593 | + list($len,$str) = explode('+',$opt,2); |
|
594 | + } else { |
|
517 | 595 | $len = $opt; |
518 | 596 | $str = ''; |
519 | 597 | } |
520 | - if($len==='') $len = 100; |
|
521 | - if(abs($len) > $this->strlen($value)) $str =''; |
|
598 | + if($len==='') { |
|
599 | + $len = 100; |
|
600 | + } |
|
601 | + if(abs($len) > $this->strlen($value)) { |
|
602 | + $str =''; |
|
603 | + } |
|
522 | 604 | if(preg_match('/^[1-9][0-9]*$/',$len)) { |
523 | 605 | return $this->substr($value,0,$len) . $str; |
524 | - } |
|
525 | - elseif(preg_match('/^\-[1-9][0-9]*$/',$len)) { |
|
606 | + } elseif(preg_match('/^\-[1-9][0-9]*$/',$len)) { |
|
526 | 607 | return $str . $this->substr($value,$len); |
527 | 608 | } |
528 | 609 | break; |
@@ -532,18 +613,30 @@ discard block |
||
532 | 613 | return $this->includeMdfFile('summary'); |
533 | 614 | case 'replace': |
534 | 615 | case 'str_replace': |
535 | - if(empty($opt) || strpos($opt,',')===false) break; |
|
536 | - if (substr_count($opt, ',') ==1) $delim = ','; |
|
537 | - elseif(substr_count($opt, '|') ==1) $delim = '|'; |
|
538 | - elseif(substr_count($opt, '=>')==1) $delim = '=>'; |
|
539 | - elseif(substr_count($opt, '/') ==1) $delim = '/'; |
|
540 | - else break; |
|
616 | + if(empty($opt) || strpos($opt,',')===false) { |
|
617 | + break; |
|
618 | + } |
|
619 | + if (substr_count($opt, ',') ==1) { |
|
620 | + $delim = ','; |
|
621 | + } elseif(substr_count($opt, '|') ==1) { |
|
622 | + $delim = '|'; |
|
623 | + } elseif(substr_count($opt, '=>')==1) { |
|
624 | + $delim = '=>'; |
|
625 | + } elseif(substr_count($opt, '/') ==1) { |
|
626 | + $delim = '/'; |
|
627 | + } else { |
|
628 | + break; |
|
629 | + } |
|
541 | 630 | list($s,$r) = explode($delim,$opt); |
542 | - if($value!=='') return str_replace($s,$r,$value); |
|
631 | + if($value!=='') { |
|
632 | + return str_replace($s,$r,$value); |
|
633 | + } |
|
543 | 634 | break; |
544 | 635 | case 'replace_to': |
545 | 636 | case 'tpl': |
546 | - if($value!=='') return str_replace(array('[+value+]','[+output+]','{value}','%s'),$value,$opt); |
|
637 | + if($value!=='') { |
|
638 | + return str_replace(array('[+value+]','[+output+]','{value}','%s'),$value,$opt); |
|
639 | + } |
|
547 | 640 | break; |
548 | 641 | case 'eachtpl': |
549 | 642 | $value = explode('||',$value); |
@@ -554,59 +647,83 @@ discard block |
||
554 | 647 | return join("\n", $_); |
555 | 648 | case 'array_pop': |
556 | 649 | case 'array_shift': |
557 | - if(strpos($value,'||')!==false) $delim = '||'; |
|
558 | - else $delim = ','; |
|
650 | + if(strpos($value,'||')!==false) { |
|
651 | + $delim = '||'; |
|
652 | + } else { |
|
653 | + $delim = ','; |
|
654 | + } |
|
559 | 655 | return $cmd(explode($delim,$value)); |
560 | 656 | case 'preg_replace': |
561 | 657 | case 'regex_replace': |
562 | - if(empty($opt) || strpos($opt,',')===false) break; |
|
658 | + if(empty($opt) || strpos($opt,',')===false) { |
|
659 | + break; |
|
660 | + } |
|
563 | 661 | list($s,$r) = explode(',',$opt,2); |
564 | - if($value!=='') return preg_replace($s,$r,$value); |
|
662 | + if($value!=='') { |
|
663 | + return preg_replace($s,$r,$value); |
|
664 | + } |
|
565 | 665 | break; |
566 | 666 | case 'cat': |
567 | 667 | case 'concatenate': |
568 | 668 | case '.': |
569 | - if($value!=='') return $value . $opt; |
|
669 | + if($value!=='') { |
|
670 | + return $value . $opt; |
|
671 | + } |
|
570 | 672 | break; |
571 | 673 | case 'sprintf': |
572 | 674 | case 'string_format': |
573 | - if($value!=='') return sprintf($opt,$value); |
|
675 | + if($value!=='') { |
|
676 | + return sprintf($opt,$value); |
|
677 | + } |
|
574 | 678 | break; |
575 | 679 | case 'number_format': |
576 | - if($opt=='') $opt = 0; |
|
680 | + if($opt=='') { |
|
681 | + $opt = 0; |
|
682 | + } |
|
577 | 683 | return number_format($value,$opt); |
578 | 684 | case 'money_format': |
579 | 685 | setlocale(LC_MONETARY,setlocale(LC_TIME,0)); |
580 | - if($value!=='') return money_format($opt,(double)$value); |
|
686 | + if($value!=='') { |
|
687 | + return money_format($opt,(double)$value); |
|
688 | + } |
|
581 | 689 | break; |
582 | 690 | case 'tobool': |
583 | 691 | return boolval($value); |
584 | 692 | case 'nl2lf': |
585 | - if($value!=='') return str_replace(array("\r\n","\n", "\r"), '\n', $value); |
|
693 | + if($value!=='') { |
|
694 | + return str_replace(array("\r\n","\n", "\r"), '\n', $value); |
|
695 | + } |
|
586 | 696 | break; |
587 | 697 | case 'br2nl': |
588 | 698 | return preg_replace('@<br[\s/]*>@i', "\n", $value); |
589 | 699 | case 'nl2br': |
590 | - if (version_compare(PHP_VERSION, '5.3.0', '<')) |
|
591 | - return nl2br($value); |
|
592 | - if($opt!=='') |
|
593 | - { |
|
700 | + if (version_compare(PHP_VERSION, '5.3.0', '<')) { |
|
701 | + return nl2br($value); |
|
702 | + } |
|
703 | + if($opt!=='') { |
|
594 | 704 | $opt = trim($opt); |
595 | 705 | $opt = strtolower($opt); |
596 | - if($opt==='false') $opt = false; |
|
597 | - elseif($opt==='0') $opt = false; |
|
598 | - else $opt = true; |
|
706 | + if($opt==='false') { |
|
707 | + $opt = false; |
|
708 | + } elseif($opt==='0') { |
|
709 | + $opt = false; |
|
710 | + } else { |
|
711 | + $opt = true; |
|
712 | + } |
|
713 | + } elseif(isset($modx->config['mce_element_format'])&&$modx->config['mce_element_format']==='html') { |
|
714 | + $opt = false; |
|
715 | + } else { |
|
716 | + $opt = true; |
|
599 | 717 | } |
600 | - elseif(isset($modx->config['mce_element_format'])&&$modx->config['mce_element_format']==='html') |
|
601 | - $opt = false; |
|
602 | - else $opt = true; |
|
603 | 718 | return nl2br($value,$opt); |
604 | 719 | case 'ltrim': |
605 | 720 | case 'rtrim': |
606 | 721 | case 'trim': // ref http://mblo.info/modifiers/custom-modifiers/rtrim_opt.html |
607 | - if($opt==='') |
|
608 | - return $cmd($value); |
|
609 | - else return $cmd($value,$opt); |
|
722 | + if($opt==='') { |
|
723 | + return $cmd($value); |
|
724 | + } else { |
|
725 | + return $cmd($value,$opt); |
|
726 | + } |
|
610 | 727 | // These are all straight wrappers for PHP functions |
611 | 728 | case 'ucfirst': |
612 | 729 | case 'lcfirst': |
@@ -617,15 +734,24 @@ discard block |
||
617 | 734 | case 'strftime': |
618 | 735 | case 'date': |
619 | 736 | case 'dateformat': |
620 | - if(empty($opt)) $opt = $modx->toDateFormat(null, 'formatOnly'); |
|
621 | - if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value); |
|
622 | - if(strpos($opt,'%')!==false) |
|
623 | - return strftime($opt,0+$value); |
|
624 | - else |
|
625 | - return date($opt,0+$value); |
|
737 | + if(empty($opt)) { |
|
738 | + $opt = $modx->toDateFormat(null, 'formatOnly'); |
|
739 | + } |
|
740 | + if(!preg_match('@^[0-9]+$@',$value)) { |
|
741 | + $value = strtotime($value); |
|
742 | + } |
|
743 | + if(strpos($opt,'%')!==false) { |
|
744 | + return strftime($opt,0+$value); |
|
745 | + } else { |
|
746 | + return date($opt,0+$value); |
|
747 | + } |
|
626 | 748 | case 'time': |
627 | - if(empty($opt)) $opt = '%H:%M'; |
|
628 | - if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value); |
|
749 | + if(empty($opt)) { |
|
750 | + $opt = '%H:%M'; |
|
751 | + } |
|
752 | + if(!preg_match('@^[0-9]+$@',$value)) { |
|
753 | + $value = strtotime($value); |
|
754 | + } |
|
629 | 755 | return strftime($opt,0+$value); |
630 | 756 | case 'strtotime': |
631 | 757 | return strtotime($value); |
@@ -635,7 +761,9 @@ discard block |
||
635 | 761 | case 'tofloat': |
636 | 762 | return floatval($value); |
637 | 763 | case 'round': |
638 | - if(!$opt) $opt = 0; |
|
764 | + if(!$opt) { |
|
765 | + $opt = 0; |
|
766 | + } |
|
639 | 767 | return $cmd($value,$opt); |
640 | 768 | case 'max': |
641 | 769 | case 'min': |
@@ -647,28 +775,42 @@ discard block |
||
647 | 775 | case 'math': |
648 | 776 | case 'calc': |
649 | 777 | $value = (int)$value; |
650 | - if(empty($value)) $value = '0'; |
|
778 | + if(empty($value)) { |
|
779 | + $value = '0'; |
|
780 | + } |
|
651 | 781 | $filter = str_replace(array('[+value+]','[+output+]','{value}','%s'),'?',$opt); |
652 | 782 | $filter = preg_replace('@([a-zA-Z\n\r\t\s])@','',$filter); |
653 | - if(strpos($filter,'?')===false) $filter = "?{$filter}"; |
|
783 | + if(strpos($filter,'?')===false) { |
|
784 | + $filter = "?{$filter}"; |
|
785 | + } |
|
654 | 786 | $filter = str_replace('?',$value,$filter); |
655 | 787 | return eval("return {$filter};"); |
656 | 788 | case 'count': |
657 | - if($value=='') return 0; |
|
789 | + if($value=='') { |
|
790 | + return 0; |
|
791 | + } |
|
658 | 792 | $value = explode(',',$value); |
659 | 793 | return count($value); |
660 | 794 | case 'sort': |
661 | 795 | case 'rsort': |
662 | - if(strpos($value,"\n")!==false) $delim="\n"; |
|
663 | - else $delim = ','; |
|
796 | + if(strpos($value,"\n")!==false) { |
|
797 | + $delim="\n"; |
|
798 | + } else { |
|
799 | + $delim = ','; |
|
800 | + } |
|
664 | 801 | $swap = explode($delim,$value); |
665 | - if(!$opt) $opt = SORT_REGULAR; |
|
666 | - else $opt = constant($opt); |
|
802 | + if(!$opt) { |
|
803 | + $opt = SORT_REGULAR; |
|
804 | + } else { |
|
805 | + $opt = constant($opt); |
|
806 | + } |
|
667 | 807 | $cmd($swap,$opt); |
668 | 808 | return join($delim,$swap); |
669 | 809 | ##### Resource fields |
670 | 810 | case 'id': |
671 | - if($opt) return $this->getDocumentObject($opt,$key); |
|
811 | + if($opt) { |
|
812 | + return $this->getDocumentObject($opt,$key); |
|
813 | + } |
|
672 | 814 | break; |
673 | 815 | case 'type': |
674 | 816 | case 'contenttype': |
@@ -705,7 +847,9 @@ discard block |
||
705 | 847 | case 'privatemgr': |
706 | 848 | case 'content_dispo': |
707 | 849 | case 'hidemenu': |
708 | - if($cmd==='contenttype') $cmd = 'contentType'; |
|
850 | + if($cmd==='contenttype') { |
|
851 | + $cmd = 'contentType'; |
|
852 | + } |
|
709 | 853 | return $this->getDocumentObject($value,$cmd); |
710 | 854 | case 'title': |
711 | 855 | $pagetitle = $this->getDocumentObject($value,'pagetitle'); |
@@ -720,13 +864,20 @@ discard block |
||
720 | 864 | $templateName = $modx->db->getValue($rs); |
721 | 865 | return !$templateName ? '(blank)' : $templateName; |
722 | 866 | case 'getfield': |
723 | - if(!$opt) $opt = 'content'; |
|
867 | + if(!$opt) { |
|
868 | + $opt = 'content'; |
|
869 | + } |
|
724 | 870 | return $modx->getField($opt,$value); |
725 | 871 | case 'children': |
726 | 872 | case 'childids': |
727 | - if($value=='') $value = 0; // 値がない場合はルートと見なす |
|
873 | + if($value=='') { |
|
874 | + $value = 0; |
|
875 | + } |
|
876 | + // 値がない場合はルートと見なす |
|
728 | 877 | $published = 1; |
729 | - if($opt=='') $opt = 'page'; |
|
878 | + if($opt=='') { |
|
879 | + $opt = 'page'; |
|
880 | + } |
|
730 | 881 | $_ = explode(',',$opt); |
731 | 882 | $where = array(); |
732 | 883 | foreach($_ as $opt) { |
@@ -742,29 +893,43 @@ discard block |
||
742 | 893 | $where = join(' AND ', $where); |
743 | 894 | $children = $modx->getDocumentChildren($value, $published, '0', 'id', $where); |
744 | 895 | $result = array(); |
745 | - foreach((array)$children as $child){ |
|
896 | + foreach((array)$children as $child) { |
|
746 | 897 | $result[] = $child['id']; |
747 | 898 | } |
748 | 899 | return join(',', $result); |
749 | 900 | case 'fullurl': |
750 | - if(!is_numeric($value)) return $value; |
|
901 | + if(!is_numeric($value)) { |
|
902 | + return $value; |
|
903 | + } |
|
751 | 904 | return $modx->makeUrl($value); |
752 | 905 | case 'makeurl': |
753 | - if(!is_numeric($value)) return $value; |
|
754 | - if(!$opt) $opt = 'full'; |
|
906 | + if(!is_numeric($value)) { |
|
907 | + return $value; |
|
908 | + } |
|
909 | + if(!$opt) { |
|
910 | + $opt = 'full'; |
|
911 | + } |
|
755 | 912 | return $modx->makeUrl($value,'','',$opt); |
756 | 913 | |
757 | 914 | ##### File system |
758 | 915 | case 'getimageinfo': |
759 | 916 | case 'imageinfo': |
760 | - if(!is_file($value)) return ''; |
|
917 | + if(!is_file($value)) { |
|
918 | + return ''; |
|
919 | + } |
|
761 | 920 | $_ = getimagesize($value); |
762 | - if(!$_[0]) return ''; |
|
921 | + if(!$_[0]) { |
|
922 | + return ''; |
|
923 | + } |
|
763 | 924 | $info['width'] = $_[0]; |
764 | 925 | $info['height'] = $_[1]; |
765 | - if ($_[0] > $_[1]) $info['aspect'] = 'landscape'; |
|
766 | - elseif($_[0] < $_[1]) $info['aspect'] = 'portrait'; |
|
767 | - else $info['aspect'] = 'square'; |
|
926 | + if ($_[0] > $_[1]) { |
|
927 | + $info['aspect'] = 'landscape'; |
|
928 | + } elseif($_[0] < $_[1]) { |
|
929 | + $info['aspect'] = 'portrait'; |
|
930 | + } else { |
|
931 | + $info['aspect'] = 'square'; |
|
932 | + } |
|
768 | 933 | switch($_[2]) { |
769 | 934 | case IMAGETYPE_GIF : $info['type'] = 'gif'; break; |
770 | 935 | case IMAGETYPE_JPEG : $info['type'] = 'jpg'; break; |
@@ -783,33 +948,47 @@ discard block |
||
783 | 948 | |
784 | 949 | case 'file_get_contents': |
785 | 950 | case 'readfile': |
786 | - if(!is_file($value)) return $value; |
|
951 | + if(!is_file($value)) { |
|
952 | + return $value; |
|
953 | + } |
|
787 | 954 | $value = realpath($value); |
788 | - if(strpos($value,MODX_MANAGER_PATH)!==false) exit('Can not read core file'); |
|
955 | + if(strpos($value,MODX_MANAGER_PATH)!==false) { |
|
956 | + exit('Can not read core file'); |
|
957 | + } |
|
789 | 958 | $ext = strtolower(substr($value,-4)); |
790 | - if($ext==='.php') exit('Can not read php file'); |
|
791 | - if($ext==='.cgi') exit('Can not read cgi file'); |
|
959 | + if($ext==='.php') { |
|
960 | + exit('Can not read php file'); |
|
961 | + } |
|
962 | + if($ext==='.cgi') { |
|
963 | + exit('Can not read cgi file'); |
|
964 | + } |
|
792 | 965 | return file_get_contents($value); |
793 | 966 | case 'filesize': |
794 | - if($value == '') return ''; |
|
967 | + if($value == '') { |
|
968 | + return ''; |
|
969 | + } |
|
795 | 970 | $filename = $value; |
796 | 971 | |
797 | 972 | $site_url = $modx->config['site_url']; |
798 | - if(strpos($filename,$site_url) === 0) |
|
799 | - $filename = substr($filename,0,strlen($site_url)); |
|
973 | + if(strpos($filename,$site_url) === 0) { |
|
974 | + $filename = substr($filename,0,strlen($site_url)); |
|
975 | + } |
|
800 | 976 | $filename = trim($filename,'/'); |
801 | 977 | |
802 | 978 | $opt = trim($opt,'/'); |
803 | - if($opt!=='') $opt .= '/'; |
|
979 | + if($opt!=='') { |
|
980 | + $opt .= '/'; |
|
981 | + } |
|
804 | 982 | |
805 | 983 | $filename = MODX_BASE_PATH.$opt.$filename; |
806 | 984 | |
807 | - if(is_file($filename)){ |
|
985 | + if(is_file($filename)) { |
|
808 | 986 | clearstatcache(); |
809 | 987 | $size = filesize($filename); |
810 | 988 | return $size; |
989 | + } else { |
|
990 | + return ''; |
|
811 | 991 | } |
812 | - else return ''; |
|
813 | 992 | ##### User info |
814 | 993 | case 'username': |
815 | 994 | case 'fullname': |
@@ -837,19 +1016,29 @@ discard block |
||
837 | 1016 | $this->opt = $cmd; |
838 | 1017 | return $this->includeMdfFile('moduser'); |
839 | 1018 | case 'userinfo': |
840 | - if(empty($opt)) $this->opt = 'username'; |
|
1019 | + if(empty($opt)) { |
|
1020 | + $this->opt = 'username'; |
|
1021 | + } |
|
841 | 1022 | return $this->includeMdfFile('moduser'); |
842 | 1023 | case 'webuserinfo': |
843 | - if(empty($opt)) $this->opt = 'username'; |
|
1024 | + if(empty($opt)) { |
|
1025 | + $this->opt = 'username'; |
|
1026 | + } |
|
844 | 1027 | $this->value = -$value; |
845 | 1028 | return $this->includeMdfFile('moduser'); |
846 | 1029 | ##### Special functions |
847 | 1030 | case 'ifempty': |
848 | 1031 | case '_default': |
849 | 1032 | case 'default': |
850 | - if (empty($value)) return $opt; break; |
|
1033 | + if (empty($value)) { |
|
1034 | + return $opt; |
|
1035 | + } |
|
1036 | + break; |
|
851 | 1037 | case 'ifnotempty': |
852 | - if (!empty($value)) return $opt; break; |
|
1038 | + if (!empty($value)) { |
|
1039 | + return $opt; |
|
1040 | + } |
|
1041 | + break; |
|
853 | 1042 | case 'datagrid': |
854 | 1043 | include_once(MODX_CORE_PATH . 'controls/datagrid.class.php'); |
855 | 1044 | $grd = new DataGrid(); |
@@ -857,13 +1046,18 @@ discard block |
||
857 | 1046 | $grd->itemStyle = ''; |
858 | 1047 | $grd->altItemStyle = ''; |
859 | 1048 | $pos = strpos($value,"\n"); |
860 | - if($pos) $_ = substr($value,0,$pos); |
|
861 | - else $_ = $pos; |
|
1049 | + if($pos) { |
|
1050 | + $_ = substr($value,0,$pos); |
|
1051 | + } else { |
|
1052 | + $_ = $pos; |
|
1053 | + } |
|
862 | 1054 | $grd->cdelim = strpos($_,"\t")!==false ? 'tab' : ','; |
863 | 1055 | return $grd->render(); |
864 | 1056 | case 'rotate': |
865 | 1057 | case 'evenodd': |
866 | - if(strpos($opt,',')===false) $opt = 'odd,even'; |
|
1058 | + if(strpos($opt,',')===false) { |
|
1059 | + $opt = 'odd,even'; |
|
1060 | + } |
|
867 | 1061 | $_ = explode(',', $opt); |
868 | 1062 | $c = count($_); |
869 | 1063 | $i = $value + $c; |
@@ -872,7 +1066,9 @@ discard block |
||
872 | 1066 | case 'takeval': |
873 | 1067 | $arr = explode(",",$opt); |
874 | 1068 | $idx = $value; |
875 | - if(!is_numeric($idx)) return $value; |
|
1069 | + if(!is_numeric($idx)) { |
|
1070 | + return $value; |
|
1071 | + } |
|
876 | 1072 | return $arr[$idx]; |
877 | 1073 | case 'getimage': |
878 | 1074 | return $this->includeMdfFile('getimage'); |
@@ -880,14 +1076,18 @@ discard block |
||
880 | 1076 | return $modx->nicesize($value); |
881 | 1077 | case 'googlemap': |
882 | 1078 | case 'googlemaps': |
883 | - if(empty($opt)) $opt = 'border:none;width:500px;height:350px;'; |
|
1079 | + if(empty($opt)) { |
|
1080 | + $opt = 'border:none;width:500px;height:350px;'; |
|
1081 | + } |
|
884 | 1082 | $tpl = '<iframe style="[+style+]" src="https://maps.google.co.jp/maps?ll=[+value+]&output=embed&z=15"></iframe>'; |
885 | 1083 | $ph['style'] = $opt; |
886 | 1084 | $ph['value'] = $value; |
887 | 1085 | return $modx->parseText($tpl,$ph); |
888 | 1086 | case 'youtube': |
889 | 1087 | case 'youtube16x9': |
890 | - if(empty($opt)) $opt = 560; |
|
1088 | + if(empty($opt)) { |
|
1089 | + $opt = 560; |
|
1090 | + } |
|
891 | 1091 | $h = round($opt*0.5625); |
892 | 1092 | $tpl = '<iframe width="%s" height="%s" src="https://www.youtube.com/embed/%s" frameborder="0" allowfullscreen></iframe>'; |
893 | 1093 | return sprintf($tpl,$opt,$h,$value); |
@@ -920,7 +1120,8 @@ discard block |
||
920 | 1120 | return $value; |
921 | 1121 | } |
922 | 1122 | |
923 | - function includeMdfFile($cmd) { |
|
1123 | + function includeMdfFile($cmd) |
|
1124 | + { |
|
924 | 1125 | global $modx; |
925 | 1126 | $key = $this->key; |
926 | 1127 | $value = $this->value; |
@@ -931,55 +1132,65 @@ discard block |
||
931 | 1132 | function getValueFromElement($key, $value, $cmd, $opt) |
932 | 1133 | { |
933 | 1134 | global $modx; |
934 | - if( isset($modx->snippetCache[$this->elmName]) ) |
|
935 | - { |
|
1135 | + if( isset($modx->snippetCache[$this->elmName]) ) { |
|
936 | 1136 | $php = $modx->snippetCache[$this->elmName]; |
937 | - } |
|
938 | - else |
|
939 | - { |
|
1137 | + } else { |
|
940 | 1138 | $esc_elmName = $modx->db->escape($this->elmName); |
941 | 1139 | $result = $modx->db->select('snippet','[+prefix+]site_snippets',"name='{$esc_elmName}'"); |
942 | 1140 | $total = $modx->db->getRecordCount($result); |
943 | - if($total == 1) |
|
944 | - { |
|
1141 | + if($total == 1) { |
|
945 | 1142 | $row = $modx->db->getRow($result); |
946 | 1143 | $php = $row['snippet']; |
947 | - } |
|
948 | - elseif($total == 0) |
|
949 | - { |
|
1144 | + } elseif($total == 0) { |
|
950 | 1145 | $assets_path = MODX_BASE_PATH.'assets/'; |
951 | - if(is_file($assets_path."modifiers/mdf_{$cmd}.inc.php")) |
|
952 | - $modifiers_path = $assets_path."modifiers/mdf_{$cmd}.inc.php"; |
|
953 | - elseif(is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php")) |
|
954 | - $modifiers_path = $assets_path."plugins/phx/modifiers/{$cmd}.phx.php"; |
|
955 | - elseif(is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php")) |
|
956 | - $modifiers_path = MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php"; |
|
957 | - else $modifiers_path = false; |
|
1146 | + if(is_file($assets_path."modifiers/mdf_{$cmd}.inc.php")) { |
|
1147 | + $modifiers_path = $assets_path."modifiers/mdf_{$cmd}.inc.php"; |
|
1148 | + } elseif(is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php")) { |
|
1149 | + $modifiers_path = $assets_path."plugins/phx/modifiers/{$cmd}.phx.php"; |
|
1150 | + } elseif(is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php")) { |
|
1151 | + $modifiers_path = MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php"; |
|
1152 | + } else { |
|
1153 | + $modifiers_path = false; |
|
1154 | + } |
|
958 | 1155 | |
959 | 1156 | if($modifiers_path) { |
960 | 1157 | $php = @file_get_contents($modifiers_path); |
961 | 1158 | $php = trim($php); |
962 | - if(substr($php,0,5)==='<?php') $php = substr($php,6); |
|
963 | - if(substr($php,0,2)==='<?') $php = substr($php,3); |
|
964 | - if(substr($php,-2)==='?>') $php = substr($php,0,-2); |
|
965 | - if($this->elmName!=='') |
|
966 | - $modx->snippetCache[$this->elmName.'Props'] = ''; |
|
967 | - } |
|
968 | - else |
|
969 | - $php = false; |
|
1159 | + if(substr($php,0,5)==='<?php') { |
|
1160 | + $php = substr($php,6); |
|
1161 | + } |
|
1162 | + if(substr($php,0,2)==='<?') { |
|
1163 | + $php = substr($php,3); |
|
1164 | + } |
|
1165 | + if(substr($php,-2)==='?>') { |
|
1166 | + $php = substr($php,0,-2); |
|
1167 | + } |
|
1168 | + if($this->elmName!=='') { |
|
1169 | + $modx->snippetCache[$this->elmName.'Props'] = ''; |
|
1170 | + } |
|
1171 | + } else { |
|
1172 | + $php = false; |
|
1173 | + } |
|
1174 | + } else { |
|
1175 | + $php = false; |
|
970 | 1176 | } |
971 | - else $php = false; |
|
972 | - if($this->elmName!=='') $modx->snippetCache[$this->elmName]= $php; |
|
1177 | + if($this->elmName!=='') { |
|
1178 | + $modx->snippetCache[$this->elmName]= $php; |
|
1179 | + } |
|
1180 | + } |
|
1181 | + if($php==='') { |
|
1182 | + $php=false; |
|
973 | 1183 | } |
974 | - if($php==='') $php=false; |
|
975 | 1184 | |
976 | - if($php===false) $html = $modx->getChunk($this->elmName); |
|
977 | - else $html = false; |
|
1185 | + if($php===false) { |
|
1186 | + $html = $modx->getChunk($this->elmName); |
|
1187 | + } else { |
|
1188 | + $html = false; |
|
1189 | + } |
|
978 | 1190 | |
979 | 1191 | $self = '[+output+]'; |
980 | 1192 | |
981 | - if($php !== false) |
|
982 | - { |
|
1193 | + if($php !== false) { |
|
983 | 1194 | ob_start(); |
984 | 1195 | $options = $opt; |
985 | 1196 | $output = $value; |
@@ -991,19 +1202,19 @@ discard block |
||
991 | 1202 | $this->vars['options'] = & $opt; |
992 | 1203 | $custom = eval($php); |
993 | 1204 | $msg = ob_get_contents(); |
994 | - if($value===$this->bt) $value = $msg . $custom; |
|
1205 | + if($value===$this->bt) { |
|
1206 | + $value = $msg . $custom; |
|
1207 | + } |
|
995 | 1208 | ob_end_clean(); |
996 | - } |
|
997 | - elseif($html!==false && isset($value) && $value!=='') |
|
998 | - { |
|
1209 | + } elseif($html!==false && isset($value) && $value!=='') { |
|
999 | 1210 | $html = str_replace(array($self,'[+value+]'), $value, $html); |
1000 | 1211 | $value = str_replace(array('[+options+]','[+param+]'), $opt, $html); |
1212 | + } else { |
|
1213 | + return false; |
|
1001 | 1214 | } |
1002 | - else return false; |
|
1003 | 1215 | |
1004 | 1216 | if($php===false && $html===false && $value!=='' |
1005 | - && (strpos($cmd,'[+value+]')!==false || strpos($cmd,$self)!==false)) |
|
1006 | - { |
|
1217 | + && (strpos($cmd,'[+value+]')!==false || strpos($cmd,$self)!==false)) { |
|
1007 | 1218 | $value = str_replace(array('[+value+]',$self),$value,$cmd); |
1008 | 1219 | } |
1009 | 1220 | return $value; |
@@ -1013,23 +1224,39 @@ discard block |
||
1013 | 1224 | { |
1014 | 1225 | global $modx; |
1015 | 1226 | |
1016 | - if(strpos($content,'[')===false && strpos($content,'{')===false) return $content; |
|
1227 | + if(strpos($content,'[')===false && strpos($content,'{')===false) { |
|
1228 | + return $content; |
|
1229 | + } |
|
1017 | 1230 | |
1018 | - if(!$modx->maxParserPasses) $modx->maxParserPasses = 10; |
|
1231 | + if(!$modx->maxParserPasses) { |
|
1232 | + $modx->maxParserPasses = 10; |
|
1233 | + } |
|
1019 | 1234 | $bt=''; |
1020 | 1235 | $i=0; |
1021 | - while($bt!==$content) |
|
1022 | - { |
|
1236 | + while($bt!==$content) { |
|
1023 | 1237 | $bt = $content; |
1024 | - if(strpos($content,'[*')!==false && $modx->documentIdentifier) |
|
1025 | - $content = $modx->mergeDocumentContent($content); |
|
1026 | - if(strpos($content,'[(')!==false) $content = $modx->mergeSettingsContent($content); |
|
1027 | - if(strpos($content,'{{')!==false) $content = $modx->mergeChunkContent($content); |
|
1028 | - if(strpos($content,'[!')!==false) $content = str_replace(array('[!','!]'),array('[[',']]'),$content); |
|
1029 | - if(strpos($content,'[[')!==false) $content = $modx->evalSnippets($content); |
|
1238 | + if(strpos($content,'[*')!==false && $modx->documentIdentifier) { |
|
1239 | + $content = $modx->mergeDocumentContent($content); |
|
1240 | + } |
|
1241 | + if(strpos($content,'[(')!==false) { |
|
1242 | + $content = $modx->mergeSettingsContent($content); |
|
1243 | + } |
|
1244 | + if(strpos($content,'{{')!==false) { |
|
1245 | + $content = $modx->mergeChunkContent($content); |
|
1246 | + } |
|
1247 | + if(strpos($content,'[!')!==false) { |
|
1248 | + $content = str_replace(array('[!','!]'),array('[[',']]'),$content); |
|
1249 | + } |
|
1250 | + if(strpos($content,'[[')!==false) { |
|
1251 | + $content = $modx->evalSnippets($content); |
|
1252 | + } |
|
1030 | 1253 | |
1031 | - if($content===$bt) break; |
|
1032 | - if($modx->maxParserPasses < $i) break; |
|
1254 | + if($content===$bt) { |
|
1255 | + break; |
|
1256 | + } |
|
1257 | + if($modx->maxParserPasses < $i) { |
|
1258 | + break; |
|
1259 | + } |
|
1033 | 1260 | $i++; |
1034 | 1261 | } |
1035 | 1262 | return $content; |
@@ -1040,103 +1267,138 @@ discard block |
||
1040 | 1267 | global $modx; |
1041 | 1268 | |
1042 | 1269 | $target = trim($target); |
1043 | - if(empty($target)) $target = $modx->config['site_start']; |
|
1044 | - if(preg_match('@^[1-9][0-9]*$@',$target)) $method='id'; |
|
1045 | - else $method = 'alias'; |
|
1270 | + if(empty($target)) { |
|
1271 | + $target = $modx->config['site_start']; |
|
1272 | + } |
|
1273 | + if(preg_match('@^[1-9][0-9]*$@',$target)) { |
|
1274 | + $method='id'; |
|
1275 | + } else { |
|
1276 | + $method = 'alias'; |
|
1277 | + } |
|
1046 | 1278 | |
1047 | - if(!isset($this->documentObject[$target])) |
|
1048 | - { |
|
1279 | + if(!isset($this->documentObject[$target])) { |
|
1049 | 1280 | $this->documentObject[$target] = $modx->getDocumentObject($method,$target,'direct'); |
1050 | 1281 | } |
1051 | 1282 | |
1052 | - if($this->documentObject[$target]['publishedon']==='0') |
|
1053 | - return ''; |
|
1054 | - elseif(isset($this->documentObject[$target][$field])) |
|
1055 | - { |
|
1056 | - if(is_array($this->documentObject[$target][$field])) |
|
1057 | - { |
|
1283 | + if($this->documentObject[$target]['publishedon']==='0') { |
|
1284 | + return ''; |
|
1285 | + } elseif(isset($this->documentObject[$target][$field])) { |
|
1286 | + if(is_array($this->documentObject[$target][$field])) { |
|
1058 | 1287 | $a = $modx->getTemplateVarOutput($field,$target); |
1059 | 1288 | $this->documentObject[$target][$field] = $a[$field]; |
1060 | 1289 | } |
1290 | + } else { |
|
1291 | + $this->documentObject[$target][$field] = false; |
|
1061 | 1292 | } |
1062 | - else $this->documentObject[$target][$field] = false; |
|
1063 | 1293 | |
1064 | 1294 | return $this->documentObject[$target][$field]; |
1065 | 1295 | } |
1066 | 1296 | |
1067 | - function setPlaceholders($value = '', $key = '', $path = '') { |
|
1068 | - if($path!=='') $key = "{$path}.{$key}"; |
|
1297 | + function setPlaceholders($value = '', $key = '', $path = '') |
|
1298 | + { |
|
1299 | + if($path!=='') { |
|
1300 | + $key = "{$path}.{$key}"; |
|
1301 | + } |
|
1069 | 1302 | if (is_array($value)) { |
1070 | 1303 | foreach ($value as $subkey => $subval) { |
1071 | 1304 | $this->setPlaceholders($subval, $subkey, $key); |
1072 | 1305 | } |
1306 | + } else { |
|
1307 | + $this->setModifiersVariable($key, $value); |
|
1073 | 1308 | } |
1074 | - else $this->setModifiersVariable($key, $value); |
|
1075 | 1309 | } |
1076 | 1310 | |
1077 | 1311 | // Sets a placeholder variable which can only be access by Modifiers |
1078 | - function setModifiersVariable($key, $value) { |
|
1079 | - if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value; |
|
1312 | + function setModifiersVariable($key, $value) |
|
1313 | + { |
|
1314 | + if ($key != 'phx' && $key != 'dummy') { |
|
1315 | + $this->placeholders[$key] = $value; |
|
1316 | + } |
|
1080 | 1317 | } |
1081 | 1318 | |
1082 | 1319 | //mbstring |
1083 | - function substr($str, $s, $l = null) { |
|
1320 | + function substr($str, $s, $l = null) |
|
1321 | + { |
|
1084 | 1322 | global $modx; |
1085 | - if(is_null($l)) $l = $this->strlen($str); |
|
1086 | - if (function_exists('mb_substr')) |
|
1087 | - { |
|
1088 | - if(strpos($str,"\r")!==false) |
|
1089 | - $str = str_replace(array("\r\n","\r"), "\n", $str); |
|
1323 | + if(is_null($l)) { |
|
1324 | + $l = $this->strlen($str); |
|
1325 | + } |
|
1326 | + if (function_exists('mb_substr')) { |
|
1327 | + if(strpos($str,"\r")!==false) { |
|
1328 | + $str = str_replace(array("\r\n","\r"), "\n", $str); |
|
1329 | + } |
|
1090 | 1330 | return mb_substr($str, $s, $l, $modx->config['modx_charset']); |
1091 | 1331 | } |
1092 | 1332 | return substr($str, $s, $l); |
1093 | 1333 | } |
1094 | - function strpos($haystack,$needle,$offset=0) { |
|
1334 | + function strpos($haystack,$needle,$offset=0) |
|
1335 | + { |
|
1095 | 1336 | global $modx; |
1096 | - if (function_exists('mb_strpos')) return mb_strpos($haystack,$needle,$offset,$modx->config['modx_charset']); |
|
1337 | + if (function_exists('mb_strpos')) { |
|
1338 | + return mb_strpos($haystack,$needle,$offset,$modx->config['modx_charset']); |
|
1339 | + } |
|
1097 | 1340 | return strpos($haystack,$needle,$offset); |
1098 | 1341 | } |
1099 | - function strlen($str) { |
|
1342 | + function strlen($str) |
|
1343 | + { |
|
1100 | 1344 | global $modx; |
1101 | - if (function_exists('mb_strlen')) return mb_strlen(str_replace("\r\n", "\n", $str),$modx->config['modx_charset']); |
|
1345 | + if (function_exists('mb_strlen')) { |
|
1346 | + return mb_strlen(str_replace("\r\n", "\n", $str),$modx->config['modx_charset']); |
|
1347 | + } |
|
1102 | 1348 | return strlen($str); |
1103 | 1349 | } |
1104 | - function strtolower($str) { |
|
1105 | - if (function_exists('mb_strtolower')) return mb_strtolower($str); |
|
1350 | + function strtolower($str) |
|
1351 | + { |
|
1352 | + if (function_exists('mb_strtolower')) { |
|
1353 | + return mb_strtolower($str); |
|
1354 | + } |
|
1106 | 1355 | return strtolower($str); |
1107 | 1356 | } |
1108 | - function strtoupper($str) { |
|
1109 | - if (function_exists('mb_strtoupper')) return mb_strtoupper($str); |
|
1357 | + function strtoupper($str) |
|
1358 | + { |
|
1359 | + if (function_exists('mb_strtoupper')) { |
|
1360 | + return mb_strtoupper($str); |
|
1361 | + } |
|
1110 | 1362 | return strtoupper($str); |
1111 | 1363 | } |
1112 | - function ucfirst($str) { |
|
1113 | - if (function_exists('mb_strtoupper')) |
|
1114 | - return mb_strtoupper($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
|
1364 | + function ucfirst($str) |
|
1365 | + { |
|
1366 | + if (function_exists('mb_strtoupper')) { |
|
1367 | + return mb_strtoupper($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
|
1368 | + } |
|
1115 | 1369 | return ucfirst($str); |
1116 | 1370 | } |
1117 | - function lcfirst($str) { |
|
1118 | - if (function_exists('mb_strtolower')) |
|
1119 | - return mb_strtolower($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
|
1371 | + function lcfirst($str) |
|
1372 | + { |
|
1373 | + if (function_exists('mb_strtolower')) { |
|
1374 | + return mb_strtolower($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
|
1375 | + } |
|
1120 | 1376 | return lcfirst($str); |
1121 | 1377 | } |
1122 | - function ucwords($str) { |
|
1123 | - if (function_exists('mb_convert_case')) |
|
1124 | - return mb_convert_case($str, MB_CASE_TITLE); |
|
1378 | + function ucwords($str) |
|
1379 | + { |
|
1380 | + if (function_exists('mb_convert_case')) { |
|
1381 | + return mb_convert_case($str, MB_CASE_TITLE); |
|
1382 | + } |
|
1125 | 1383 | return ucwords($str); |
1126 | 1384 | } |
1127 | - function strrev($str) { |
|
1385 | + function strrev($str) |
|
1386 | + { |
|
1128 | 1387 | preg_match_all('/./us', $str, $ar); |
1129 | 1388 | return join(array_reverse($ar[0])); |
1130 | 1389 | } |
1131 | - function str_shuffle($str) { |
|
1390 | + function str_shuffle($str) |
|
1391 | + { |
|
1132 | 1392 | preg_match_all('/./us', $str, $ar); |
1133 | 1393 | shuffle($ar[0]); |
1134 | 1394 | return join($ar[0]); |
1135 | 1395 | } |
1136 | - function str_word_count($str) { |
|
1396 | + function str_word_count($str) |
|
1397 | + { |
|
1137 | 1398 | return count(preg_split('~[^\p{L}\p{N}\']+~u',$str)); |
1138 | 1399 | } |
1139 | - function strip_tags($value,$params='') { |
|
1400 | + function strip_tags($value,$params='') |
|
1401 | + { |
|
1140 | 1402 | global $modx; |
1141 | 1403 | |
1142 | 1404 | if(stripos($params,'style')===false && stripos($value,'</style>')!==false) { |
@@ -341,7 +341,7 @@ |
||
341 | 341 | $conditional = join(' ',$this->condition); |
342 | 342 | $isvalid = intval(eval("return ({$conditional});")); |
343 | 343 | if ($isvalid) return $this->srcValue; |
344 | - return NULL; |
|
344 | + return null; |
|
345 | 345 | case 'then': |
346 | 346 | $conditional = join(' ',$this->condition); |
347 | 347 | $isvalid = intval(eval("return ({$conditional});")); |
@@ -24,6 +24,11 @@ discard block |
||
24 | 24 | $this->condModifiers = '=,is,eq,equals,ne,neq,notequals,isnot,isnt,not,%,isempty,isnotempty,isntempty,>=,gte,eg,gte,greaterthan,>,gt,isgreaterthan,isgt,lowerthan,<,lt,<=,lte,islte,islowerthan,islt,el,find,in,inarray,in_array,fnmatch,wcard,wcard_match,wildcard,wildcard_match,is_file,is_dir,file_exists,is_readable,is_writable,is_image,regex,preg,preg_match,memberof,mo,isinrole,ir'; |
25 | 25 | } |
26 | 26 | |
27 | + /** |
|
28 | + * @param string $key |
|
29 | + * @param string $value |
|
30 | + * @param string|false $modifiers |
|
31 | + */ |
|
27 | 32 | function phxFilter($key,$value,$modifiers) |
28 | 33 | { |
29 | 34 | global $modx; |
@@ -45,6 +50,10 @@ discard block |
||
45 | 50 | return $value; |
46 | 51 | } |
47 | 52 | |
53 | + /** |
|
54 | + * @param string $mode |
|
55 | + * @param string $modifiers |
|
56 | + */ |
|
48 | 57 | function _getDelim($mode,$modifiers) { |
49 | 58 | $c = substr($modifiers,0,1); |
50 | 59 | if(!in_array($c, array('"', "'", '`')) ) return false; |
@@ -56,6 +65,11 @@ discard block |
||
56 | 65 | return $c; |
57 | 66 | } |
58 | 67 | |
68 | + /** |
|
69 | + * @param string $mode |
|
70 | + * @param false|string $delim |
|
71 | + * @param string $modifiers |
|
72 | + */ |
|
59 | 73 | function _getOpt($mode,$delim,$modifiers) { |
60 | 74 | if($delim) { |
61 | 75 | if($mode=='(') return substr($modifiers,1,strpos($modifiers, $delim . ')' )-1); |
@@ -74,6 +88,14 @@ discard block |
||
74 | 88 | return $opt; |
75 | 89 | } |
76 | 90 | } |
91 | + |
|
92 | + /** |
|
93 | + * @param string $mode |
|
94 | + * @param false|string $delim |
|
95 | + * @param string $modifiers |
|
96 | + * |
|
97 | + * @return string |
|
98 | + */ |
|
77 | 99 | function _getRemainModifiers($mode,$delim,$modifiers) { |
78 | 100 | if($delim) { |
79 | 101 | if($mode=='(') |
@@ -101,6 +123,9 @@ discard block |
||
101 | 123 | return substr($string,strpos($string, $delim)+$len); |
102 | 124 | } |
103 | 125 | |
126 | + /** |
|
127 | + * @param string $modifiers |
|
128 | + */ |
|
104 | 129 | function splitEachModifiers($modifiers) { |
105 | 130 | global $modx; |
106 | 131 | |
@@ -234,6 +259,9 @@ discard block |
||
234 | 259 | else return true; |
235 | 260 | } |
236 | 261 | |
262 | + /** |
|
263 | + * @param string $cmd |
|
264 | + */ |
|
237 | 265 | function getValueFromPreset($key, $value, $cmd, $opt) |
238 | 266 | { |
239 | 267 | global $modx; |
@@ -920,6 +948,9 @@ discard block |
||
920 | 948 | return $value; |
921 | 949 | } |
922 | 950 | |
951 | + /** |
|
952 | + * @param string $cmd |
|
953 | + */ |
|
923 | 954 | function includeMdfFile($cmd) { |
924 | 955 | global $modx; |
925 | 956 | $key = $this->key; |
@@ -1075,6 +1106,10 @@ discard block |
||
1075 | 1106 | } |
1076 | 1107 | |
1077 | 1108 | // Sets a placeholder variable which can only be access by Modifiers |
1109 | + |
|
1110 | + /** |
|
1111 | + * @param string $value |
|
1112 | + */ |
|
1078 | 1113 | function setModifiersVariable($key, $value) { |
1079 | 1114 | if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value; |
1080 | 1115 | } |
@@ -6,9 +6,9 @@ |
||
6 | 6 | * Time: 14:17 |
7 | 7 | */ |
8 | 8 | |
9 | -if (!include_once(MODX_MANAGER_PATH . 'includes/extenders/modxmailer.class.inc.php')){ |
|
9 | +if (!include_once(MODX_MANAGER_PATH.'includes/extenders/modxmailer.class.inc.php')) { |
|
10 | 10 | return false; |
11 | -}else{ |
|
11 | +} else { |
|
12 | 12 | $this->mail = new MODxMailer; |
13 | 13 | $this->mail->init($this); |
14 | 14 | return true; |
@@ -6,9 +6,9 @@ |
||
6 | 6 | * Time: 14:17 |
7 | 7 | */ |
8 | 8 | |
9 | -if (!include_once(MODX_MANAGER_PATH . 'includes/extenders/modxmailer.class.inc.php')){ |
|
9 | +if (!include_once(MODX_MANAGER_PATH . 'includes/extenders/modxmailer.class.inc.php')) { |
|
10 | 10 | return false; |
11 | -}else{ |
|
11 | +} else { |
|
12 | 12 | $this->mail = new MODxMailer; |
13 | 13 | $this->mail->init($this); |
14 | 14 | return true; |
@@ -248,9 +248,9 @@ |
||
248 | 248 | echo '<span class="notok">' . $_lang['failed'] . '</span></b>' . $_lang['table_prefix_not_exist'] . '</p>'; |
249 | 249 | $errors++; |
250 | 250 | echo '<p>' . $_lang['table_prefix_not_exist_note'] . '</p>'; |
251 | - } else { |
|
251 | + } else { |
|
252 | 252 | echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
253 | - } |
|
253 | + } |
|
254 | 254 | } |
255 | 255 | |
256 | 256 | // check mysql version |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! function_exists('f_owc')){ |
|
2 | +if (!function_exists('f_owc')) { |
|
3 | 3 | /** |
4 | 4 | * @param $path |
5 | 5 | * @param $data |
@@ -12,30 +12,30 @@ discard block |
||
12 | 12 | fwrite($hnd, $data); |
13 | 13 | fclose($hnd); |
14 | 14 | |
15 | - if(null !== $mode) chmod($path, $mode); |
|
16 | - }catch(Exception $e){ |
|
15 | + if (null !== $mode) chmod($path, $mode); |
|
16 | + } catch (Exception $e) { |
|
17 | 17 | // Nothing, this is NOT normal |
18 | 18 | unset($e); |
19 | 19 | } |
20 | 20 | } |
21 | 21 | } |
22 | 22 | |
23 | -$installMode = isset($_POST['installmode']) ? (int)$_POST['installmode'] : 0; |
|
24 | -if( ! isset($_lang)) $_lang = array(); |
|
23 | +$installMode = isset($_POST['installmode']) ? (int) $_POST['installmode'] : 0; |
|
24 | +if (!isset($_lang)) $_lang = array(); |
|
25 | 25 | |
26 | 26 | echo '<div class="stepcontainer"> |
27 | 27 | <ul class="progressbar"> |
28 | - <li class="visited">' . $_lang['choose_language'] . '</li> |
|
29 | - <li class="visited">' . $_lang['installation_mode'] . '</li> |
|
30 | - <li class="visited">' . $_lang['optional_items'] . '</li> |
|
31 | - <li class="active">' . $_lang['preinstall_validation'] . '</li> |
|
32 | - <li>' . $_lang['install_results'] . '</li> |
|
28 | + <li class="visited">' . $_lang['choose_language'].'</li> |
|
29 | + <li class="visited">' . $_lang['installation_mode'].'</li> |
|
30 | + <li class="visited">' . $_lang['optional_items'].'</li> |
|
31 | + <li class="active">' . $_lang['preinstall_validation'].'</li> |
|
32 | + <li>' . $_lang['install_results'].'</li> |
|
33 | 33 | </ul> |
34 | 34 | <div class="clearleft"></div> |
35 | 35 | </div>'; |
36 | 36 | |
37 | -echo '<h2>' . $_lang['preinstall_validation'] . '</h2>'; |
|
38 | -echo '<h3>' . $_lang['summary_setup_check'] . '</h3>'; |
|
37 | +echo '<h2>'.$_lang['preinstall_validation'].'</h2>'; |
|
38 | +echo '<h3>'.$_lang['summary_setup_check'].'</h3>'; |
|
39 | 39 | |
40 | 40 | $errors = 0; |
41 | 41 | |
@@ -43,73 +43,73 @@ discard block |
||
43 | 43 | // check PHP version |
44 | 44 | define('PHP_MIN_VERSION', '5.4.0'); |
45 | 45 | $phpMinVersion = PHP_MIN_VERSION; // Maybe not necessary. For backward compatibility |
46 | -echo '<p>' . $_lang['checking_php_version']; |
|
46 | +echo '<p>'.$_lang['checking_php_version']; |
|
47 | 47 | // -1 if left is less, 0 if equal, +1 if left is higher |
48 | 48 | if (version_compare(phpversion(), PHP_MIN_VERSION) < 0) { |
49 | 49 | $errors++; |
50 | - $tmp = $_lang['you_running_php'] . phpversion() . str_replace('[+min_version+]', PHP_MIN_VERSION, $_lang["modx_requires_php"]); |
|
51 | - echo '<span class="notok">' . $_lang['failed'] . '</span>' . $tmp . '</p>'; |
|
50 | + $tmp = $_lang['you_running_php'].phpversion().str_replace('[+min_version+]', PHP_MIN_VERSION, $_lang["modx_requires_php"]); |
|
51 | + echo '<span class="notok">'.$_lang['failed'].'</span>'.$tmp.'</p>'; |
|
52 | 52 | } else { |
53 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
53 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | |
57 | 57 | // check if iconv is available |
58 | -echo '<p>' . $_lang['checking_iconv']; |
|
58 | +echo '<p>'.$_lang['checking_iconv']; |
|
59 | 59 | $iconv = (int) function_exists('iconv'); |
60 | -if ($iconv == '0'){ |
|
61 | - echo '<span class="notok">' . $_lang['failed'].'</span></p><p><strong>'.$_lang['checking_iconv_note'].'</strong></p>'; |
|
60 | +if ($iconv == '0') { |
|
61 | + echo '<span class="notok">'.$_lang['failed'].'</span></p><p><strong>'.$_lang['checking_iconv_note'].'</strong></p>'; |
|
62 | 62 | $errors++; |
63 | 63 | } else { |
64 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
64 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
65 | 65 | } |
66 | 66 | // check sessions |
67 | -echo '<p>' . $_lang['checking_sessions']; |
|
67 | +echo '<p>'.$_lang['checking_sessions']; |
|
68 | 68 | if ($_SESSION['test'] != 1) { |
69 | - echo '<span class="notok">' . $_lang['failed']. '</span></p>'; |
|
69 | + echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
|
70 | 70 | $errors++; |
71 | 71 | } else { |
72 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
72 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | |
76 | 76 | // check directories |
77 | 77 | // cache exists? |
78 | -echo '<p>' . $_lang['checking_if_cache_exist']; |
|
78 | +echo '<p>'.$_lang['checking_if_cache_exist']; |
|
79 | 79 | if (!file_exists("../assets/cache") || !file_exists("../assets/cache/rss")) { |
80 | - echo '<span class="notok">' . $_lang['failed'] . '</span></p>'; |
|
80 | + echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
|
81 | 81 | $errors++; |
82 | 82 | } else { |
83 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
83 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | |
87 | 87 | // cache writable? |
88 | -echo '<p>' . $_lang['checking_if_cache_writable']; |
|
88 | +echo '<p>'.$_lang['checking_if_cache_writable']; |
|
89 | 89 | if (!is_writable("../assets/cache")) { |
90 | 90 | $errors++; |
91 | - echo '<span class="notok">' . $_lang['failed'] . '</span></p>'; |
|
91 | + echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
|
92 | 92 | } else { |
93 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
93 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | |
97 | 97 | // cache files writable? |
98 | -echo '<p>' . $_lang['checking_if_cache_file_writable']; |
|
98 | +echo '<p>'.$_lang['checking_if_cache_file_writable']; |
|
99 | 99 | $tmp = "../assets/cache/siteCache.idx.php"; |
100 | -if ( ! file_exists($tmp)) { |
|
100 | +if (!file_exists($tmp)) { |
|
101 | 101 | f_owc($tmp, "<?php //EVO site cache file ?>"); |
102 | 102 | } |
103 | -if ( ! is_writable($tmp)) { |
|
103 | +if (!is_writable($tmp)) { |
|
104 | 104 | $errors++; |
105 | - echo '<span class="notok">' . $_lang['failed'] . '</span></p>'; |
|
105 | + echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
|
106 | 106 | } else { |
107 | 107 | echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
108 | 108 | } |
109 | 109 | |
110 | 110 | |
111 | 111 | echo '<p>'.$_lang['checking_if_cache_file2_writable']; |
112 | -if ( ! is_writable("../assets/cache/sitePublishing.idx.php")) { |
|
112 | +if (!is_writable("../assets/cache/sitePublishing.idx.php")) { |
|
113 | 113 | $errors++; |
114 | 114 | echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
115 | 115 | } else { |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | |
120 | 120 | // File Browser directories exists? |
121 | 121 | echo '<p>'.$_lang['checking_if_images_exist']; |
122 | -switch(true){ |
|
122 | +switch (true) { |
|
123 | 123 | case !file_exists("../assets/images"): |
124 | 124 | case !file_exists("../assets/files"): |
125 | 125 | case !file_exists("../assets/backup"): |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | |
135 | 135 | // File Browser directories writable? |
136 | 136 | echo '<p>'.$_lang['checking_if_images_writable']; |
137 | -switch(true){ |
|
137 | +switch (true) { |
|
138 | 138 | case !is_writable("../assets/images"): |
139 | 139 | case !is_writable("../assets/files"): |
140 | 140 | case !is_writable("../assets/backup"): |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | $database_charset = substr($database_collation, 0, strpos($database_collation, '_') - 1); |
195 | 195 | $database_connection_charset = $_POST['database_connection_charset']; |
196 | 196 | $database_connection_method = $_POST['database_connection_method']; |
197 | - $dbase = '`' . $_POST['database_name'] . '`'; |
|
197 | + $dbase = '`'.$_POST['database_name'].'`'; |
|
198 | 198 | $table_prefix = $_POST['tableprefix']; |
199 | 199 | } |
200 | 200 | echo '<p>'.$_lang['creating_database_connection']; |
@@ -234,54 +234,54 @@ discard block |
||
234 | 234 | |
235 | 235 | // check table prefix |
236 | 236 | if ($conn && $installMode == 0) { |
237 | - echo '<p>' . $_lang['checking_table_prefix'] . $table_prefix . '`: '; |
|
238 | - if ($rs= mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`" . $table_prefix . "site_content`")) { |
|
239 | - echo '<span class="notok">' . $_lang['failed'] . '</span></b>' . $_lang['table_prefix_already_inuse'] . '</p>'; |
|
237 | + echo '<p>'.$_lang['checking_table_prefix'].$table_prefix.'`: '; |
|
238 | + if ($rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`".$table_prefix."site_content`")) { |
|
239 | + echo '<span class="notok">'.$_lang['failed'].'</span></b>'.$_lang['table_prefix_already_inuse'].'</p>'; |
|
240 | 240 | $errors++; |
241 | - echo "<p>" . $_lang['table_prefix_already_inuse_note'] . '</p>'; |
|
241 | + echo "<p>".$_lang['table_prefix_already_inuse_note'].'</p>'; |
|
242 | 242 | } else { |
243 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
243 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
244 | 244 | } |
245 | 245 | } elseif ($conn && $installMode == 2) { |
246 | - echo '<p>' . $_lang['checking_table_prefix'] . $table_prefix . '`: '; |
|
247 | - if (!$rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`" . $table_prefix . "site_content`")) { |
|
248 | - echo '<span class="notok">' . $_lang['failed'] . '</span></b>' . $_lang['table_prefix_not_exist'] . '</p>'; |
|
246 | + echo '<p>'.$_lang['checking_table_prefix'].$table_prefix.'`: '; |
|
247 | + if (!$rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`".$table_prefix."site_content`")) { |
|
248 | + echo '<span class="notok">'.$_lang['failed'].'</span></b>'.$_lang['table_prefix_not_exist'].'</p>'; |
|
249 | 249 | $errors++; |
250 | - echo '<p>' . $_lang['table_prefix_not_exist_note'] . '</p>'; |
|
250 | + echo '<p>'.$_lang['table_prefix_not_exist_note'].'</p>'; |
|
251 | 251 | } else { |
252 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
252 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
253 | 253 | } |
254 | 254 | } |
255 | 255 | |
256 | 256 | // check mysql version |
257 | 257 | if ($conn) { |
258 | - echo '<p>' . $_lang['checking_mysql_version']; |
|
259 | - if ( version_compare(mysqli_get_server_info($conn), '5.0.51', '=') ) { |
|
260 | - echo '<span class="notok">' . $_lang['warning'] . '</span></b> <strong>' . $_lang['mysql_5051'] . '</strong></p>'; |
|
261 | - echo '<p><span class="notok">' . $_lang['mysql_5051_warning'] . '</span></p>'; |
|
258 | + echo '<p>'.$_lang['checking_mysql_version']; |
|
259 | + if (version_compare(mysqli_get_server_info($conn), '5.0.51', '=')) { |
|
260 | + echo '<span class="notok">'.$_lang['warning'].'</span></b> <strong>'.$_lang['mysql_5051'].'</strong></p>'; |
|
261 | + echo '<p><span class="notok">'.$_lang['mysql_5051_warning'].'</span></p>'; |
|
262 | 262 | } else { |
263 | - echo '<span class="ok">' . $_lang['ok'] . '</span> <strong>' . $_lang['mysql_version_is'] . mysqli_get_server_info($conn) . '</strong></p>'; |
|
263 | + echo '<span class="ok">'.$_lang['ok'].'</span> <strong>'.$_lang['mysql_version_is'].mysqli_get_server_info($conn).'</strong></p>'; |
|
264 | 264 | } |
265 | 265 | } |
266 | 266 | |
267 | 267 | // check for strict mode |
268 | 268 | if ($conn) { |
269 | - echo '<p>'. $_lang['checking_mysql_strict_mode']; |
|
269 | + echo '<p>'.$_lang['checking_mysql_strict_mode']; |
|
270 | 270 | $mysqlmode = mysqli_query($conn, "SELECT @@global.sql_mode"); |
271 | - if (mysqli_num_rows($mysqlmode) > 0){ |
|
271 | + if (mysqli_num_rows($mysqlmode) > 0) { |
|
272 | 272 | $modes = mysqli_fetch_array($mysqlmode, MYSQLI_NUM); |
273 | 273 | //$modes = array("STRICT_TRANS_TABLES"); // for testing |
274 | 274 | // print_r($modes); |
275 | 275 | foreach ($modes as $mode) { |
276 | 276 | if (stristr($mode, "STRICT_TRANS_TABLES") !== false || stristr($mode, "STRICT_ALL_TABLES") !== false) { |
277 | - echo '<span class="notok">' . $_lang['warning'] . '</span></b> <strong> ' . $_lang['strict_mode'] . '</strong></p>'; |
|
278 | - echo '<p><span class="notok">' . $_lang['strict_mode_error'] . '</span></p>'; |
|
277 | + echo '<span class="notok">'.$_lang['warning'].'</span></b> <strong> '.$_lang['strict_mode'].'</strong></p>'; |
|
278 | + echo '<p><span class="notok">'.$_lang['strict_mode_error'].'</span></p>'; |
|
279 | 279 | } else { |
280 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
280 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
281 | 281 | } |
282 | 282 | } |
283 | 283 | } else { |
284 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
284 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
285 | 285 | } |
286 | 286 | } |
287 | 287 | // Version and strict mode check end |
@@ -297,18 +297,18 @@ discard block |
||
297 | 297 | f_owc("../assets/cache/installProc.inc.php", '<?php $installStartTime = '.time().'; ?>'); |
298 | 298 | } |
299 | 299 | |
300 | -if($installMode > 0 && $_POST['installdata'] == "1") { |
|
301 | - echo '<p class="notes"><strong>' . $_lang['sample_web_site'] . ':</strong> ' . $_lang['sample_web_site_note'] . '</p>'; |
|
300 | +if ($installMode > 0 && $_POST['installdata'] == "1") { |
|
301 | + echo '<p class="notes"><strong>'.$_lang['sample_web_site'].':</strong> '.$_lang['sample_web_site_note'].'</p>'; |
|
302 | 302 | } |
303 | 303 | |
304 | 304 | if ($errors > 0) { |
305 | 305 | echo '<p>'; |
306 | - echo $_lang['setup_cannot_continue'] . ' '; |
|
306 | + echo $_lang['setup_cannot_continue'].' '; |
|
307 | 307 | |
308 | - if($errors > 1){ |
|
309 | - echo $errors . " " . $_lang['errors'] . $_lang['please_correct_errors'] . $_lang['and_try_again_plural']; |
|
310 | - }else{ |
|
311 | - echo $_lang['error'] . $_lang['please_correct_error'] . $_lang['and_try_again']; |
|
308 | + if ($errors > 1) { |
|
309 | + echo $errors." ".$_lang['errors'].$_lang['please_correct_errors'].$_lang['and_try_again_plural']; |
|
310 | + } else { |
|
311 | + echo $_lang['error'].$_lang['please_correct_error'].$_lang['and_try_again']; |
|
312 | 312 | } |
313 | 313 | |
314 | 314 | echo $_lang['visit_forum']; |
@@ -317,10 +317,10 @@ discard block |
||
317 | 317 | |
318 | 318 | echo '<p> </p>'; |
319 | 319 | |
320 | -$nextAction= $errors > 0 ? 'summary' : 'install'; |
|
321 | -$nextButton= $errors > 0 ? $_lang['retry'] : $_lang['install']; |
|
322 | -$nextVisibility= $errors > 0 || isset($_POST['chkagree']) ? 'visible' : 'hidden'; |
|
323 | -$agreeToggle= $errors > 0 ? '' : ' onclick="if(document.getElementById(\'chkagree\').checked){document.getElementById(\'nextbutton\').style.visibility=\'visible\';}else{document.getElementById(\'nextbutton\').style.visibility=\'hidden\';}"'; |
|
320 | +$nextAction = $errors > 0 ? 'summary' : 'install'; |
|
321 | +$nextButton = $errors > 0 ? $_lang['retry'] : $_lang['install']; |
|
322 | +$nextVisibility = $errors > 0 || isset($_POST['chkagree']) ? 'visible' : 'hidden'; |
|
323 | +$agreeToggle = $errors > 0 ? '' : ' onclick="if(document.getElementById(\'chkagree\').checked){document.getElementById(\'nextbutton\').style.visibility=\'visible\';}else{document.getElementById(\'nextbutton\').style.visibility=\'hidden\';}"'; |
|
324 | 324 | ?> |
325 | 325 | <form name="install" id="install_form" action="index.php?action=<?php echo $nextAction ?>" method="post"> |
326 | 326 | <div> |
@@ -342,32 +342,32 @@ discard block |
||
342 | 342 | |
343 | 343 | <input type="hidden" value="<?php echo $_POST['installdata'] ?>" name="installdata" /> |
344 | 344 | <?php |
345 | - $templates = isset ($_POST['template']) ? $_POST['template'] : array (); |
|
345 | + $templates = isset ($_POST['template']) ? $_POST['template'] : array(); |
|
346 | 346 | foreach ($templates as $i => $template) echo '<input type="hidden" name="template[]" value="'.$template.'" />'; |
347 | 347 | |
348 | - $tvs = isset ($_POST['tv']) ? $_POST['tv'] : array (); |
|
348 | + $tvs = isset ($_POST['tv']) ? $_POST['tv'] : array(); |
|
349 | 349 | foreach ($tvs as $i => $tv) echo '<input type="hidden" name="tv[]" value="'.$tv.'" />'; |
350 | 350 | |
351 | - $chunks = isset ($_POST['chunk']) ? $_POST['chunk'] : array (); |
|
351 | + $chunks = isset ($_POST['chunk']) ? $_POST['chunk'] : array(); |
|
352 | 352 | foreach ($chunks as $i => $chunk) echo '<input type="hidden" name="chunk[]" value="'.$chunk.'" />'; |
353 | 353 | |
354 | - $snippets = isset ($_POST['snippet']) ? $_POST['snippet'] : array (); |
|
354 | + $snippets = isset ($_POST['snippet']) ? $_POST['snippet'] : array(); |
|
355 | 355 | foreach ($snippets as $i => $snippet) echo '<input type="hidden" name="snippet[]" value="'.$snippet.'" />'; |
356 | 356 | |
357 | - $plugins = isset ($_POST['plugin']) ? $_POST['plugin'] : array (); |
|
357 | + $plugins = isset ($_POST['plugin']) ? $_POST['plugin'] : array(); |
|
358 | 358 | foreach ($plugins as $i => $plugin) echo '<input type="hidden" name="plugin[]" value="'.$plugin.'" />'; |
359 | 359 | |
360 | - $modules = isset ($_POST['module']) ? $_POST['module'] : array (); |
|
360 | + $modules = isset ($_POST['module']) ? $_POST['module'] : array(); |
|
361 | 361 | foreach ($modules as $i => $module) echo '<input type="hidden" name="module[]" value="'.$module.'" />'; |
362 | 362 | ?> |
363 | 363 | </div> |
364 | 364 | |
365 | -<h2><?php echo $_lang['agree_to_terms'];?></h2> |
|
365 | +<h2><?php echo $_lang['agree_to_terms']; ?></h2> |
|
366 | 366 | <p> |
367 | -<input type="checkbox" value="1" id="chkagree" name="chkagree" style="line-height:18px" <?php echo isset($_POST['chkagree']) ? 'checked="checked" ':""; ?><?php echo $agreeToggle;?>/><label for="chkagree" style="display:inline;float:none;line-height:18px;"> <?php echo $_lang['iagree_box']?> </label> |
|
367 | +<input type="checkbox" value="1" id="chkagree" name="chkagree" style="line-height:18px" <?php echo isset($_POST['chkagree']) ? 'checked="checked" ' : ""; ?><?php echo $agreeToggle; ?>/><label for="chkagree" style="display:inline;float:none;line-height:18px;"> <?php echo $_lang['iagree_box']?> </label> |
|
368 | 368 | </p> |
369 | 369 | <p class="buttonlinks"> |
370 | 370 | <a href="javascript:document.getElementById('install_form').action='index.php?action=options&language=<?php echo $install_language?>';document.getElementById('install_form').submit();" class="prev" title="<?php echo $_lang['btnback_value']?>"><span><?php echo $_lang['btnback_value']?></span></a> |
371 | - <a id="nextbutton" href="javascript:document.getElementById('install_form').submit();" title="<?php echo $nextButton ?>" style="visibility:<?php echo $nextVisibility;?>"><span><?php echo $nextButton ?></span></a> |
|
371 | + <a id="nextbutton" href="javascript:document.getElementById('install_form').submit();" title="<?php echo $nextButton ?>" style="visibility:<?php echo $nextVisibility; ?>"><span><?php echo $nextButton ?></span></a> |
|
372 | 372 | </p> |
373 | 373 | </form> |
@@ -1,19 +1,22 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! function_exists('f_owc')){ |
|
2 | +if( ! function_exists('f_owc')) { |
|
3 | 3 | /** |
4 | 4 | * @param $path |
5 | 5 | * @param $data |
6 | 6 | * @param null|int $mode |
7 | 7 | */ |
8 | - function f_owc($path, $data, $mode = null){ |
|
8 | + function f_owc($path, $data, $mode = null) |
|
9 | + { |
|
9 | 10 | try { |
10 | 11 | // make an attempt to create the file |
11 | 12 | $hnd = fopen($path, 'w'); |
12 | 13 | fwrite($hnd, $data); |
13 | 14 | fclose($hnd); |
14 | 15 | |
15 | - if(null !== $mode) chmod($path, $mode); |
|
16 | - }catch(Exception $e){ |
|
16 | + if(null !== $mode) { |
|
17 | + chmod($path, $mode); |
|
18 | + } |
|
19 | + } catch(Exception $e) { |
|
17 | 20 | // Nothing, this is NOT normal |
18 | 21 | unset($e); |
19 | 22 | } |
@@ -21,7 +24,9 @@ discard block |
||
21 | 24 | } |
22 | 25 | |
23 | 26 | $installMode = isset($_POST['installmode']) ? (int)$_POST['installmode'] : 0; |
24 | -if( ! isset($_lang)) $_lang = array(); |
|
27 | +if( ! isset($_lang)) { |
|
28 | + $_lang = array(); |
|
29 | +} |
|
25 | 30 | |
26 | 31 | echo '<div class="stepcontainer"> |
27 | 32 | <ul class="progressbar"> |
@@ -57,7 +62,7 @@ discard block |
||
57 | 62 | // check if iconv is available |
58 | 63 | echo '<p>' . $_lang['checking_iconv']; |
59 | 64 | $iconv = (int) function_exists('iconv'); |
60 | -if ($iconv == '0'){ |
|
65 | +if ($iconv == '0') { |
|
61 | 66 | echo '<span class="notok">' . $_lang['failed'].'</span></p><p><strong>'.$_lang['checking_iconv_note'].'</strong></p>'; |
62 | 67 | $errors++; |
63 | 68 | } else { |
@@ -119,7 +124,7 @@ discard block |
||
119 | 124 | |
120 | 125 | // File Browser directories exists? |
121 | 126 | echo '<p>'.$_lang['checking_if_images_exist']; |
122 | -switch(true){ |
|
127 | +switch(true) { |
|
123 | 128 | case !file_exists("../assets/images"): |
124 | 129 | case !file_exists("../assets/files"): |
125 | 130 | case !file_exists("../assets/backup"): |
@@ -134,7 +139,7 @@ discard block |
||
134 | 139 | |
135 | 140 | // File Browser directories writable? |
136 | 141 | echo '<p>'.$_lang['checking_if_images_writable']; |
137 | -switch(true){ |
|
142 | +switch(true) { |
|
138 | 143 | case !is_writable("../assets/images"): |
139 | 144 | case !is_writable("../assets/files"): |
140 | 145 | case !is_writable("../assets/backup"): |
@@ -268,7 +273,7 @@ discard block |
||
268 | 273 | if ($conn) { |
269 | 274 | echo '<p>'. $_lang['checking_mysql_strict_mode']; |
270 | 275 | $mysqlmode = mysqli_query($conn, "SELECT @@global.sql_mode"); |
271 | - if (mysqli_num_rows($mysqlmode) > 0){ |
|
276 | + if (mysqli_num_rows($mysqlmode) > 0) { |
|
272 | 277 | $modes = mysqli_fetch_array($mysqlmode, MYSQLI_NUM); |
273 | 278 | //$modes = array("STRICT_TRANS_TABLES"); // for testing |
274 | 279 | // print_r($modes); |
@@ -305,9 +310,9 @@ discard block |
||
305 | 310 | echo '<p>'; |
306 | 311 | echo $_lang['setup_cannot_continue'] . ' '; |
307 | 312 | |
308 | - if($errors > 1){ |
|
313 | + if($errors > 1) { |
|
309 | 314 | echo $errors . " " . $_lang['errors'] . $_lang['please_correct_errors'] . $_lang['and_try_again_plural']; |
310 | - }else{ |
|
315 | + } else { |
|
311 | 316 | echo $_lang['error'] . $_lang['please_correct_error'] . $_lang['and_try_again']; |
312 | 317 | } |
313 | 318 | |
@@ -343,23 +348,35 @@ discard block |
||
343 | 348 | <input type="hidden" value="<?php echo $_POST['installdata'] ?>" name="installdata" /> |
344 | 349 | <?php |
345 | 350 | $templates = isset ($_POST['template']) ? $_POST['template'] : array (); |
346 | - foreach ($templates as $i => $template) echo '<input type="hidden" name="template[]" value="'.$template.'" />'; |
|
351 | + foreach ($templates as $i => $template) { |
|
352 | + echo '<input type="hidden" name="template[]" value="'.$template.'" />'; |
|
353 | + } |
|
347 | 354 | |
348 | 355 | $tvs = isset ($_POST['tv']) ? $_POST['tv'] : array (); |
349 | - foreach ($tvs as $i => $tv) echo '<input type="hidden" name="tv[]" value="'.$tv.'" />'; |
|
356 | + foreach ($tvs as $i => $tv) { |
|
357 | + echo '<input type="hidden" name="tv[]" value="'.$tv.'" />'; |
|
358 | + } |
|
350 | 359 | |
351 | 360 | $chunks = isset ($_POST['chunk']) ? $_POST['chunk'] : array (); |
352 | - foreach ($chunks as $i => $chunk) echo '<input type="hidden" name="chunk[]" value="'.$chunk.'" />'; |
|
361 | + foreach ($chunks as $i => $chunk) { |
|
362 | + echo '<input type="hidden" name="chunk[]" value="'.$chunk.'" />'; |
|
363 | + } |
|
353 | 364 | |
354 | 365 | $snippets = isset ($_POST['snippet']) ? $_POST['snippet'] : array (); |
355 | - foreach ($snippets as $i => $snippet) echo '<input type="hidden" name="snippet[]" value="'.$snippet.'" />'; |
|
366 | + foreach ($snippets as $i => $snippet) { |
|
367 | + echo '<input type="hidden" name="snippet[]" value="'.$snippet.'" />'; |
|
368 | + } |
|
356 | 369 | |
357 | 370 | $plugins = isset ($_POST['plugin']) ? $_POST['plugin'] : array (); |
358 | - foreach ($plugins as $i => $plugin) echo '<input type="hidden" name="plugin[]" value="'.$plugin.'" />'; |
|
371 | + foreach ($plugins as $i => $plugin) { |
|
372 | + echo '<input type="hidden" name="plugin[]" value="'.$plugin.'" />'; |
|
373 | + } |
|
359 | 374 | |
360 | 375 | $modules = isset ($_POST['module']) ? $_POST['module'] : array (); |
361 | - foreach ($modules as $i => $module) echo '<input type="hidden" name="module[]" value="'.$module.'" />'; |
|
362 | -?> |
|
376 | + foreach ($modules as $i => $module) { |
|
377 | + echo '<input type="hidden" name="module[]" value="'.$module.'" />'; |
|
378 | + } |
|
379 | + ?> |
|
363 | 380 | </div> |
364 | 381 | |
365 | 382 | <h2><?php echo $_lang['agree_to_terms'];?></h2> |
@@ -207,7 +207,7 @@ |
||
207 | 207 | |
208 | 208 | |
209 | 209 | // make sure we can use the database |
210 | -if ($installMode > 0 && !mysqli_query($conn, "USE {$dbase}")) { |
|
210 | +if ($installMode > 0 && !mysqli_query($conn, "use {$dbase}")) { |
|
211 | 211 | $errors++; |
212 | 212 | echo '<span class="notok">'.$_lang['database_use_failed'].'</span><p />'.$_lang["database_use_failed_note"].'</p>'; |
213 | 213 | } |
@@ -1,8 +1,8 @@ discard block |
||
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 |
|
5 | - include $base_path . MGR_DIR . '/includes/config.inc.php'; |
|
4 | +if (is_file($base_path.MGR_DIR.'/includes/config.inc.php')) { // Include the file so we can test its validity |
|
5 | + include $base_path.MGR_DIR.'/includes/config.inc.php'; |
|
6 | 6 | // We need to have all connection settings - tho prefix may be empty so we have to ignore it |
7 | 7 | if (isset($dbase)) { |
8 | 8 | if (!$conn = @mysqli_connect($database_server, $database_user, $database_password)) |
@@ -17,16 +17,16 @@ discard block |
||
17 | 17 | } |
18 | 18 | |
19 | 19 | $ph['moduleName'] = $moduleName; |
20 | -$ph['displayNew'] = ($upgradeable!=0) ? 'display:none;' : ''; |
|
21 | -$ph['displayUpg'] = ($upgradeable==0) ? 'display:none;' : ''; |
|
20 | +$ph['displayNew'] = ($upgradeable != 0) ? 'display:none;' : ''; |
|
21 | +$ph['displayUpg'] = ($upgradeable == 0) ? 'display:none;' : ''; |
|
22 | 22 | $ph['displayAdvUpg'] = $ph['displayUpg']; |
23 | -$ph['checkedNew'] = !$upgradeable ? 'checked' : ''; |
|
24 | -$ph['checkedUpg'] = ($_POST['installmode']==1 || $upgradeable==1) ? 'checked' : ''; |
|
25 | -$ph['checkedAdvUpg'] = ($_POST['installmode']==2 || $upgradeable==2) ? 'checked' : ''; |
|
23 | +$ph['checkedNew'] = !$upgradeable ? 'checked' : ''; |
|
24 | +$ph['checkedUpg'] = ($_POST['installmode'] == 1 || $upgradeable == 1) ? 'checked' : ''; |
|
25 | +$ph['checkedAdvUpg'] = ($_POST['installmode'] == 2 || $upgradeable == 2) ? 'checked' : ''; |
|
26 | 26 | $ph['install_language'] = $install_language; |
27 | -$ph['disabledUpg'] = ($upgradeable!=1) ? 'disabled' : ''; |
|
28 | -$ph['disabledAdvUpg'] = ($upgradeable==0) ? 'disabled' : ''; |
|
27 | +$ph['disabledUpg'] = ($upgradeable != 1) ? 'disabled' : ''; |
|
28 | +$ph['disabledAdvUpg'] = ($upgradeable == 0) ? 'disabled' : ''; |
|
29 | 29 | |
30 | -$tpl = file_get_contents($base_path . 'install/actions/tpl_mode.html'); |
|
30 | +$tpl = file_get_contents($base_path.'install/actions/tpl_mode.html'); |
|
31 | 31 | $content = parse($tpl, $ph); |
32 | -echo parse($content, $_lang,'[%','%]'); |
|
32 | +echo parse($content, $_lang, '[%', '%]'); |
@@ -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;' : ''; |
@@ -15,7 +15,7 @@ |
||
15 | 15 | case 1: |
16 | 16 | include $base_path . MGR_DIR . '/includes/config.inc.php'; |
17 | 17 | if (@ $conn = mysqli_connect($database_server, $database_user, $database_password)) { |
18 | - if (@ mysqli_query($conn, "USE {$dbase}")) { |
|
18 | + if (@ mysqli_query($conn, "use {$dbase}")) { |
|
19 | 19 | if (!$rs = mysqli_query($conn, "show session variables like 'collation_database'")) { |
20 | 20 | $rs = mysqli_query($conn, "show session variables like 'collation_server'"); |
21 | 21 | } |
@@ -190,53 +190,53 @@ |
||
190 | 190 | } |
191 | 191 | |
192 | 192 | switch($installMode){ |
193 | - case 0: |
|
194 | - case 2: |
|
195 | - $database_collation = isset($_POST['database_collation']) ? $_POST['database_collation'] : 'utf8_general_ci'; |
|
196 | - $database_charset = substr($database_collation, 0, strpos($database_collation, '_')); |
|
197 | - $_POST['database_connection_charset'] = $database_charset; |
|
198 | - if(empty($_SESSION['databaseloginpassword'])) |
|
199 | - $_SESSION['databaseloginpassword'] = $_POST['databaseloginpassword']; |
|
200 | - if(empty($_SESSION['databaseloginname'])) |
|
201 | - $_SESSION['databaseloginname'] = $_POST['databaseloginname']; |
|
202 | - break; |
|
203 | - case 1: |
|
204 | - include $base_path . MGR_DIR . '/includes/config.inc.php'; |
|
205 | - if (@ $conn = mysqli_connect($database_server, $database_user, $database_password)) { |
|
206 | - if (@ mysqli_query($conn, "USE {$dbase}")) { |
|
207 | - if (!$rs = mysqli_query($conn, "show session variables like 'collation_database'")) { |
|
208 | - $rs = mysqli_query($conn, "show session variables like 'collation_server'"); |
|
209 | - } |
|
210 | - if ($rs && $collation = mysqli_fetch_row($rs)) { |
|
211 | - $database_collation = trim($collation[1]); |
|
193 | + case 0: |
|
194 | + case 2: |
|
195 | + $database_collation = isset($_POST['database_collation']) ? $_POST['database_collation'] : 'utf8_general_ci'; |
|
196 | + $database_charset = substr($database_collation, 0, strpos($database_collation, '_')); |
|
197 | + $_POST['database_connection_charset'] = $database_charset; |
|
198 | + if(empty($_SESSION['databaseloginpassword'])) |
|
199 | + $_SESSION['databaseloginpassword'] = $_POST['databaseloginpassword']; |
|
200 | + if(empty($_SESSION['databaseloginname'])) |
|
201 | + $_SESSION['databaseloginname'] = $_POST['databaseloginname']; |
|
202 | + break; |
|
203 | + case 1: |
|
204 | + include $base_path . MGR_DIR . '/includes/config.inc.php'; |
|
205 | + if (@ $conn = mysqli_connect($database_server, $database_user, $database_password)) { |
|
206 | + if (@ mysqli_query($conn, "USE {$dbase}")) { |
|
207 | + if (!$rs = mysqli_query($conn, "show session variables like 'collation_database'")) { |
|
208 | + $rs = mysqli_query($conn, "show session variables like 'collation_server'"); |
|
209 | + } |
|
210 | + if ($rs && $collation = mysqli_fetch_row($rs)) { |
|
211 | + $database_collation = trim($collation[1]); |
|
212 | + } |
|
212 | 213 | } |
213 | 214 | } |
214 | - } |
|
215 | - if (empty ($database_collation)) $database_collation = 'utf8_general_ci'; |
|
215 | + if (empty ($database_collation)) $database_collation = 'utf8_general_ci'; |
|
216 | 216 | |
217 | - $database_charset = substr($database_collation, 0, strpos($database_collation, '_')); |
|
218 | - if (!isset ($database_connection_charset) || empty ($database_connection_charset)) { |
|
219 | - $database_connection_charset = $database_charset; |
|
220 | - } |
|
217 | + $database_charset = substr($database_collation, 0, strpos($database_collation, '_')); |
|
218 | + if (!isset ($database_connection_charset) || empty ($database_connection_charset)) { |
|
219 | + $database_connection_charset = $database_charset; |
|
220 | + } |
|
221 | 221 | |
222 | - if (!isset ($database_connection_method) || empty ($database_connection_method)) { |
|
223 | - $database_connection_method = 'SET CHARACTER SET'; |
|
224 | - if (function_exists('mysqli_set_charset')) mysqli_set_charset($conn, $database_connection_charset); |
|
225 | - } |
|
226 | - if ($database_connection_method != 'SET NAMES' && $database_connection_charset != $database_charset) { |
|
227 | - $database_connection_method = 'SET NAMES'; |
|
228 | - } |
|
222 | + if (!isset ($database_connection_method) || empty ($database_connection_method)) { |
|
223 | + $database_connection_method = 'SET CHARACTER SET'; |
|
224 | + if (function_exists('mysqli_set_charset')) mysqli_set_charset($conn, $database_connection_charset); |
|
225 | + } |
|
226 | + if ($database_connection_method != 'SET NAMES' && $database_connection_charset != $database_charset) { |
|
227 | + $database_connection_method = 'SET NAMES'; |
|
228 | + } |
|
229 | 229 | |
230 | - $_POST['database_name'] = $dbase; |
|
231 | - $_POST['tableprefix'] = $table_prefix; |
|
232 | - $_POST['database_connection_charset'] = $database_connection_charset; |
|
233 | - $_POST['database_connection_method'] = $database_connection_method; |
|
234 | - $_POST['databasehost'] = $database_server; |
|
235 | - $_SESSION['databaseloginname'] = $database_user; |
|
236 | - $_SESSION['databaseloginpassword'] = $database_password; |
|
237 | - break; |
|
238 | - default: |
|
239 | - throw new Exception('installmode is undefined'); |
|
230 | + $_POST['database_name'] = $dbase; |
|
231 | + $_POST['tableprefix'] = $table_prefix; |
|
232 | + $_POST['database_connection_charset'] = $database_connection_charset; |
|
233 | + $_POST['database_connection_method'] = $database_connection_method; |
|
234 | + $_POST['databasehost'] = $database_server; |
|
235 | + $_SESSION['databaseloginname'] = $database_user; |
|
236 | + $_SESSION['databaseloginpassword'] = $database_password; |
|
237 | + break; |
|
238 | + default: |
|
239 | + throw new Exception('installmode is undefined'); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | $ph['install_language'] = $install_language; |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -$installMode = isset($_POST['installmode']) ? (int)$_POST['installmode'] : 0; |
|
2 | +$installMode = isset($_POST['installmode']) ? (int) $_POST['installmode'] : 0; |
|
3 | 3 | |
4 | -if( ! function_exists('getTemplates')) { |
|
4 | +if (!function_exists('getTemplates')) { |
|
5 | 5 | /** |
6 | 6 | * @param array $presets |
7 | 7 | * @return string |
@@ -26,12 +26,12 @@ discard block |
||
26 | 26 | $i++; |
27 | 27 | } |
28 | 28 | if (0 < count($_)) { |
29 | - return '<h3>[%templates%]</h3>' . join("\n", $_); |
|
29 | + return '<h3>[%templates%]</h3>'.join("\n", $_); |
|
30 | 30 | } |
31 | 31 | } |
32 | 32 | } |
33 | 33 | |
34 | -if( ! function_exists('getTVs')) { |
|
34 | +if (!function_exists('getTVs')) { |
|
35 | 35 | /** |
36 | 36 | * @param array $presets |
37 | 37 | * @return string |
@@ -56,12 +56,12 @@ discard block |
||
56 | 56 | $i++; |
57 | 57 | } |
58 | 58 | if (0 < count($_)) { |
59 | - return '<h3>[%tvs%]</h3>' . join("\n", $_); |
|
59 | + return '<h3>[%tvs%]</h3>'.join("\n", $_); |
|
60 | 60 | } |
61 | 61 | } |
62 | 62 | } |
63 | 63 | |
64 | -if( ! function_exists('getChunks')) { |
|
64 | +if (!function_exists('getChunks')) { |
|
65 | 65 | /** |
66 | 66 | * display chunks |
67 | 67 | * |
@@ -87,12 +87,12 @@ discard block |
||
87 | 87 | $i++; |
88 | 88 | } |
89 | 89 | if (0 < count($_)) { |
90 | - return '<h3>[%chunks%]</h3>' . join("\n", $_); |
|
90 | + return '<h3>[%chunks%]</h3>'.join("\n", $_); |
|
91 | 91 | } |
92 | 92 | } |
93 | 93 | } |
94 | 94 | |
95 | -if( ! function_exists('getModules')) { |
|
95 | +if (!function_exists('getModules')) { |
|
96 | 96 | /** |
97 | 97 | * display modules |
98 | 98 | * |
@@ -118,12 +118,12 @@ discard block |
||
118 | 118 | $i++; |
119 | 119 | } |
120 | 120 | if (0 < count($_)) { |
121 | - return '<h3>[%modules%]</h3>' . join("\n", $_); |
|
121 | + return '<h3>[%modules%]</h3>'.join("\n", $_); |
|
122 | 122 | } |
123 | 123 | } |
124 | 124 | } |
125 | 125 | |
126 | -if( ! function_exists('getPlugins')) { |
|
126 | +if (!function_exists('getPlugins')) { |
|
127 | 127 | /** |
128 | 128 | * display plugins |
129 | 129 | * |
@@ -153,12 +153,12 @@ discard block |
||
153 | 153 | $i++; |
154 | 154 | } |
155 | 155 | if (0 < count($_)) { |
156 | - return '<h3>[%plugins%]</h3>' . join("\n", $_); |
|
156 | + return '<h3>[%plugins%]</h3>'.join("\n", $_); |
|
157 | 157 | } |
158 | 158 | } |
159 | 159 | } |
160 | 160 | |
161 | -if( ! function_exists('getSnippets')) { |
|
161 | +if (!function_exists('getSnippets')) { |
|
162 | 162 | /** |
163 | 163 | * display snippets |
164 | 164 | * |
@@ -184,24 +184,24 @@ discard block |
||
184 | 184 | $i++; |
185 | 185 | } |
186 | 186 | if (0 < count($_)) { |
187 | - return '<h3>[%snippets%]</h3>' . join("\n", $_); |
|
187 | + return '<h3>[%snippets%]</h3>'.join("\n", $_); |
|
188 | 188 | } |
189 | 189 | } |
190 | 190 | } |
191 | 191 | |
192 | -switch($installMode){ |
|
192 | +switch ($installMode) { |
|
193 | 193 | case 0: |
194 | 194 | case 2: |
195 | 195 | $database_collation = isset($_POST['database_collation']) ? $_POST['database_collation'] : 'utf8_general_ci'; |
196 | 196 | $database_charset = substr($database_collation, 0, strpos($database_collation, '_')); |
197 | 197 | $_POST['database_connection_charset'] = $database_charset; |
198 | - if(empty($_SESSION['databaseloginpassword'])) |
|
198 | + if (empty($_SESSION['databaseloginpassword'])) |
|
199 | 199 | $_SESSION['databaseloginpassword'] = $_POST['databaseloginpassword']; |
200 | - if(empty($_SESSION['databaseloginname'])) |
|
200 | + if (empty($_SESSION['databaseloginname'])) |
|
201 | 201 | $_SESSION['databaseloginname'] = $_POST['databaseloginname']; |
202 | 202 | break; |
203 | 203 | case 1: |
204 | - include $base_path . MGR_DIR . '/includes/config.inc.php'; |
|
204 | + include $base_path.MGR_DIR.'/includes/config.inc.php'; |
|
205 | 205 | if (@ $conn = mysqli_connect($database_server, $database_user, $database_password)) { |
206 | 206 | if (@ mysqli_query($conn, "USE {$dbase}")) { |
207 | 207 | if (!$rs = mysqli_query($conn, "show session variables like 'collation_database'")) { |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | $ph['checked'] = isset ($_POST['installdata']) && $_POST['installdata'] == "1" ? 'checked' : ''; |
257 | 257 | |
258 | 258 | # load setup information file |
259 | -include($base_path . 'install/setup.info.php'); |
|
259 | +include($base_path.'install/setup.info.php'); |
|
260 | 260 | $ph['templates'] = getTemplates($moduleTemplates); |
261 | 261 | $ph['tvs'] = getTVs($moduleTVs); |
262 | 262 | $ph['chunks'] = getChunks($moduleChunks); |
@@ -266,6 +266,6 @@ discard block |
||
266 | 266 | |
267 | 267 | $ph['action'] = ($installMode == 1) ? 'mode' : 'connection'; |
268 | 268 | |
269 | -$tpl = file_get_contents($base_path . 'install/actions/tpl_options.html'); |
|
270 | -$content = parse($tpl,$ph); |
|
271 | -echo parse($content,$_lang,'[%','%]'); |
|
269 | +$tpl = file_get_contents($base_path.'install/actions/tpl_options.html'); |
|
270 | +$content = parse($tpl, $ph); |
|
271 | +echo parse($content, $_lang, '[%', '%]'); |
@@ -189,16 +189,18 @@ discard block |
||
189 | 189 | } |
190 | 190 | } |
191 | 191 | |
192 | -switch($installMode){ |
|
192 | +switch($installMode) { |
|
193 | 193 | case 0: |
194 | 194 | case 2: |
195 | 195 | $database_collation = isset($_POST['database_collation']) ? $_POST['database_collation'] : 'utf8_general_ci'; |
196 | 196 | $database_charset = substr($database_collation, 0, strpos($database_collation, '_')); |
197 | 197 | $_POST['database_connection_charset'] = $database_charset; |
198 | - if(empty($_SESSION['databaseloginpassword'])) |
|
199 | - $_SESSION['databaseloginpassword'] = $_POST['databaseloginpassword']; |
|
200 | - if(empty($_SESSION['databaseloginname'])) |
|
201 | - $_SESSION['databaseloginname'] = $_POST['databaseloginname']; |
|
198 | + if(empty($_SESSION['databaseloginpassword'])) { |
|
199 | + $_SESSION['databaseloginpassword'] = $_POST['databaseloginpassword']; |
|
200 | + } |
|
201 | + if(empty($_SESSION['databaseloginname'])) { |
|
202 | + $_SESSION['databaseloginname'] = $_POST['databaseloginname']; |
|
203 | + } |
|
202 | 204 | break; |
203 | 205 | case 1: |
204 | 206 | include $base_path . MGR_DIR . '/includes/config.inc.php'; |
@@ -212,7 +214,9 @@ discard block |
||
212 | 214 | } |
213 | 215 | } |
214 | 216 | } |
215 | - if (empty ($database_collation)) $database_collation = 'utf8_general_ci'; |
|
217 | + if (empty ($database_collation)) { |
|
218 | + $database_collation = 'utf8_general_ci'; |
|
219 | + } |
|
216 | 220 | |
217 | 221 | $database_charset = substr($database_collation, 0, strpos($database_collation, '_')); |
218 | 222 | if (!isset ($database_connection_charset) || empty ($database_connection_charset)) { |
@@ -221,7 +225,9 @@ discard block |
||
221 | 225 | |
222 | 226 | if (!isset ($database_connection_method) || empty ($database_connection_method)) { |
223 | 227 | $database_connection_method = 'SET CHARACTER SET'; |
224 | - if (function_exists('mysqli_set_charset')) mysqli_set_charset($conn, $database_connection_charset); |
|
228 | + if (function_exists('mysqli_set_charset')) { |
|
229 | + mysqli_set_charset($conn, $database_connection_charset); |
|
230 | + } |
|
225 | 231 | } |
226 | 232 | if ($database_connection_method != 'SET NAMES' && $database_connection_charset != $database_charset) { |
227 | 233 | $database_connection_method = 'SET NAMES'; |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | /** |
84 | 84 | * Sets the class attribute of the main HTML TABLE. |
85 | 85 | * |
86 | - * @param $value A class for the main HTML TABLE. |
|
86 | + * @param string $value A class for the main HTML TABLE. |
|
87 | 87 | */ |
88 | 88 | function setTableClass($value) { |
89 | 89 | $this->tableClass= $value; |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | /** |
129 | 129 | * Sets the class attribute of regular table rows. |
130 | 130 | * |
131 | - * @param $value A class for regular table rows. |
|
131 | + * @param string $value A class for regular table rows. |
|
132 | 132 | */ |
133 | 133 | function setRowRegularClass($value) { |
134 | 134 | $this->rowRegularClass= $value; |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | /** |
138 | 138 | * Sets the class attribute of alternate table rows. |
139 | 139 | * |
140 | - * @param $value A class for alternate table rows. |
|
140 | + * @param string $value A class for alternate table rows. |
|
141 | 141 | */ |
142 | 142 | function setRowAlternateClass($value) { |
143 | 143 | $this->rowAlternateClass= $value; |
@@ -213,6 +213,7 @@ discard block |
||
213 | 213 | * |
214 | 214 | * @param $value An Array of column widths in the order of the keys in the |
215 | 215 | * source table array. |
216 | + * @param string[] $widthArray |
|
216 | 217 | */ |
217 | 218 | function setColumnWidths($widthArray) { |
218 | 219 | $this->columnWidths= $widthArray; |
@@ -240,7 +241,7 @@ discard block |
||
240 | 241 | /** |
241 | 242 | * Retrieves the width of a specific table column by index position. |
242 | 243 | * |
243 | - * @param $columnPosition The index of the column to get the width for. |
|
244 | + * @param integer $columnPosition The index of the column to get the width for. |
|
244 | 245 | */ |
245 | 246 | function getColumnWidth($columnPosition) { |
246 | 247 | $currentWidth= ''; |
@@ -254,6 +255,7 @@ discard block |
||
254 | 255 | * Determines what class the current row should have applied. |
255 | 256 | * |
256 | 257 | * @param $value The position of the current row being rendered. |
258 | + * @param integer $position |
|
257 | 259 | */ |
258 | 260 | function determineRowClass($position) { |
259 | 261 | switch ($this->rowAlternatingScheme) { |
@@ -9,366 +9,366 @@ discard block |
||
9 | 9 | * @author Jason Coward <[email protected]> (MODX) |
10 | 10 | */ |
11 | 11 | class MakeTable { |
12 | - var $actionField; |
|
13 | - var $cellAction; |
|
14 | - var $linkAction; |
|
15 | - var $tableWidth; |
|
16 | - var $tableClass; |
|
17 | - var $tableID; |
|
18 | - var $thClass; |
|
19 | - var $rowHeaderClass; |
|
20 | - var $columnHeaderClass; |
|
21 | - var $rowRegularClass; |
|
22 | - var $rowAlternateClass; |
|
23 | - var $formName; |
|
24 | - var $formAction; |
|
25 | - var $formElementType; |
|
26 | - var $formElementName; |
|
27 | - var $rowAlternatingScheme; |
|
28 | - var $excludeFields; |
|
29 | - var $allOption; |
|
30 | - var $pageNav; |
|
31 | - var $columnWidths; |
|
32 | - var $selectedValues; |
|
33 | - |
|
34 | - function __construct() { |
|
35 | - $this->fieldHeaders= array(); |
|
36 | - $this->excludeFields= array(); |
|
37 | - $this->actionField= ''; |
|
38 | - $this->cellAction= ''; |
|
39 | - $this->linkAction= ''; |
|
40 | - $this->tableWidth= ''; |
|
41 | - $this->tableClass= ''; |
|
42 | - $this->rowHeaderClass= ''; |
|
43 | - $this->columnHeaderClass= ''; |
|
44 | - $this->rowRegularClass= ''; |
|
45 | - $this->rowAlternateClass= 'alt'; |
|
46 | - $this->formName= 'tableForm'; |
|
47 | - $this->formAction= '[~[*id*]~]'; |
|
48 | - $this->formElementName= ''; |
|
49 | - $this->formElementType= ''; |
|
50 | - $this->rowAlternatingScheme= 'EVEN'; |
|
51 | - $this->allOption= 0; |
|
52 | - $this->selectedValues= array(); |
|
53 | - $this->extra= ''; |
|
54 | - } |
|
55 | - |
|
56 | - /** |
|
57 | - * Sets the default link href for all cells in the table. |
|
58 | - * |
|
59 | - * @param $value A URL to execute when table cells are clicked. |
|
60 | - */ |
|
61 | - function setCellAction($value) { |
|
62 | - $this->cellAction= $this->prepareLink($value); |
|
63 | - } |
|
64 | - |
|
65 | - /** |
|
66 | - * Sets the default link href for the text presented in a cell. |
|
67 | - * |
|
68 | - * @param $value A URL to execute when text within table cells are clicked. |
|
69 | - */ |
|
70 | - function setLinkAction($value) { |
|
71 | - $this->linkAction= $this->prepareLink($value); |
|
72 | - } |
|
73 | - |
|
74 | - /** |
|
75 | - * Sets the width attribute of the main HTML TABLE. |
|
76 | - * |
|
77 | - * @param $value A valid width attribute for the HTML TABLE tag |
|
78 | - */ |
|
79 | - function setTableWidth($value) { |
|
80 | - $this->tableWidth= $value; |
|
81 | - } |
|
82 | - |
|
83 | - /** |
|
84 | - * Sets the class attribute of the main HTML TABLE. |
|
85 | - * |
|
86 | - * @param $value A class for the main HTML TABLE. |
|
87 | - */ |
|
88 | - function setTableClass($value) { |
|
89 | - $this->tableClass= $value; |
|
90 | - } |
|
91 | - |
|
92 | - /** |
|
93 | - * Sets the id attribute of the main HTML TABLE. |
|
94 | - * |
|
95 | - * @param $value A class for the main HTML TABLE. |
|
96 | - */ |
|
97 | - function setTableID($value) { |
|
98 | - $this->tableID= $value; |
|
99 | - } |
|
100 | - |
|
101 | - /** |
|
102 | - * Sets the class attribute of the table header row. |
|
103 | - * |
|
104 | - * @param $value A class for the table header row. |
|
105 | - */ |
|
106 | - function setRowHeaderClass($value) { |
|
107 | - $this->rowHeaderClass= $value; |
|
108 | - } |
|
109 | - |
|
110 | - /** |
|
111 | - * Sets the class attribute of the table header row. |
|
112 | - * |
|
113 | - * @param $value A class for the table header row. |
|
114 | - */ |
|
115 | - function setThHeaderClass($value) { |
|
116 | - $this->thClass= $value; |
|
117 | - } |
|
118 | - |
|
119 | - /** |
|
120 | - * Sets the class attribute of the column header row. |
|
121 | - * |
|
122 | - * @param $value A class for the column header row. |
|
123 | - */ |
|
124 | - function setColumnHeaderClass($value) { |
|
125 | - $this->columnHeaderClass= $value; |
|
126 | - } |
|
127 | - |
|
128 | - /** |
|
129 | - * Sets the class attribute of regular table rows. |
|
130 | - * |
|
131 | - * @param $value A class for regular table rows. |
|
132 | - */ |
|
133 | - function setRowRegularClass($value) { |
|
134 | - $this->rowRegularClass= $value; |
|
135 | - } |
|
136 | - |
|
137 | - /** |
|
138 | - * Sets the class attribute of alternate table rows. |
|
139 | - * |
|
140 | - * @param $value A class for alternate table rows. |
|
141 | - */ |
|
142 | - function setRowAlternateClass($value) { |
|
143 | - $this->rowAlternateClass= $value; |
|
144 | - } |
|
145 | - |
|
146 | - /** |
|
147 | - * Sets the type of INPUT form element to be presented as the first column. |
|
148 | - * |
|
149 | - * @param $value Indicates the INPUT form element type attribute. |
|
150 | - */ |
|
151 | - function setFormElementType($value) { |
|
152 | - $this->formElementType= $value; |
|
153 | - } |
|
154 | - |
|
155 | - /** |
|
156 | - * Sets the name of the INPUT form element to be presented as the first column. |
|
157 | - * |
|
158 | - * @param $value Indicates the INPUT form element name attribute. |
|
159 | - */ |
|
160 | - function setFormElementName($value) { |
|
161 | - $this->formElementName= $value; |
|
162 | - } |
|
163 | - |
|
164 | - /** |
|
165 | - * Sets the name of the FORM to wrap the table in when a form element has |
|
166 | - * been indicated. |
|
167 | - * |
|
168 | - * @param $value Indicates the FORM name attribute. |
|
169 | - */ |
|
170 | - function setFormName($value) { |
|
171 | - $this->formName= $value; |
|
172 | - } |
|
173 | - |
|
174 | - /** |
|
175 | - * Sets the action of the FORM element. |
|
176 | - * |
|
177 | - * @param $value Indicates the FORM action attribute. |
|
178 | - */ |
|
179 | - function setFormAction($value) { |
|
180 | - $this->formAction= $value; |
|
181 | - } |
|
182 | - |
|
183 | - /** |
|
184 | - * Excludes fields from the table by array key. |
|
185 | - * |
|
186 | - * @param $value An Array of field keys to exclude from the table. |
|
187 | - */ |
|
188 | - function setExcludeFields($value) { |
|
189 | - $this->excludeFields= $value; |
|
190 | - } |
|
191 | - |
|
192 | - /** |
|
193 | - * Sets the table to provide alternate row colors using ODD or EVEN rows |
|
194 | - * |
|
195 | - * @param $value 'ODD' or 'EVEN' to indicate the alternate row scheme. |
|
196 | - */ |
|
197 | - function setRowAlternatingScheme($value) { |
|
198 | - $this->rowAlternatingScheme= $value; |
|
199 | - } |
|
200 | - |
|
201 | - /** |
|
202 | - * Sets the default field value to be used when appending query parameters |
|
203 | - * to link actions. |
|
204 | - * |
|
205 | - * @param $value The key of the field to add as a query string parameter. |
|
206 | - */ |
|
207 | - function setActionFieldName($value) { |
|
208 | - $this->actionField= $value; |
|
209 | - } |
|
210 | - |
|
211 | - /** |
|
212 | - * Sets the width attribute of each column in the array. |
|
213 | - * |
|
214 | - * @param $value An Array of column widths in the order of the keys in the |
|
215 | - * source table array. |
|
216 | - */ |
|
217 | - function setColumnWidths($widthArray) { |
|
218 | - $this->columnWidths= $widthArray; |
|
219 | - } |
|
220 | - |
|
221 | - /** |
|
222 | - * An optional array of values that can be preselected when using |
|
223 | - * |
|
224 | - * @param $value Indicates the INPUT form element type attribute. |
|
225 | - */ |
|
226 | - function setSelectedValues($valueArray) { |
|
227 | - $this->selectedValues= $valueArray; |
|
228 | - } |
|
229 | - |
|
230 | - /** |
|
231 | - * Sets extra content to be presented following the table (but within |
|
232 | - * the form, if a form is being rendered with the table). |
|
233 | - * |
|
234 | - * @param $value A string of additional content. |
|
235 | - */ |
|
236 | - function setExtra($value) { |
|
237 | - $this->extra= $value; |
|
238 | - } |
|
239 | - |
|
240 | - /** |
|
241 | - * Retrieves the width of a specific table column by index position. |
|
242 | - * |
|
243 | - * @param $columnPosition The index of the column to get the width for. |
|
244 | - */ |
|
245 | - function getColumnWidth($columnPosition) { |
|
246 | - $currentWidth= ''; |
|
247 | - if (is_array($this->columnWidths)) { |
|
248 | - $currentWidth= $this->columnWidths[$columnPosition] ? ' width="'.$this->columnWidths[$columnPosition].'" ' : ''; |
|
249 | - } |
|
250 | - return $currentWidth; |
|
251 | - } |
|
252 | - |
|
253 | - /** |
|
254 | - * Determines what class the current row should have applied. |
|
255 | - * |
|
256 | - * @param $value The position of the current row being rendered. |
|
257 | - */ |
|
258 | - function determineRowClass($position) { |
|
259 | - switch ($this->rowAlternatingScheme) { |
|
260 | - case 'ODD' : |
|
261 | - $modRemainder= 1; |
|
262 | - break; |
|
263 | - case 'EVEN' : |
|
264 | - $modRemainder= 0; |
|
265 | - break; |
|
266 | - } |
|
267 | - if ($position % 2 == $modRemainder) { |
|
268 | - $currentClass= $this->rowRegularClass; |
|
269 | - } else { |
|
270 | - $currentClass= $this->rowAlternateClass; |
|
271 | - } |
|
272 | - return ' class="'.$currentClass.'"'; |
|
273 | - } |
|
274 | - |
|
275 | - /** |
|
276 | - * Generates an onclick action applied to the current cell, to execute |
|
277 | - * any specified cell actions. |
|
278 | - * |
|
279 | - * @param $value Indicates the INPUT form element type attribute. |
|
280 | - */ |
|
281 | - function getCellAction($currentActionFieldValue) { |
|
282 | - if ($this->cellAction) { |
|
283 | - $cellAction= ' onClick="javascript:window.location=\''.$this->cellAction.$this->actionField.'='.urlencode($currentActionFieldValue).'\'" '; |
|
284 | - } |
|
285 | - return $cellAction; |
|
286 | - } |
|
287 | - |
|
288 | - /** |
|
289 | - * Generates the cell content, including any specified action fields values. |
|
290 | - * |
|
291 | - * @param $currentActionFieldValue The value to be applied to the link action. |
|
292 | - * @param $value The value of the cell. |
|
293 | - */ |
|
294 | - function createCellText($currentActionFieldValue, $value) { |
|
295 | - $cell .= $value; |
|
296 | - if ($this->linkAction) { |
|
297 | - $cell= '<a href="'.$this->linkAction.$this->actionField.'='.urlencode($currentActionFieldValue).'">'.$cell.'</a>'; |
|
298 | - } |
|
299 | - return $cell; |
|
300 | - } |
|
301 | - |
|
302 | - /** |
|
303 | - * Sets an option to generate a check all link when checkbox is indicated |
|
304 | - * as the table formElementType. |
|
305 | - */ |
|
306 | - function setAllOption() { |
|
307 | - $this->allOption= 1; |
|
308 | - } |
|
309 | - |
|
310 | - /** |
|
311 | - * Function to prepare a link generated in the table cell/link actions. |
|
312 | - * |
|
313 | - * @param $value Indicates the INPUT form element type attribute. |
|
314 | - */ |
|
315 | - function prepareLink($link) { |
|
316 | - if (strstr($link, '?')) { |
|
317 | - $end= '&'; |
|
318 | - } else { |
|
319 | - $end= '?'; |
|
320 | - } |
|
321 | - return $link.$end; |
|
322 | - } |
|
323 | - |
|
324 | - /** |
|
325 | - * Generates the table content. |
|
326 | - * |
|
327 | - * @param $fieldsArray The associative array representing the table rows |
|
328 | - * and columns. |
|
329 | - * @param $fieldHeadersArray An optional array of values for providing |
|
330 | - * alternative field headers; this is an associative arrays of keys from |
|
331 | - * the $fieldsArray where the values represent the alt heading content |
|
332 | - * for each column. |
|
333 | - */ |
|
334 | - function create($fieldsArray, $fieldHeadersArray=array(),$linkpage="") { |
|
335 | - global $_lang; |
|
336 | - if (is_array($fieldsArray)) { |
|
337 | - $i= 0; |
|
338 | - foreach ($fieldsArray as $fieldName => $fieldValue) { |
|
339 | - $table .= "\t<tr".$this->determineRowClass($i).">\n"; |
|
340 | - $currentActionFieldValue= $fieldValue[$this->actionField]; |
|
341 | - if (is_array($this->selectedValues)) { |
|
342 | - $isChecked= array_search($currentActionFieldValue, $this->selectedValues)===false? 0 : 1; |
|
343 | - } else { |
|
344 | - $isChecked= false; |
|
345 | - } |
|
346 | - $table .= $this->addFormField($currentActionFieldValue, $isChecked); |
|
347 | - $colPosition= 0; |
|
348 | - foreach ($fieldValue as $key => $value) { |
|
349 | - if (!in_array($key, $this->excludeFields)) { |
|
350 | - $table .= "\t\t<td".$this->getCellAction($currentActionFieldValue).">"; |
|
351 | - $table .= $this->createCellText($currentActionFieldValue, $value); |
|
352 | - $table .= "</td>\n"; |
|
353 | - if ($i == 0) { |
|
354 | - if (empty ($header) && $this->formElementType) { |
|
355 | - $header .= "\t\t<th style=\"width:32px\" ".($this->thClass ? 'class="'.$this->thClass.'"' : '').">". ($this->allOption ? '<a href="javascript:clickAll()">all</a>' : '')."</th>\n"; |
|
356 | - } |
|
357 | - $headerText= array_key_exists($key, $fieldHeadersArray)? $fieldHeadersArray[$key]: $key; |
|
358 | - $header .= "\t\t<th".$this->getColumnWidth($colPosition).($this->thClass ? ' class="'.$this->thClass.'" ' : '').">".$headerText."</th>\n"; |
|
359 | - } |
|
360 | - $colPosition ++; |
|
361 | - } |
|
362 | - } |
|
363 | - $i ++; |
|
364 | - $table .= "\t</tr>\n"; |
|
365 | - } |
|
366 | - $table= "\n".'<table'. ($this->tableWidth ? ' width="'.$this->tableWidth.'"' : ''). ($this->tableClass ? ' class="'.$this->tableClass.'"' : ''). ($this->tableID ? ' id="'.$this->tableID.'"' : '').">\n". ($header ? "\t<thead>\n\t<tr class=\"".$this->rowHeaderClass."\">\n".$header."\t</tr>\n\t</thead>\n" : '').$table."</table>\n"; |
|
367 | - if ($this->formElementType) { |
|
368 | - $table= "\n".'<form id="'.$this->formName.'" name="'.$this->formName.'" action="'.$this->formAction.'" method="POST">'.$table; |
|
369 | - } |
|
370 | - if (strlen($this->pageNav) > 1) {//changed to display the pagination if exists. |
|
371 | - /* commented this part because of cookie |
|
12 | + var $actionField; |
|
13 | + var $cellAction; |
|
14 | + var $linkAction; |
|
15 | + var $tableWidth; |
|
16 | + var $tableClass; |
|
17 | + var $tableID; |
|
18 | + var $thClass; |
|
19 | + var $rowHeaderClass; |
|
20 | + var $columnHeaderClass; |
|
21 | + var $rowRegularClass; |
|
22 | + var $rowAlternateClass; |
|
23 | + var $formName; |
|
24 | + var $formAction; |
|
25 | + var $formElementType; |
|
26 | + var $formElementName; |
|
27 | + var $rowAlternatingScheme; |
|
28 | + var $excludeFields; |
|
29 | + var $allOption; |
|
30 | + var $pageNav; |
|
31 | + var $columnWidths; |
|
32 | + var $selectedValues; |
|
33 | + |
|
34 | + function __construct() { |
|
35 | + $this->fieldHeaders= array(); |
|
36 | + $this->excludeFields= array(); |
|
37 | + $this->actionField= ''; |
|
38 | + $this->cellAction= ''; |
|
39 | + $this->linkAction= ''; |
|
40 | + $this->tableWidth= ''; |
|
41 | + $this->tableClass= ''; |
|
42 | + $this->rowHeaderClass= ''; |
|
43 | + $this->columnHeaderClass= ''; |
|
44 | + $this->rowRegularClass= ''; |
|
45 | + $this->rowAlternateClass= 'alt'; |
|
46 | + $this->formName= 'tableForm'; |
|
47 | + $this->formAction= '[~[*id*]~]'; |
|
48 | + $this->formElementName= ''; |
|
49 | + $this->formElementType= ''; |
|
50 | + $this->rowAlternatingScheme= 'EVEN'; |
|
51 | + $this->allOption= 0; |
|
52 | + $this->selectedValues= array(); |
|
53 | + $this->extra= ''; |
|
54 | + } |
|
55 | + |
|
56 | + /** |
|
57 | + * Sets the default link href for all cells in the table. |
|
58 | + * |
|
59 | + * @param $value A URL to execute when table cells are clicked. |
|
60 | + */ |
|
61 | + function setCellAction($value) { |
|
62 | + $this->cellAction= $this->prepareLink($value); |
|
63 | + } |
|
64 | + |
|
65 | + /** |
|
66 | + * Sets the default link href for the text presented in a cell. |
|
67 | + * |
|
68 | + * @param $value A URL to execute when text within table cells are clicked. |
|
69 | + */ |
|
70 | + function setLinkAction($value) { |
|
71 | + $this->linkAction= $this->prepareLink($value); |
|
72 | + } |
|
73 | + |
|
74 | + /** |
|
75 | + * Sets the width attribute of the main HTML TABLE. |
|
76 | + * |
|
77 | + * @param $value A valid width attribute for the HTML TABLE tag |
|
78 | + */ |
|
79 | + function setTableWidth($value) { |
|
80 | + $this->tableWidth= $value; |
|
81 | + } |
|
82 | + |
|
83 | + /** |
|
84 | + * Sets the class attribute of the main HTML TABLE. |
|
85 | + * |
|
86 | + * @param $value A class for the main HTML TABLE. |
|
87 | + */ |
|
88 | + function setTableClass($value) { |
|
89 | + $this->tableClass= $value; |
|
90 | + } |
|
91 | + |
|
92 | + /** |
|
93 | + * Sets the id attribute of the main HTML TABLE. |
|
94 | + * |
|
95 | + * @param $value A class for the main HTML TABLE. |
|
96 | + */ |
|
97 | + function setTableID($value) { |
|
98 | + $this->tableID= $value; |
|
99 | + } |
|
100 | + |
|
101 | + /** |
|
102 | + * Sets the class attribute of the table header row. |
|
103 | + * |
|
104 | + * @param $value A class for the table header row. |
|
105 | + */ |
|
106 | + function setRowHeaderClass($value) { |
|
107 | + $this->rowHeaderClass= $value; |
|
108 | + } |
|
109 | + |
|
110 | + /** |
|
111 | + * Sets the class attribute of the table header row. |
|
112 | + * |
|
113 | + * @param $value A class for the table header row. |
|
114 | + */ |
|
115 | + function setThHeaderClass($value) { |
|
116 | + $this->thClass= $value; |
|
117 | + } |
|
118 | + |
|
119 | + /** |
|
120 | + * Sets the class attribute of the column header row. |
|
121 | + * |
|
122 | + * @param $value A class for the column header row. |
|
123 | + */ |
|
124 | + function setColumnHeaderClass($value) { |
|
125 | + $this->columnHeaderClass= $value; |
|
126 | + } |
|
127 | + |
|
128 | + /** |
|
129 | + * Sets the class attribute of regular table rows. |
|
130 | + * |
|
131 | + * @param $value A class for regular table rows. |
|
132 | + */ |
|
133 | + function setRowRegularClass($value) { |
|
134 | + $this->rowRegularClass= $value; |
|
135 | + } |
|
136 | + |
|
137 | + /** |
|
138 | + * Sets the class attribute of alternate table rows. |
|
139 | + * |
|
140 | + * @param $value A class for alternate table rows. |
|
141 | + */ |
|
142 | + function setRowAlternateClass($value) { |
|
143 | + $this->rowAlternateClass= $value; |
|
144 | + } |
|
145 | + |
|
146 | + /** |
|
147 | + * Sets the type of INPUT form element to be presented as the first column. |
|
148 | + * |
|
149 | + * @param $value Indicates the INPUT form element type attribute. |
|
150 | + */ |
|
151 | + function setFormElementType($value) { |
|
152 | + $this->formElementType= $value; |
|
153 | + } |
|
154 | + |
|
155 | + /** |
|
156 | + * Sets the name of the INPUT form element to be presented as the first column. |
|
157 | + * |
|
158 | + * @param $value Indicates the INPUT form element name attribute. |
|
159 | + */ |
|
160 | + function setFormElementName($value) { |
|
161 | + $this->formElementName= $value; |
|
162 | + } |
|
163 | + |
|
164 | + /** |
|
165 | + * Sets the name of the FORM to wrap the table in when a form element has |
|
166 | + * been indicated. |
|
167 | + * |
|
168 | + * @param $value Indicates the FORM name attribute. |
|
169 | + */ |
|
170 | + function setFormName($value) { |
|
171 | + $this->formName= $value; |
|
172 | + } |
|
173 | + |
|
174 | + /** |
|
175 | + * Sets the action of the FORM element. |
|
176 | + * |
|
177 | + * @param $value Indicates the FORM action attribute. |
|
178 | + */ |
|
179 | + function setFormAction($value) { |
|
180 | + $this->formAction= $value; |
|
181 | + } |
|
182 | + |
|
183 | + /** |
|
184 | + * Excludes fields from the table by array key. |
|
185 | + * |
|
186 | + * @param $value An Array of field keys to exclude from the table. |
|
187 | + */ |
|
188 | + function setExcludeFields($value) { |
|
189 | + $this->excludeFields= $value; |
|
190 | + } |
|
191 | + |
|
192 | + /** |
|
193 | + * Sets the table to provide alternate row colors using ODD or EVEN rows |
|
194 | + * |
|
195 | + * @param $value 'ODD' or 'EVEN' to indicate the alternate row scheme. |
|
196 | + */ |
|
197 | + function setRowAlternatingScheme($value) { |
|
198 | + $this->rowAlternatingScheme= $value; |
|
199 | + } |
|
200 | + |
|
201 | + /** |
|
202 | + * Sets the default field value to be used when appending query parameters |
|
203 | + * to link actions. |
|
204 | + * |
|
205 | + * @param $value The key of the field to add as a query string parameter. |
|
206 | + */ |
|
207 | + function setActionFieldName($value) { |
|
208 | + $this->actionField= $value; |
|
209 | + } |
|
210 | + |
|
211 | + /** |
|
212 | + * Sets the width attribute of each column in the array. |
|
213 | + * |
|
214 | + * @param $value An Array of column widths in the order of the keys in the |
|
215 | + * source table array. |
|
216 | + */ |
|
217 | + function setColumnWidths($widthArray) { |
|
218 | + $this->columnWidths= $widthArray; |
|
219 | + } |
|
220 | + |
|
221 | + /** |
|
222 | + * An optional array of values that can be preselected when using |
|
223 | + * |
|
224 | + * @param $value Indicates the INPUT form element type attribute. |
|
225 | + */ |
|
226 | + function setSelectedValues($valueArray) { |
|
227 | + $this->selectedValues= $valueArray; |
|
228 | + } |
|
229 | + |
|
230 | + /** |
|
231 | + * Sets extra content to be presented following the table (but within |
|
232 | + * the form, if a form is being rendered with the table). |
|
233 | + * |
|
234 | + * @param $value A string of additional content. |
|
235 | + */ |
|
236 | + function setExtra($value) { |
|
237 | + $this->extra= $value; |
|
238 | + } |
|
239 | + |
|
240 | + /** |
|
241 | + * Retrieves the width of a specific table column by index position. |
|
242 | + * |
|
243 | + * @param $columnPosition The index of the column to get the width for. |
|
244 | + */ |
|
245 | + function getColumnWidth($columnPosition) { |
|
246 | + $currentWidth= ''; |
|
247 | + if (is_array($this->columnWidths)) { |
|
248 | + $currentWidth= $this->columnWidths[$columnPosition] ? ' width="'.$this->columnWidths[$columnPosition].'" ' : ''; |
|
249 | + } |
|
250 | + return $currentWidth; |
|
251 | + } |
|
252 | + |
|
253 | + /** |
|
254 | + * Determines what class the current row should have applied. |
|
255 | + * |
|
256 | + * @param $value The position of the current row being rendered. |
|
257 | + */ |
|
258 | + function determineRowClass($position) { |
|
259 | + switch ($this->rowAlternatingScheme) { |
|
260 | + case 'ODD' : |
|
261 | + $modRemainder= 1; |
|
262 | + break; |
|
263 | + case 'EVEN' : |
|
264 | + $modRemainder= 0; |
|
265 | + break; |
|
266 | + } |
|
267 | + if ($position % 2 == $modRemainder) { |
|
268 | + $currentClass= $this->rowRegularClass; |
|
269 | + } else { |
|
270 | + $currentClass= $this->rowAlternateClass; |
|
271 | + } |
|
272 | + return ' class="'.$currentClass.'"'; |
|
273 | + } |
|
274 | + |
|
275 | + /** |
|
276 | + * Generates an onclick action applied to the current cell, to execute |
|
277 | + * any specified cell actions. |
|
278 | + * |
|
279 | + * @param $value Indicates the INPUT form element type attribute. |
|
280 | + */ |
|
281 | + function getCellAction($currentActionFieldValue) { |
|
282 | + if ($this->cellAction) { |
|
283 | + $cellAction= ' onClick="javascript:window.location=\''.$this->cellAction.$this->actionField.'='.urlencode($currentActionFieldValue).'\'" '; |
|
284 | + } |
|
285 | + return $cellAction; |
|
286 | + } |
|
287 | + |
|
288 | + /** |
|
289 | + * Generates the cell content, including any specified action fields values. |
|
290 | + * |
|
291 | + * @param $currentActionFieldValue The value to be applied to the link action. |
|
292 | + * @param $value The value of the cell. |
|
293 | + */ |
|
294 | + function createCellText($currentActionFieldValue, $value) { |
|
295 | + $cell .= $value; |
|
296 | + if ($this->linkAction) { |
|
297 | + $cell= '<a href="'.$this->linkAction.$this->actionField.'='.urlencode($currentActionFieldValue).'">'.$cell.'</a>'; |
|
298 | + } |
|
299 | + return $cell; |
|
300 | + } |
|
301 | + |
|
302 | + /** |
|
303 | + * Sets an option to generate a check all link when checkbox is indicated |
|
304 | + * as the table formElementType. |
|
305 | + */ |
|
306 | + function setAllOption() { |
|
307 | + $this->allOption= 1; |
|
308 | + } |
|
309 | + |
|
310 | + /** |
|
311 | + * Function to prepare a link generated in the table cell/link actions. |
|
312 | + * |
|
313 | + * @param $value Indicates the INPUT form element type attribute. |
|
314 | + */ |
|
315 | + function prepareLink($link) { |
|
316 | + if (strstr($link, '?')) { |
|
317 | + $end= '&'; |
|
318 | + } else { |
|
319 | + $end= '?'; |
|
320 | + } |
|
321 | + return $link.$end; |
|
322 | + } |
|
323 | + |
|
324 | + /** |
|
325 | + * Generates the table content. |
|
326 | + * |
|
327 | + * @param $fieldsArray The associative array representing the table rows |
|
328 | + * and columns. |
|
329 | + * @param $fieldHeadersArray An optional array of values for providing |
|
330 | + * alternative field headers; this is an associative arrays of keys from |
|
331 | + * the $fieldsArray where the values represent the alt heading content |
|
332 | + * for each column. |
|
333 | + */ |
|
334 | + function create($fieldsArray, $fieldHeadersArray=array(),$linkpage="") { |
|
335 | + global $_lang; |
|
336 | + if (is_array($fieldsArray)) { |
|
337 | + $i= 0; |
|
338 | + foreach ($fieldsArray as $fieldName => $fieldValue) { |
|
339 | + $table .= "\t<tr".$this->determineRowClass($i).">\n"; |
|
340 | + $currentActionFieldValue= $fieldValue[$this->actionField]; |
|
341 | + if (is_array($this->selectedValues)) { |
|
342 | + $isChecked= array_search($currentActionFieldValue, $this->selectedValues)===false? 0 : 1; |
|
343 | + } else { |
|
344 | + $isChecked= false; |
|
345 | + } |
|
346 | + $table .= $this->addFormField($currentActionFieldValue, $isChecked); |
|
347 | + $colPosition= 0; |
|
348 | + foreach ($fieldValue as $key => $value) { |
|
349 | + if (!in_array($key, $this->excludeFields)) { |
|
350 | + $table .= "\t\t<td".$this->getCellAction($currentActionFieldValue).">"; |
|
351 | + $table .= $this->createCellText($currentActionFieldValue, $value); |
|
352 | + $table .= "</td>\n"; |
|
353 | + if ($i == 0) { |
|
354 | + if (empty ($header) && $this->formElementType) { |
|
355 | + $header .= "\t\t<th style=\"width:32px\" ".($this->thClass ? 'class="'.$this->thClass.'"' : '').">". ($this->allOption ? '<a href="javascript:clickAll()">all</a>' : '')."</th>\n"; |
|
356 | + } |
|
357 | + $headerText= array_key_exists($key, $fieldHeadersArray)? $fieldHeadersArray[$key]: $key; |
|
358 | + $header .= "\t\t<th".$this->getColumnWidth($colPosition).($this->thClass ? ' class="'.$this->thClass.'" ' : '').">".$headerText."</th>\n"; |
|
359 | + } |
|
360 | + $colPosition ++; |
|
361 | + } |
|
362 | + } |
|
363 | + $i ++; |
|
364 | + $table .= "\t</tr>\n"; |
|
365 | + } |
|
366 | + $table= "\n".'<table'. ($this->tableWidth ? ' width="'.$this->tableWidth.'"' : ''). ($this->tableClass ? ' class="'.$this->tableClass.'"' : ''). ($this->tableID ? ' id="'.$this->tableID.'"' : '').">\n". ($header ? "\t<thead>\n\t<tr class=\"".$this->rowHeaderClass."\">\n".$header."\t</tr>\n\t</thead>\n" : '').$table."</table>\n"; |
|
367 | + if ($this->formElementType) { |
|
368 | + $table= "\n".'<form id="'.$this->formName.'" name="'.$this->formName.'" action="'.$this->formAction.'" method="POST">'.$table; |
|
369 | + } |
|
370 | + if (strlen($this->pageNav) > 1) {//changed to display the pagination if exists. |
|
371 | + /* commented this part because of cookie |
|
372 | 372 | $table .= '<div id="max-display-records" ><select style="display:inline" onchange="javascript:updatePageSize(this[this.selectedIndex].value);">'; |
373 | 373 | $pageSizes= array (10, 25, 50, 100, 250); |
374 | 374 | for ($i= 0; $i < count($pageSizes); $i ++) { |
@@ -379,12 +379,12 @@ discard block |
||
379 | 379 | |
380 | 380 | $table .= '</select>'.$_lang["pagination_table_perpage"].'</div>'; |
381 | 381 | */ |
382 | - $table .= '<div id="pagination" class="paginate">'.$_lang["pagination_table_gotopage"].'<ul>'.$this->pageNav.'</ul></div>'; |
|
383 | - //$table .= '<script language="javascript">function updatePageSize(size){window.location = \''.$this->prepareLink($linkpage).'pageSize=\'+size;}</script>'; |
|
382 | + $table .= '<div id="pagination" class="paginate">'.$_lang["pagination_table_gotopage"].'<ul>'.$this->pageNav.'</ul></div>'; |
|
383 | + //$table .= '<script language="javascript">function updatePageSize(size){window.location = \''.$this->prepareLink($linkpage).'pageSize=\'+size;}</script>'; |
|
384 | 384 | |
385 | - } |
|
386 | - if ($this->allOption) { |
|
387 | - $table .= ' |
|
385 | + } |
|
386 | + if ($this->allOption) { |
|
387 | + $table .= ' |
|
388 | 388 | <script language="javascript"> |
389 | 389 | toggled = 0; |
390 | 390 | function clickAll() { |
@@ -397,134 +397,134 @@ discard block |
||
397 | 397 | toggled = (toggled?0:1); |
398 | 398 | } |
399 | 399 | </script>'; |
400 | - } |
|
401 | - if ($this->formElementType) { |
|
402 | - if ($this->extra) { |
|
403 | - $table.= "\n".$this->extra."\n"; |
|
404 | - } |
|
405 | - $table.= "\n".'</form>'."\n"; |
|
406 | - } |
|
407 | - return $table; |
|
408 | - } |
|
409 | - } |
|
410 | - |
|
411 | - /** |
|
412 | - * Generates optional paging navigation controls for the table. |
|
413 | - * |
|
414 | - * @param $numRecords The number of records to show per page. |
|
415 | - * @param $qs An optional query string to be appended to the paging links |
|
416 | - */ |
|
417 | - function createPagingNavigation($numRecords, $qs='') { |
|
418 | - global $_lang; |
|
419 | - $currentPage= (is_numeric($_GET['page']) ? $_GET['page'] : 1); |
|
420 | - $numPages= ceil($numRecords / MAX_DISPLAY_RECORDS_NUM); |
|
421 | - if ($numPages > 1) { |
|
422 | - $currentURL= empty($qs)? '': '?'.$qs; |
|
423 | - if ($currentPage > 6) { |
|
424 | - $nav .= $this->createPageLink($currentURL, 1, $_lang["pagination_table_first"]); |
|
425 | - } |
|
426 | - if ($currentPage != 1) { |
|
427 | - $nav .= $this->createPageLink($currentURL, $currentPage -1, '<<'); |
|
428 | - } |
|
429 | - $offset= -4 + ($currentPage < 5 ? (5 - $currentPage) : 0); |
|
430 | - $i= 1; |
|
431 | - 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); |
|
436 | - $i ++; |
|
437 | - $offset ++; |
|
438 | - } |
|
439 | - if ($currentPage < $numPages) { |
|
440 | - $nav .= $this->createPageLink($currentURL, $currentPage +1, '>>'); |
|
441 | - } |
|
442 | - if ($currentPage != $numPages) { |
|
443 | - $nav .= $this->createPageLink($currentURL, $numPages, $_lang["pagination_table_last"]); |
|
444 | - } |
|
445 | - } |
|
446 | - $this->pageNav= ' '.$nav; |
|
447 | - } |
|
448 | - |
|
449 | - /** |
|
450 | - * Creates an individual page link for the paging navigation. |
|
451 | - * |
|
452 | - * @param $link The link for the page, defaulted to the current document. |
|
453 | - * @param $pageNum The page number of the link. |
|
454 | - * @param $displayText The text of the link. |
|
455 | - * @param $currentPage Indicates if the link is to the current page. |
|
456 | - * @param $qs And optional query string to be appended to the link. |
|
457 | - */ |
|
458 | - function createPageLink($link='', $pageNum, $displayText, $currentPage=false, $qs='') { |
|
459 | - global $modx; |
|
460 | - $orderBy= !empty($_GET['orderby'])? '&orderby=' . $_GET['orderby']: ''; |
|
461 | - $orderDir= !empty($_GET['orderdir'])? '&orderdir=' . $_GET['orderdir']: ''; |
|
462 | - if (!empty($qs)) $qs= "?$qs"; |
|
463 | - $link= empty($link)? $modx->makeUrl($modx->documentIdentifier, $modx->documentObject['alias'], $qs . "page=$pageNum$orderBy$orderDir"): $this->prepareLink($link) . "page=$pageNum"; |
|
464 | - $nav .= '<li'.($currentPage? ' class="currentPage"': '').'><a'.($currentPage? ' class="currentPage"': '').' href="'.$link.'">'.$displayText.'</a></li>'."\n"; |
|
465 | - return $nav; |
|
466 | - } |
|
467 | - |
|
468 | - /** |
|
469 | - * Adds an INPUT form element column to the table. |
|
470 | - * |
|
471 | - * @param $value The value attribute of the element. |
|
472 | - * @param $isChecked Indicates if the checked attribute should apply to the |
|
473 | - * element. |
|
474 | - */ |
|
475 | - function addFormField($value, $isChecked) { |
|
476 | - if ($this->formElementType) { |
|
477 | - $checked= $isChecked? "checked ": ""; |
|
478 | - $field= "\t\t".'<td><input type="'.$this->formElementType.'" name="'. ($this->formElementName ? $this->formElementName : $value).'" value="'.$value.'" '.$checked.'/></td>'."\n"; |
|
479 | - } |
|
480 | - return $field; |
|
481 | - } |
|
482 | - |
|
483 | - /** |
|
484 | - * Generates the proper LIMIT clause for queries to retrieve paged results in |
|
485 | - * a MakeTable $fieldsArray. |
|
486 | - */ |
|
487 | - function handlePaging() { |
|
488 | - $offset= (is_numeric($_GET['page']) && $_GET['page'] > 0) ? $_GET['page'] - 1 : 0; |
|
489 | - $limitClause= ' LIMIT '. ($offset * MAX_DISPLAY_RECORDS_NUM).', '.MAX_DISPLAY_RECORDS_NUM; |
|
490 | - return $limitClause; |
|
491 | - } |
|
492 | - |
|
493 | - /** |
|
494 | - * Generates the SORT BY clause for queries used to retrieve a MakeTable |
|
495 | - * $fieldsArray |
|
496 | - * |
|
497 | - * @param $natural_order If true, the results are returned in natural order. |
|
498 | - */ |
|
499 | - function handleSorting($natural_order=false) { |
|
500 | - $orderByClause= ''; |
|
501 | - if (!$natural_order) { |
|
502 | - $orderby= !empty($_GET['orderby'])? $_GET['orderby']: "id"; |
|
503 | - $orderdir= !empty($_GET['orderdir'])? $_GET['orderdir']: "DESC"; |
|
504 | - $orderbyClause= !empty($orderby)? ' ORDER BY ' . $orderby . ' ' . $orderdir . ' ': ""; |
|
505 | - } |
|
506 | - return $orderbyClause; |
|
507 | - } |
|
508 | - |
|
509 | - /** |
|
510 | - * Generates a link to order by a specific $fieldsArray key; use to generate |
|
511 | - * sort by links in the MakeTable $fieldHeadingsArray values. |
|
512 | - * |
|
513 | - * @param $key The $fieldsArray key for the column to sort by. |
|
514 | - * @param $text The text for the link (e.g. table column header). |
|
515 | - * @param $qs An optional query string to append to the order by link. |
|
516 | - */ |
|
517 | - function prepareOrderByLink($key, $text, $qs='') { |
|
518 | - global $modx; |
|
519 | - if (!empty($_GET['orderdir'])) { |
|
520 | - $orderDir= strtolower($_GET['orderdir'])=='desc'? '&orderdir=asc': '&orderdir=desc'; |
|
521 | - } else { |
|
522 | - $orderDir= '&orderdir=asc'; |
|
523 | - } |
|
524 | - if (!empty($qs)) { |
|
525 | - if (!strrpos($qs, '&')==strlen($qs)-1) $qs.= '&'; |
|
526 | - } |
|
527 | - return '<a href="[~'.$modx->documentIdentifier.'~]?'.$qs.'orderby='.$key.$orderDir.'">'.$text.'</a>'; |
|
528 | - } |
|
400 | + } |
|
401 | + if ($this->formElementType) { |
|
402 | + if ($this->extra) { |
|
403 | + $table.= "\n".$this->extra."\n"; |
|
404 | + } |
|
405 | + $table.= "\n".'</form>'."\n"; |
|
406 | + } |
|
407 | + return $table; |
|
408 | + } |
|
409 | + } |
|
410 | + |
|
411 | + /** |
|
412 | + * Generates optional paging navigation controls for the table. |
|
413 | + * |
|
414 | + * @param $numRecords The number of records to show per page. |
|
415 | + * @param $qs An optional query string to be appended to the paging links |
|
416 | + */ |
|
417 | + function createPagingNavigation($numRecords, $qs='') { |
|
418 | + global $_lang; |
|
419 | + $currentPage= (is_numeric($_GET['page']) ? $_GET['page'] : 1); |
|
420 | + $numPages= ceil($numRecords / MAX_DISPLAY_RECORDS_NUM); |
|
421 | + if ($numPages > 1) { |
|
422 | + $currentURL= empty($qs)? '': '?'.$qs; |
|
423 | + if ($currentPage > 6) { |
|
424 | + $nav .= $this->createPageLink($currentURL, 1, $_lang["pagination_table_first"]); |
|
425 | + } |
|
426 | + if ($currentPage != 1) { |
|
427 | + $nav .= $this->createPageLink($currentURL, $currentPage -1, '<<'); |
|
428 | + } |
|
429 | + $offset= -4 + ($currentPage < 5 ? (5 - $currentPage) : 0); |
|
430 | + $i= 1; |
|
431 | + 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); |
|
436 | + $i ++; |
|
437 | + $offset ++; |
|
438 | + } |
|
439 | + if ($currentPage < $numPages) { |
|
440 | + $nav .= $this->createPageLink($currentURL, $currentPage +1, '>>'); |
|
441 | + } |
|
442 | + if ($currentPage != $numPages) { |
|
443 | + $nav .= $this->createPageLink($currentURL, $numPages, $_lang["pagination_table_last"]); |
|
444 | + } |
|
445 | + } |
|
446 | + $this->pageNav= ' '.$nav; |
|
447 | + } |
|
448 | + |
|
449 | + /** |
|
450 | + * Creates an individual page link for the paging navigation. |
|
451 | + * |
|
452 | + * @param $link The link for the page, defaulted to the current document. |
|
453 | + * @param $pageNum The page number of the link. |
|
454 | + * @param $displayText The text of the link. |
|
455 | + * @param $currentPage Indicates if the link is to the current page. |
|
456 | + * @param $qs And optional query string to be appended to the link. |
|
457 | + */ |
|
458 | + function createPageLink($link='', $pageNum, $displayText, $currentPage=false, $qs='') { |
|
459 | + global $modx; |
|
460 | + $orderBy= !empty($_GET['orderby'])? '&orderby=' . $_GET['orderby']: ''; |
|
461 | + $orderDir= !empty($_GET['orderdir'])? '&orderdir=' . $_GET['orderdir']: ''; |
|
462 | + if (!empty($qs)) $qs= "?$qs"; |
|
463 | + $link= empty($link)? $modx->makeUrl($modx->documentIdentifier, $modx->documentObject['alias'], $qs . "page=$pageNum$orderBy$orderDir"): $this->prepareLink($link) . "page=$pageNum"; |
|
464 | + $nav .= '<li'.($currentPage? ' class="currentPage"': '').'><a'.($currentPage? ' class="currentPage"': '').' href="'.$link.'">'.$displayText.'</a></li>'."\n"; |
|
465 | + return $nav; |
|
466 | + } |
|
467 | + |
|
468 | + /** |
|
469 | + * Adds an INPUT form element column to the table. |
|
470 | + * |
|
471 | + * @param $value The value attribute of the element. |
|
472 | + * @param $isChecked Indicates if the checked attribute should apply to the |
|
473 | + * element. |
|
474 | + */ |
|
475 | + function addFormField($value, $isChecked) { |
|
476 | + if ($this->formElementType) { |
|
477 | + $checked= $isChecked? "checked ": ""; |
|
478 | + $field= "\t\t".'<td><input type="'.$this->formElementType.'" name="'. ($this->formElementName ? $this->formElementName : $value).'" value="'.$value.'" '.$checked.'/></td>'."\n"; |
|
479 | + } |
|
480 | + return $field; |
|
481 | + } |
|
482 | + |
|
483 | + /** |
|
484 | + * Generates the proper LIMIT clause for queries to retrieve paged results in |
|
485 | + * a MakeTable $fieldsArray. |
|
486 | + */ |
|
487 | + function handlePaging() { |
|
488 | + $offset= (is_numeric($_GET['page']) && $_GET['page'] > 0) ? $_GET['page'] - 1 : 0; |
|
489 | + $limitClause= ' LIMIT '. ($offset * MAX_DISPLAY_RECORDS_NUM).', '.MAX_DISPLAY_RECORDS_NUM; |
|
490 | + return $limitClause; |
|
491 | + } |
|
492 | + |
|
493 | + /** |
|
494 | + * Generates the SORT BY clause for queries used to retrieve a MakeTable |
|
495 | + * $fieldsArray |
|
496 | + * |
|
497 | + * @param $natural_order If true, the results are returned in natural order. |
|
498 | + */ |
|
499 | + function handleSorting($natural_order=false) { |
|
500 | + $orderByClause= ''; |
|
501 | + if (!$natural_order) { |
|
502 | + $orderby= !empty($_GET['orderby'])? $_GET['orderby']: "id"; |
|
503 | + $orderdir= !empty($_GET['orderdir'])? $_GET['orderdir']: "DESC"; |
|
504 | + $orderbyClause= !empty($orderby)? ' ORDER BY ' . $orderby . ' ' . $orderdir . ' ': ""; |
|
505 | + } |
|
506 | + return $orderbyClause; |
|
507 | + } |
|
508 | + |
|
509 | + /** |
|
510 | + * Generates a link to order by a specific $fieldsArray key; use to generate |
|
511 | + * sort by links in the MakeTable $fieldHeadingsArray values. |
|
512 | + * |
|
513 | + * @param $key The $fieldsArray key for the column to sort by. |
|
514 | + * @param $text The text for the link (e.g. table column header). |
|
515 | + * @param $qs An optional query string to append to the order by link. |
|
516 | + */ |
|
517 | + function prepareOrderByLink($key, $text, $qs='') { |
|
518 | + global $modx; |
|
519 | + if (!empty($_GET['orderdir'])) { |
|
520 | + $orderDir= strtolower($_GET['orderdir'])=='desc'? '&orderdir=asc': '&orderdir=desc'; |
|
521 | + } else { |
|
522 | + $orderDir= '&orderdir=asc'; |
|
523 | + } |
|
524 | + if (!empty($qs)) { |
|
525 | + if (!strrpos($qs, '&')==strlen($qs)-1) $qs.= '&'; |
|
526 | + } |
|
527 | + return '<a href="[~'.$modx->documentIdentifier.'~]?'.$qs.'orderby='.$key.$orderDir.'">'.$text.'</a>'; |
|
528 | + } |
|
529 | 529 | |
530 | 530 | } |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | * |
9 | 9 | * @author Jason Coward <[email protected]> (MODX) |
10 | 10 | */ |
11 | -class MakeTable { |
|
11 | +class MakeTable{ |
|
12 | 12 | var $actionField; |
13 | 13 | var $cellAction; |
14 | 14 | var $linkAction; |
@@ -31,26 +31,26 @@ discard block |
||
31 | 31 | var $columnWidths; |
32 | 32 | var $selectedValues; |
33 | 33 | |
34 | - function __construct() { |
|
35 | - $this->fieldHeaders= array(); |
|
36 | - $this->excludeFields= array(); |
|
37 | - $this->actionField= ''; |
|
38 | - $this->cellAction= ''; |
|
39 | - $this->linkAction= ''; |
|
40 | - $this->tableWidth= ''; |
|
41 | - $this->tableClass= ''; |
|
42 | - $this->rowHeaderClass= ''; |
|
43 | - $this->columnHeaderClass= ''; |
|
44 | - $this->rowRegularClass= ''; |
|
45 | - $this->rowAlternateClass= 'alt'; |
|
46 | - $this->formName= 'tableForm'; |
|
47 | - $this->formAction= '[~[*id*]~]'; |
|
48 | - $this->formElementName= ''; |
|
49 | - $this->formElementType= ''; |
|
50 | - $this->rowAlternatingScheme= 'EVEN'; |
|
51 | - $this->allOption= 0; |
|
52 | - $this->selectedValues= array(); |
|
53 | - $this->extra= ''; |
|
34 | + function __construct(){ |
|
35 | + $this->fieldHeaders = array(); |
|
36 | + $this->excludeFields = array(); |
|
37 | + $this->actionField = ''; |
|
38 | + $this->cellAction = ''; |
|
39 | + $this->linkAction = ''; |
|
40 | + $this->tableWidth = ''; |
|
41 | + $this->tableClass = ''; |
|
42 | + $this->rowHeaderClass = ''; |
|
43 | + $this->columnHeaderClass = ''; |
|
44 | + $this->rowRegularClass = ''; |
|
45 | + $this->rowAlternateClass = 'alt'; |
|
46 | + $this->formName = 'tableForm'; |
|
47 | + $this->formAction = '[~[*id*]~]'; |
|
48 | + $this->formElementName = ''; |
|
49 | + $this->formElementType = ''; |
|
50 | + $this->rowAlternatingScheme = 'EVEN'; |
|
51 | + $this->allOption = 0; |
|
52 | + $this->selectedValues = array(); |
|
53 | + $this->extra = ''; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -58,8 +58,8 @@ discard block |
||
58 | 58 | * |
59 | 59 | * @param $value A URL to execute when table cells are clicked. |
60 | 60 | */ |
61 | - function setCellAction($value) { |
|
62 | - $this->cellAction= $this->prepareLink($value); |
|
61 | + function setCellAction($value){ |
|
62 | + $this->cellAction = $this->prepareLink($value); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
@@ -67,8 +67,8 @@ discard block |
||
67 | 67 | * |
68 | 68 | * @param $value A URL to execute when text within table cells are clicked. |
69 | 69 | */ |
70 | - function setLinkAction($value) { |
|
71 | - $this->linkAction= $this->prepareLink($value); |
|
70 | + function setLinkAction($value){ |
|
71 | + $this->linkAction = $this->prepareLink($value); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | /** |
@@ -76,8 +76,8 @@ discard block |
||
76 | 76 | * |
77 | 77 | * @param $value A valid width attribute for the HTML TABLE tag |
78 | 78 | */ |
79 | - function setTableWidth($value) { |
|
80 | - $this->tableWidth= $value; |
|
79 | + function setTableWidth($value){ |
|
80 | + $this->tableWidth = $value; |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | /** |
@@ -85,8 +85,8 @@ discard block |
||
85 | 85 | * |
86 | 86 | * @param $value A class for the main HTML TABLE. |
87 | 87 | */ |
88 | - function setTableClass($value) { |
|
89 | - $this->tableClass= $value; |
|
88 | + function setTableClass($value){ |
|
89 | + $this->tableClass = $value; |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -94,8 +94,8 @@ discard block |
||
94 | 94 | * |
95 | 95 | * @param $value A class for the main HTML TABLE. |
96 | 96 | */ |
97 | - function setTableID($value) { |
|
98 | - $this->tableID= $value; |
|
97 | + function setTableID($value){ |
|
98 | + $this->tableID = $value; |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | /** |
@@ -103,8 +103,8 @@ discard block |
||
103 | 103 | * |
104 | 104 | * @param $value A class for the table header row. |
105 | 105 | */ |
106 | - function setRowHeaderClass($value) { |
|
107 | - $this->rowHeaderClass= $value; |
|
106 | + function setRowHeaderClass($value){ |
|
107 | + $this->rowHeaderClass = $value; |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | /** |
@@ -112,8 +112,8 @@ discard block |
||
112 | 112 | * |
113 | 113 | * @param $value A class for the table header row. |
114 | 114 | */ |
115 | - function setThHeaderClass($value) { |
|
116 | - $this->thClass= $value; |
|
115 | + function setThHeaderClass($value){ |
|
116 | + $this->thClass = $value; |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
@@ -121,8 +121,8 @@ discard block |
||
121 | 121 | * |
122 | 122 | * @param $value A class for the column header row. |
123 | 123 | */ |
124 | - function setColumnHeaderClass($value) { |
|
125 | - $this->columnHeaderClass= $value; |
|
124 | + function setColumnHeaderClass($value){ |
|
125 | + $this->columnHeaderClass = $value; |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | /** |
@@ -130,8 +130,8 @@ discard block |
||
130 | 130 | * |
131 | 131 | * @param $value A class for regular table rows. |
132 | 132 | */ |
133 | - function setRowRegularClass($value) { |
|
134 | - $this->rowRegularClass= $value; |
|
133 | + function setRowRegularClass($value){ |
|
134 | + $this->rowRegularClass = $value; |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | /** |
@@ -139,8 +139,8 @@ discard block |
||
139 | 139 | * |
140 | 140 | * @param $value A class for alternate table rows. |
141 | 141 | */ |
142 | - function setRowAlternateClass($value) { |
|
143 | - $this->rowAlternateClass= $value; |
|
142 | + function setRowAlternateClass($value){ |
|
143 | + $this->rowAlternateClass = $value; |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -148,8 +148,8 @@ discard block |
||
148 | 148 | * |
149 | 149 | * @param $value Indicates the INPUT form element type attribute. |
150 | 150 | */ |
151 | - function setFormElementType($value) { |
|
152 | - $this->formElementType= $value; |
|
151 | + function setFormElementType($value){ |
|
152 | + $this->formElementType = $value; |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | /** |
@@ -157,8 +157,8 @@ discard block |
||
157 | 157 | * |
158 | 158 | * @param $value Indicates the INPUT form element name attribute. |
159 | 159 | */ |
160 | - function setFormElementName($value) { |
|
161 | - $this->formElementName= $value; |
|
160 | + function setFormElementName($value){ |
|
161 | + $this->formElementName = $value; |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | /** |
@@ -167,8 +167,8 @@ discard block |
||
167 | 167 | * |
168 | 168 | * @param $value Indicates the FORM name attribute. |
169 | 169 | */ |
170 | - function setFormName($value) { |
|
171 | - $this->formName= $value; |
|
170 | + function setFormName($value){ |
|
171 | + $this->formName = $value; |
|
172 | 172 | } |
173 | 173 | |
174 | 174 | /** |
@@ -176,8 +176,8 @@ discard block |
||
176 | 176 | * |
177 | 177 | * @param $value Indicates the FORM action attribute. |
178 | 178 | */ |
179 | - function setFormAction($value) { |
|
180 | - $this->formAction= $value; |
|
179 | + function setFormAction($value){ |
|
180 | + $this->formAction = $value; |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -185,8 +185,8 @@ discard block |
||
185 | 185 | * |
186 | 186 | * @param $value An Array of field keys to exclude from the table. |
187 | 187 | */ |
188 | - function setExcludeFields($value) { |
|
189 | - $this->excludeFields= $value; |
|
188 | + function setExcludeFields($value){ |
|
189 | + $this->excludeFields = $value; |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
@@ -194,8 +194,8 @@ discard block |
||
194 | 194 | * |
195 | 195 | * @param $value 'ODD' or 'EVEN' to indicate the alternate row scheme. |
196 | 196 | */ |
197 | - function setRowAlternatingScheme($value) { |
|
198 | - $this->rowAlternatingScheme= $value; |
|
197 | + function setRowAlternatingScheme($value){ |
|
198 | + $this->rowAlternatingScheme = $value; |
|
199 | 199 | } |
200 | 200 | |
201 | 201 | /** |
@@ -204,8 +204,8 @@ discard block |
||
204 | 204 | * |
205 | 205 | * @param $value The key of the field to add as a query string parameter. |
206 | 206 | */ |
207 | - function setActionFieldName($value) { |
|
208 | - $this->actionField= $value; |
|
207 | + function setActionFieldName($value){ |
|
208 | + $this->actionField = $value; |
|
209 | 209 | } |
210 | 210 | |
211 | 211 | /** |
@@ -214,8 +214,8 @@ discard block |
||
214 | 214 | * @param $value An Array of column widths in the order of the keys in the |
215 | 215 | * source table array. |
216 | 216 | */ |
217 | - function setColumnWidths($widthArray) { |
|
218 | - $this->columnWidths= $widthArray; |
|
217 | + function setColumnWidths($widthArray){ |
|
218 | + $this->columnWidths = $widthArray; |
|
219 | 219 | } |
220 | 220 | |
221 | 221 | /** |
@@ -223,8 +223,8 @@ discard block |
||
223 | 223 | * |
224 | 224 | * @param $value Indicates the INPUT form element type attribute. |
225 | 225 | */ |
226 | - function setSelectedValues($valueArray) { |
|
227 | - $this->selectedValues= $valueArray; |
|
226 | + function setSelectedValues($valueArray){ |
|
227 | + $this->selectedValues = $valueArray; |
|
228 | 228 | } |
229 | 229 | |
230 | 230 | /** |
@@ -233,8 +233,8 @@ discard block |
||
233 | 233 | * |
234 | 234 | * @param $value A string of additional content. |
235 | 235 | */ |
236 | - function setExtra($value) { |
|
237 | - $this->extra= $value; |
|
236 | + function setExtra($value){ |
|
237 | + $this->extra = $value; |
|
238 | 238 | } |
239 | 239 | |
240 | 240 | /** |
@@ -242,10 +242,10 @@ discard block |
||
242 | 242 | * |
243 | 243 | * @param $columnPosition The index of the column to get the width for. |
244 | 244 | */ |
245 | - function getColumnWidth($columnPosition) { |
|
246 | - $currentWidth= ''; |
|
245 | + function getColumnWidth($columnPosition){ |
|
246 | + $currentWidth = ''; |
|
247 | 247 | if (is_array($this->columnWidths)) { |
248 | - $currentWidth= $this->columnWidths[$columnPosition] ? ' width="'.$this->columnWidths[$columnPosition].'" ' : ''; |
|
248 | + $currentWidth = $this->columnWidths[$columnPosition] ? ' width="'.$this->columnWidths[$columnPosition].'" ' : ''; |
|
249 | 249 | } |
250 | 250 | return $currentWidth; |
251 | 251 | } |
@@ -255,19 +255,19 @@ discard block |
||
255 | 255 | * |
256 | 256 | * @param $value The position of the current row being rendered. |
257 | 257 | */ |
258 | - function determineRowClass($position) { |
|
258 | + function determineRowClass($position){ |
|
259 | 259 | switch ($this->rowAlternatingScheme) { |
260 | 260 | case 'ODD' : |
261 | - $modRemainder= 1; |
|
261 | + $modRemainder = 1; |
|
262 | 262 | break; |
263 | 263 | case 'EVEN' : |
264 | - $modRemainder= 0; |
|
264 | + $modRemainder = 0; |
|
265 | 265 | break; |
266 | 266 | } |
267 | 267 | if ($position % 2 == $modRemainder) { |
268 | - $currentClass= $this->rowRegularClass; |
|
268 | + $currentClass = $this->rowRegularClass; |
|
269 | 269 | } else { |
270 | - $currentClass= $this->rowAlternateClass; |
|
270 | + $currentClass = $this->rowAlternateClass; |
|
271 | 271 | } |
272 | 272 | return ' class="'.$currentClass.'"'; |
273 | 273 | } |
@@ -278,9 +278,9 @@ discard block |
||
278 | 278 | * |
279 | 279 | * @param $value Indicates the INPUT form element type attribute. |
280 | 280 | */ |
281 | - function getCellAction($currentActionFieldValue) { |
|
281 | + function getCellAction($currentActionFieldValue){ |
|
282 | 282 | if ($this->cellAction) { |
283 | - $cellAction= ' onClick="javascript:window.location=\''.$this->cellAction.$this->actionField.'='.urlencode($currentActionFieldValue).'\'" '; |
|
283 | + $cellAction = ' onClick="javascript:window.location=\''.$this->cellAction.$this->actionField.'='.urlencode($currentActionFieldValue).'\'" '; |
|
284 | 284 | } |
285 | 285 | return $cellAction; |
286 | 286 | } |
@@ -291,10 +291,10 @@ discard block |
||
291 | 291 | * @param $currentActionFieldValue The value to be applied to the link action. |
292 | 292 | * @param $value The value of the cell. |
293 | 293 | */ |
294 | - function createCellText($currentActionFieldValue, $value) { |
|
294 | + function createCellText($currentActionFieldValue, $value){ |
|
295 | 295 | $cell .= $value; |
296 | 296 | if ($this->linkAction) { |
297 | - $cell= '<a href="'.$this->linkAction.$this->actionField.'='.urlencode($currentActionFieldValue).'">'.$cell.'</a>'; |
|
297 | + $cell = '<a href="'.$this->linkAction.$this->actionField.'='.urlencode($currentActionFieldValue).'">'.$cell.'</a>'; |
|
298 | 298 | } |
299 | 299 | return $cell; |
300 | 300 | } |
@@ -303,8 +303,8 @@ discard block |
||
303 | 303 | * Sets an option to generate a check all link when checkbox is indicated |
304 | 304 | * as the table formElementType. |
305 | 305 | */ |
306 | - function setAllOption() { |
|
307 | - $this->allOption= 1; |
|
306 | + function setAllOption(){ |
|
307 | + $this->allOption = 1; |
|
308 | 308 | } |
309 | 309 | |
310 | 310 | /** |
@@ -312,11 +312,11 @@ discard block |
||
312 | 312 | * |
313 | 313 | * @param $value Indicates the INPUT form element type attribute. |
314 | 314 | */ |
315 | - function prepareLink($link) { |
|
315 | + function prepareLink($link){ |
|
316 | 316 | if (strstr($link, '?')) { |
317 | - $end= '&'; |
|
317 | + $end = '&'; |
|
318 | 318 | } else { |
319 | - $end= '?'; |
|
319 | + $end = '?'; |
|
320 | 320 | } |
321 | 321 | return $link.$end; |
322 | 322 | } |
@@ -331,20 +331,20 @@ discard block |
||
331 | 331 | * the $fieldsArray where the values represent the alt heading content |
332 | 332 | * for each column. |
333 | 333 | */ |
334 | - function create($fieldsArray, $fieldHeadersArray=array(),$linkpage="") { |
|
334 | + function create($fieldsArray, $fieldHeadersArray = array(), $linkpage = ""){ |
|
335 | 335 | global $_lang; |
336 | 336 | if (is_array($fieldsArray)) { |
337 | - $i= 0; |
|
337 | + $i = 0; |
|
338 | 338 | foreach ($fieldsArray as $fieldName => $fieldValue) { |
339 | 339 | $table .= "\t<tr".$this->determineRowClass($i).">\n"; |
340 | - $currentActionFieldValue= $fieldValue[$this->actionField]; |
|
340 | + $currentActionFieldValue = $fieldValue[$this->actionField]; |
|
341 | 341 | if (is_array($this->selectedValues)) { |
342 | - $isChecked= array_search($currentActionFieldValue, $this->selectedValues)===false? 0 : 1; |
|
342 | + $isChecked = array_search($currentActionFieldValue, $this->selectedValues) === false ? 0 : 1; |
|
343 | 343 | } else { |
344 | - $isChecked= false; |
|
344 | + $isChecked = false; |
|
345 | 345 | } |
346 | 346 | $table .= $this->addFormField($currentActionFieldValue, $isChecked); |
347 | - $colPosition= 0; |
|
347 | + $colPosition = 0; |
|
348 | 348 | foreach ($fieldValue as $key => $value) { |
349 | 349 | if (!in_array($key, $this->excludeFields)) { |
350 | 350 | $table .= "\t\t<td".$this->getCellAction($currentActionFieldValue).">"; |
@@ -352,20 +352,20 @@ discard block |
||
352 | 352 | $table .= "</td>\n"; |
353 | 353 | if ($i == 0) { |
354 | 354 | if (empty ($header) && $this->formElementType) { |
355 | - $header .= "\t\t<th style=\"width:32px\" ".($this->thClass ? 'class="'.$this->thClass.'"' : '').">". ($this->allOption ? '<a href="javascript:clickAll()">all</a>' : '')."</th>\n"; |
|
355 | + $header .= "\t\t<th style=\"width:32px\" ".($this->thClass ? 'class="'.$this->thClass.'"' : '').">".($this->allOption ? '<a href="javascript:clickAll()">all</a>' : '')."</th>\n"; |
|
356 | 356 | } |
357 | - $headerText= array_key_exists($key, $fieldHeadersArray)? $fieldHeadersArray[$key]: $key; |
|
357 | + $headerText = array_key_exists($key, $fieldHeadersArray) ? $fieldHeadersArray[$key] : $key; |
|
358 | 358 | $header .= "\t\t<th".$this->getColumnWidth($colPosition).($this->thClass ? ' class="'.$this->thClass.'" ' : '').">".$headerText."</th>\n"; |
359 | 359 | } |
360 | - $colPosition ++; |
|
360 | + $colPosition++; |
|
361 | 361 | } |
362 | 362 | } |
363 | - $i ++; |
|
363 | + $i++; |
|
364 | 364 | $table .= "\t</tr>\n"; |
365 | 365 | } |
366 | - $table= "\n".'<table'. ($this->tableWidth ? ' width="'.$this->tableWidth.'"' : ''). ($this->tableClass ? ' class="'.$this->tableClass.'"' : ''). ($this->tableID ? ' id="'.$this->tableID.'"' : '').">\n". ($header ? "\t<thead>\n\t<tr class=\"".$this->rowHeaderClass."\">\n".$header."\t</tr>\n\t</thead>\n" : '').$table."</table>\n"; |
|
366 | + $table = "\n".'<table'.($this->tableWidth ? ' width="'.$this->tableWidth.'"' : '').($this->tableClass ? ' class="'.$this->tableClass.'"' : '').($this->tableID ? ' id="'.$this->tableID.'"' : '').">\n".($header ? "\t<thead>\n\t<tr class=\"".$this->rowHeaderClass."\">\n".$header."\t</tr>\n\t</thead>\n" : '').$table."</table>\n"; |
|
367 | 367 | if ($this->formElementType) { |
368 | - $table= "\n".'<form id="'.$this->formName.'" name="'.$this->formName.'" action="'.$this->formAction.'" method="POST">'.$table; |
|
368 | + $table = "\n".'<form id="'.$this->formName.'" name="'.$this->formName.'" action="'.$this->formAction.'" method="POST">'.$table; |
|
369 | 369 | } |
370 | 370 | if (strlen($this->pageNav) > 1) {//changed to display the pagination if exists. |
371 | 371 | /* commented this part because of cookie |
@@ -400,9 +400,9 @@ discard block |
||
400 | 400 | } |
401 | 401 | if ($this->formElementType) { |
402 | 402 | if ($this->extra) { |
403 | - $table.= "\n".$this->extra."\n"; |
|
403 | + $table .= "\n".$this->extra."\n"; |
|
404 | 404 | } |
405 | - $table.= "\n".'</form>'."\n"; |
|
405 | + $table .= "\n".'</form>'."\n"; |
|
406 | 406 | } |
407 | 407 | return $table; |
408 | 408 | } |
@@ -414,36 +414,36 @@ discard block |
||
414 | 414 | * @param $numRecords The number of records to show per page. |
415 | 415 | * @param $qs An optional query string to be appended to the paging links |
416 | 416 | */ |
417 | - function createPagingNavigation($numRecords, $qs='') { |
|
417 | + function createPagingNavigation($numRecords, $qs = ''){ |
|
418 | 418 | global $_lang; |
419 | - $currentPage= (is_numeric($_GET['page']) ? $_GET['page'] : 1); |
|
420 | - $numPages= ceil($numRecords / MAX_DISPLAY_RECORDS_NUM); |
|
419 | + $currentPage = (is_numeric($_GET['page']) ? $_GET['page'] : 1); |
|
420 | + $numPages = ceil($numRecords / MAX_DISPLAY_RECORDS_NUM); |
|
421 | 421 | if ($numPages > 1) { |
422 | - $currentURL= empty($qs)? '': '?'.$qs; |
|
422 | + $currentURL = empty($qs) ? '' : '?'.$qs; |
|
423 | 423 | if ($currentPage > 6) { |
424 | 424 | $nav .= $this->createPageLink($currentURL, 1, $_lang["pagination_table_first"]); |
425 | 425 | } |
426 | 426 | if ($currentPage != 1) { |
427 | - $nav .= $this->createPageLink($currentURL, $currentPage -1, '<<'); |
|
427 | + $nav .= $this->createPageLink($currentURL, $currentPage - 1, '<<'); |
|
428 | 428 | } |
429 | - $offset= -4 + ($currentPage < 5 ? (5 - $currentPage) : 0); |
|
430 | - $i= 1; |
|
429 | + $offset = -4 + ($currentPage < 5 ? (5 - $currentPage) : 0); |
|
430 | + $i = 1; |
|
431 | 431 | while ($i < 10 && ($currentPage + $offset <= $numPages)) { |
432 | 432 | if ($currentPage == $currentPage + $offset) |
433 | 433 | $nav .= $this->createPageLink($currentURL, $currentPage + $offset, $currentPage + $offset, true); |
434 | 434 | else |
435 | 435 | $nav .= $this->createPageLink($currentURL, $currentPage + $offset, $currentPage + $offset); |
436 | - $i ++; |
|
437 | - $offset ++; |
|
436 | + $i++; |
|
437 | + $offset++; |
|
438 | 438 | } |
439 | 439 | if ($currentPage < $numPages) { |
440 | - $nav .= $this->createPageLink($currentURL, $currentPage +1, '>>'); |
|
440 | + $nav .= $this->createPageLink($currentURL, $currentPage + 1, '>>'); |
|
441 | 441 | } |
442 | 442 | if ($currentPage != $numPages) { |
443 | 443 | $nav .= $this->createPageLink($currentURL, $numPages, $_lang["pagination_table_last"]); |
444 | 444 | } |
445 | 445 | } |
446 | - $this->pageNav= ' '.$nav; |
|
446 | + $this->pageNav = ' '.$nav; |
|
447 | 447 | } |
448 | 448 | |
449 | 449 | /** |
@@ -455,13 +455,13 @@ discard block |
||
455 | 455 | * @param $currentPage Indicates if the link is to the current page. |
456 | 456 | * @param $qs And optional query string to be appended to the link. |
457 | 457 | */ |
458 | - function createPageLink($link='', $pageNum, $displayText, $currentPage=false, $qs='') { |
|
458 | + function createPageLink($link = '', $pageNum, $displayText, $currentPage = false, $qs = ''){ |
|
459 | 459 | global $modx; |
460 | - $orderBy= !empty($_GET['orderby'])? '&orderby=' . $_GET['orderby']: ''; |
|
461 | - $orderDir= !empty($_GET['orderdir'])? '&orderdir=' . $_GET['orderdir']: ''; |
|
462 | - if (!empty($qs)) $qs= "?$qs"; |
|
463 | - $link= empty($link)? $modx->makeUrl($modx->documentIdentifier, $modx->documentObject['alias'], $qs . "page=$pageNum$orderBy$orderDir"): $this->prepareLink($link) . "page=$pageNum"; |
|
464 | - $nav .= '<li'.($currentPage? ' class="currentPage"': '').'><a'.($currentPage? ' class="currentPage"': '').' href="'.$link.'">'.$displayText.'</a></li>'."\n"; |
|
460 | + $orderBy = !empty($_GET['orderby']) ? '&orderby='.$_GET['orderby'] : ''; |
|
461 | + $orderDir = !empty($_GET['orderdir']) ? '&orderdir='.$_GET['orderdir'] : ''; |
|
462 | + if (!empty($qs)) $qs = "?$qs"; |
|
463 | + $link = empty($link) ? $modx->makeUrl($modx->documentIdentifier, $modx->documentObject['alias'], $qs."page=$pageNum$orderBy$orderDir") : $this->prepareLink($link)."page=$pageNum"; |
|
464 | + $nav .= '<li'.($currentPage ? ' class="currentPage"' : '').'><a'.($currentPage ? ' class="currentPage"' : '').' href="'.$link.'">'.$displayText.'</a></li>'."\n"; |
|
465 | 465 | return $nav; |
466 | 466 | } |
467 | 467 | |
@@ -472,10 +472,10 @@ discard block |
||
472 | 472 | * @param $isChecked Indicates if the checked attribute should apply to the |
473 | 473 | * element. |
474 | 474 | */ |
475 | - function addFormField($value, $isChecked) { |
|
475 | + function addFormField($value, $isChecked){ |
|
476 | 476 | if ($this->formElementType) { |
477 | - $checked= $isChecked? "checked ": ""; |
|
478 | - $field= "\t\t".'<td><input type="'.$this->formElementType.'" name="'. ($this->formElementName ? $this->formElementName : $value).'" value="'.$value.'" '.$checked.'/></td>'."\n"; |
|
477 | + $checked = $isChecked ? "checked " : ""; |
|
478 | + $field = "\t\t".'<td><input type="'.$this->formElementType.'" name="'.($this->formElementName ? $this->formElementName : $value).'" value="'.$value.'" '.$checked.'/></td>'."\n"; |
|
479 | 479 | } |
480 | 480 | return $field; |
481 | 481 | } |
@@ -484,9 +484,9 @@ discard block |
||
484 | 484 | * Generates the proper LIMIT clause for queries to retrieve paged results in |
485 | 485 | * a MakeTable $fieldsArray. |
486 | 486 | */ |
487 | - function handlePaging() { |
|
488 | - $offset= (is_numeric($_GET['page']) && $_GET['page'] > 0) ? $_GET['page'] - 1 : 0; |
|
489 | - $limitClause= ' LIMIT '. ($offset * MAX_DISPLAY_RECORDS_NUM).', '.MAX_DISPLAY_RECORDS_NUM; |
|
487 | + function handlePaging(){ |
|
488 | + $offset = (is_numeric($_GET['page']) && $_GET['page'] > 0) ? $_GET['page'] - 1 : 0; |
|
489 | + $limitClause = ' LIMIT '.($offset * MAX_DISPLAY_RECORDS_NUM).', '.MAX_DISPLAY_RECORDS_NUM; |
|
490 | 490 | return $limitClause; |
491 | 491 | } |
492 | 492 | |
@@ -496,12 +496,12 @@ discard block |
||
496 | 496 | * |
497 | 497 | * @param $natural_order If true, the results are returned in natural order. |
498 | 498 | */ |
499 | - function handleSorting($natural_order=false) { |
|
500 | - $orderByClause= ''; |
|
499 | + function handleSorting($natural_order = false){ |
|
500 | + $orderByClause = ''; |
|
501 | 501 | if (!$natural_order) { |
502 | - $orderby= !empty($_GET['orderby'])? $_GET['orderby']: "id"; |
|
503 | - $orderdir= !empty($_GET['orderdir'])? $_GET['orderdir']: "DESC"; |
|
504 | - $orderbyClause= !empty($orderby)? ' ORDER BY ' . $orderby . ' ' . $orderdir . ' ': ""; |
|
502 | + $orderby = !empty($_GET['orderby']) ? $_GET['orderby'] : "id"; |
|
503 | + $orderdir = !empty($_GET['orderdir']) ? $_GET['orderdir'] : "DESC"; |
|
504 | + $orderbyClause = !empty($orderby) ? ' ORDER BY '.$orderby.' '.$orderdir.' ' : ""; |
|
505 | 505 | } |
506 | 506 | return $orderbyClause; |
507 | 507 | } |
@@ -514,15 +514,15 @@ discard block |
||
514 | 514 | * @param $text The text for the link (e.g. table column header). |
515 | 515 | * @param $qs An optional query string to append to the order by link. |
516 | 516 | */ |
517 | - function prepareOrderByLink($key, $text, $qs='') { |
|
517 | + function prepareOrderByLink($key, $text, $qs = ''){ |
|
518 | 518 | global $modx; |
519 | 519 | if (!empty($_GET['orderdir'])) { |
520 | - $orderDir= strtolower($_GET['orderdir'])=='desc'? '&orderdir=asc': '&orderdir=desc'; |
|
520 | + $orderDir = strtolower($_GET['orderdir']) == 'desc' ? '&orderdir=asc' : '&orderdir=desc'; |
|
521 | 521 | } else { |
522 | - $orderDir= '&orderdir=asc'; |
|
522 | + $orderDir = '&orderdir=asc'; |
|
523 | 523 | } |
524 | 524 | if (!empty($qs)) { |
525 | - if (!strrpos($qs, '&')==strlen($qs)-1) $qs.= '&'; |
|
525 | + if (!strrpos($qs, '&') == strlen($qs) - 1) $qs .= '&'; |
|
526 | 526 | } |
527 | 527 | return '<a href="[~'.$modx->documentIdentifier.'~]?'.$qs.'orderby='.$key.$orderDir.'">'.$text.'</a>'; |
528 | 528 | } |
@@ -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 | } |