@@ -189,11 +189,11 @@ |
||
| 189 | 189 | */ |
| 190 | 190 | define('VAR_PATH', ROOT_PATH . 'var' . DS); |
| 191 | 191 | |
| 192 | - /** |
|
| 193 | - * The path to the directory of your cache files. |
|
| 194 | - * |
|
| 195 | - * This feature is available currently for database and views. |
|
| 196 | - */ |
|
| 192 | + /** |
|
| 193 | + * The path to the directory of your cache files. |
|
| 194 | + * |
|
| 195 | + * This feature is available currently for database and views. |
|
| 196 | + */ |
|
| 197 | 197 | define('CACHE_PATH', VAR_PATH . 'cache' . DS); |
| 198 | 198 | |
| 199 | 199 | /** |
@@ -25,103 +25,103 @@ |
||
| 25 | 25 | */ |
| 26 | 26 | |
| 27 | 27 | /** |
| 28 | - * This file contains the configuration of resources that you want to load automatically: |
|
| 29 | - * personals or systems libraries, configuration files, models, languages |
|
| 30 | - * personals functions or systems that are used often in your application |
|
| 31 | - * instead of loading them every time you want to use it. |
|
| 32 | - * Note: loading a lot of resources can decrease the performance of your application. |
|
| 33 | - */ |
|
| 28 | + * This file contains the configuration of resources that you want to load automatically: |
|
| 29 | + * personals or systems libraries, configuration files, models, languages |
|
| 30 | + * personals functions or systems that are used often in your application |
|
| 31 | + * instead of loading them every time you want to use it. |
|
| 32 | + * Note: loading a lot of resources can decrease the performance of your application. |
|
| 33 | + */ |
|
| 34 | 34 | |
| 35 | 35 | |
| 36 | - /** |
|
| 37 | - * If you have personals libraries or systems to load automatically, then list them in the following array. |
|
| 38 | - * For example : |
|
| 39 | - * |
|
| 40 | - * $autoload['libraries'] = array('library1', 'library2'); |
|
| 41 | - * |
|
| 42 | - * Using module: |
|
| 43 | - * |
|
| 44 | - * $autoload['libraries'] = array('module1/library1', 'module2/library1'); |
|
| 45 | - * |
|
| 46 | - * Note: Systems libraries have priority over personals libraries, |
|
| 47 | - * ie the loading order is as follows: it looks in the folder of the systems libraries, |
|
| 48 | - * if it is found, it is loaded, if not, it search in the module directories, if it is found, |
|
| 49 | - * it is loaded, if not will search in personals libraries folder, |
|
| 50 | - * before returning an error in case it does not find it. |
|
| 51 | - */ |
|
| 36 | + /** |
|
| 37 | + * If you have personals libraries or systems to load automatically, then list them in the following array. |
|
| 38 | + * For example : |
|
| 39 | + * |
|
| 40 | + * $autoload['libraries'] = array('library1', 'library2'); |
|
| 41 | + * |
|
| 42 | + * Using module: |
|
| 43 | + * |
|
| 44 | + * $autoload['libraries'] = array('module1/library1', 'module2/library1'); |
|
| 45 | + * |
|
| 46 | + * Note: Systems libraries have priority over personals libraries, |
|
| 47 | + * ie the loading order is as follows: it looks in the folder of the systems libraries, |
|
| 48 | + * if it is found, it is loaded, if not, it search in the module directories, if it is found, |
|
| 49 | + * it is loaded, if not will search in personals libraries folder, |
|
| 50 | + * before returning an error in case it does not find it. |
|
| 51 | + */ |
|
| 52 | 52 | $autoload['libraries'] = array(); |
| 53 | 53 | |
| 54 | 54 | /** |
| 55 | - * If you have configuration files to load automatically, then list them in the following array. |
|
| 56 | - * For example : |
|
| 57 | - * |
|
| 58 | - * $autoload['config'] = array('config1', 'config2'); |
|
| 59 | - * |
|
| 60 | - * Using module: |
|
| 61 | - * |
|
| 62 | - * $autoload['config'] = array('module1/config1', 'module2/config2'); |
|
| 63 | - * |
|
| 64 | - * Note 1: the file name must have as prefix "config_" for config file inside CONFIG_PATH folder |
|
| 65 | - * for example "config_name_of_the_file_config.php" and contains as configuration variable the array $config, |
|
| 66 | - * otherwise the system can not find this configuration file. |
|
| 67 | - * For example : |
|
| 68 | - * |
|
| 69 | - * $config['key1'] = value1; |
|
| 70 | - * $config['key2'] = value2; |
|
| 71 | - * |
|
| 72 | - * Note 2: the files to be loaded must be in the folder defined by the constant "CONFIG_PATH" in "index.php". |
|
| 73 | - * or inside the "config" of your application modules |
|
| 74 | - */ |
|
| 55 | + * If you have configuration files to load automatically, then list them in the following array. |
|
| 56 | + * For example : |
|
| 57 | + * |
|
| 58 | + * $autoload['config'] = array('config1', 'config2'); |
|
| 59 | + * |
|
| 60 | + * Using module: |
|
| 61 | + * |
|
| 62 | + * $autoload['config'] = array('module1/config1', 'module2/config2'); |
|
| 63 | + * |
|
| 64 | + * Note 1: the file name must have as prefix "config_" for config file inside CONFIG_PATH folder |
|
| 65 | + * for example "config_name_of_the_file_config.php" and contains as configuration variable the array $config, |
|
| 66 | + * otherwise the system can not find this configuration file. |
|
| 67 | + * For example : |
|
| 68 | + * |
|
| 69 | + * $config['key1'] = value1; |
|
| 70 | + * $config['key2'] = value2; |
|
| 71 | + * |
|
| 72 | + * Note 2: the files to be loaded must be in the folder defined by the constant "CONFIG_PATH" in "index.php". |
|
| 73 | + * or inside the "config" of your application modules |
|
| 74 | + */ |
|
| 75 | 75 | $autoload['config'] = array(); |
| 76 | 76 | |
| 77 | 77 | /** |
| 78 | - * If you have models to load automatically, then list them in the following array. |
|
| 79 | - * For example : |
|
| 80 | - * |
|
| 81 | - * $autoload['models'] = array('model1', 'model2'); |
|
| 82 | - * |
|
| 83 | - * Using module: |
|
| 84 | - * |
|
| 85 | - * $autoload['models'] = array('module1/model1', 'module2/model2'); |
|
| 86 | - */ |
|
| 78 | + * If you have models to load automatically, then list them in the following array. |
|
| 79 | + * For example : |
|
| 80 | + * |
|
| 81 | + * $autoload['models'] = array('model1', 'model2'); |
|
| 82 | + * |
|
| 83 | + * Using module: |
|
| 84 | + * |
|
| 85 | + * $autoload['models'] = array('module1/model1', 'module2/model2'); |
|
| 86 | + */ |
|
| 87 | 87 | $autoload['models'] = array(); |
| 88 | 88 | |
| 89 | 89 | /** |
| 90 | - * If you have systems or personals functions to load automatically, specify them in the following array. |
|
| 91 | - * For example : |
|
| 92 | - * |
|
| 93 | - * $autoload['functions'] = array('function1', 'function2'); |
|
| 94 | - * |
|
| 95 | - * Using module: |
|
| 96 | - * |
|
| 97 | - * $autoload['functions'] = array('module1/function1', 'module2/function2'); |
|
| 98 | - * |
|
| 99 | - * Note 1: Personal functions have priority over system functions, |
|
| 100 | - * that is to say that the order of loading is the following : it looks in the directory of the modules functions, |
|
| 101 | - * if it is found, it is loaded, otherwise, it looks in the directory of the personal functions, |
|
| 102 | - * if it is found, it is loaded, otherwise, it looks in the directory of the system functions, |
|
| 103 | - * before returning an error in case he does not find it. |
|
| 104 | - * |
|
| 105 | - * Note 2: the file name must have as prefix "function_" for example "function_foo.php" then |
|
| 106 | - * will use: |
|
| 107 | - * |
|
| 108 | - * $autoload['functions'] = array('foo'); |
|
| 109 | - */ |
|
| 90 | + * If you have systems or personals functions to load automatically, specify them in the following array. |
|
| 91 | + * For example : |
|
| 92 | + * |
|
| 93 | + * $autoload['functions'] = array('function1', 'function2'); |
|
| 94 | + * |
|
| 95 | + * Using module: |
|
| 96 | + * |
|
| 97 | + * $autoload['functions'] = array('module1/function1', 'module2/function2'); |
|
| 98 | + * |
|
| 99 | + * Note 1: Personal functions have priority over system functions, |
|
| 100 | + * that is to say that the order of loading is the following : it looks in the directory of the modules functions, |
|
| 101 | + * if it is found, it is loaded, otherwise, it looks in the directory of the personal functions, |
|
| 102 | + * if it is found, it is loaded, otherwise, it looks in the directory of the system functions, |
|
| 103 | + * before returning an error in case he does not find it. |
|
| 104 | + * |
|
| 105 | + * Note 2: the file name must have as prefix "function_" for example "function_foo.php" then |
|
| 106 | + * will use: |
|
| 107 | + * |
|
| 108 | + * $autoload['functions'] = array('foo'); |
|
| 109 | + */ |
|
| 110 | 110 | $autoload['functions'] = array(); |
| 111 | 111 | |
| 112 | 112 | /** |
| 113 | - * If you have systems or personals languages to load automatically, specify them in the following array. |
|
| 114 | - * For example : |
|
| 115 | - * |
|
| 116 | - * $autoload['languages'] = array('lang1', 'lang2'); |
|
| 117 | - * |
|
| 118 | - * Using module: |
|
| 119 | - * |
|
| 120 | - * $autoload['languages'] = array('module1/lang1', 'module2/lang2'); |
|
| 121 | - * |
|
| 122 | - * Note: the file name must have as prefix "lang_" for example "lang_foo.php" then |
|
| 123 | - * will use: |
|
| 124 | - * |
|
| 125 | - * $autoload['languages'] = array('foo'); |
|
| 126 | - */ |
|
| 113 | + * If you have systems or personals languages to load automatically, specify them in the following array. |
|
| 114 | + * For example : |
|
| 115 | + * |
|
| 116 | + * $autoload['languages'] = array('lang1', 'lang2'); |
|
| 117 | + * |
|
| 118 | + * Using module: |
|
| 119 | + * |
|
| 120 | + * $autoload['languages'] = array('module1/lang1', 'module2/lang2'); |
|
| 121 | + * |
|
| 122 | + * Note: the file name must have as prefix "lang_" for example "lang_foo.php" then |
|
| 123 | + * will use: |
|
| 124 | + * |
|
| 125 | + * $autoload['languages'] = array('foo'); |
|
| 126 | + */ |
|
| 127 | 127 | $autoload['languages'] = array(); |
@@ -241,12 +241,12 @@ discard block |
||
| 241 | 241 | } |
| 242 | 242 | |
| 243 | 243 | /** |
| 244 | - * Setting the route configuration using the configuration file and additional configuration from param |
|
| 245 | - * @param array $overwriteConfig the additional configuration to overwrite with the existing one |
|
| 246 | - * @param boolean $useConfigFile whether to use route configuration file |
|
| 247 | - * |
|
| 248 | - * @return object |
|
| 249 | - */ |
|
| 244 | + * Setting the route configuration using the configuration file and additional configuration from param |
|
| 245 | + * @param array $overwriteConfig the additional configuration to overwrite with the existing one |
|
| 246 | + * @param boolean $useConfigFile whether to use route configuration file |
|
| 247 | + * |
|
| 248 | + * @return object |
|
| 249 | + */ |
|
| 250 | 250 | public function setRouteConfiguration(array $overwriteConfig = array(), $useConfigFile = true) { |
| 251 | 251 | $route = array(); |
| 252 | 252 | if ($useConfigFile && file_exists(CONFIG_PATH . 'routes.php')) { |
@@ -423,11 +423,11 @@ discard block |
||
| 423 | 423 | } |
| 424 | 424 | } |
| 425 | 425 | |
| 426 | - /** |
|
| 427 | - * Remove the URL suffix and query string values if exists |
|
| 428 | - * @param string $uri the route URI to process |
|
| 429 | - * @return string the final route uri after processed |
|
| 430 | - */ |
|
| 426 | + /** |
|
| 427 | + * Remove the URL suffix and query string values if exists |
|
| 428 | + * @param string $uri the route URI to process |
|
| 429 | + * @return string the final route uri after processed |
|
| 430 | + */ |
|
| 431 | 431 | protected function removeSuffixAndQueryStringFromUri($uri) { |
| 432 | 432 | $this->logger->debug('Check if URL suffix is enabled in the configuration'); |
| 433 | 433 | //remove url suffix from the request URI |
@@ -540,7 +540,7 @@ discard block |
||
| 540 | 540 | $this->logger->info( |
| 541 | 541 | 'After loop in predefined routes configuration,' |
| 542 | 542 | . 'the module name is set but the controller is not set,' |
| 543 | - . 'so we will use module as the controller' |
|
| 543 | + . 'so we will use module as the controller' |
|
| 544 | 544 | ); |
| 545 | 545 | $this->controller = $this->module; |
| 546 | 546 | } |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | $attributes['accept-charset'] = get_config('charset', 'UTF-8'); |
| 46 | 46 | } |
| 47 | 47 | if (!empty($enctype)) { |
| 48 | - $attributes['enctype'] = $enctype; |
|
| 48 | + $attributes['enctype'] = $enctype; |
|
| 49 | 49 | } |
| 50 | 50 | $str .= attributes_to_string($attributes); |
| 51 | 51 | $str .= '>'; |
@@ -29,8 +29,8 @@ |
||
| 29 | 29 | */ |
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | - * DB session handler model class |
|
| 33 | - */ |
|
| 32 | + * DB session handler model class |
|
| 33 | + */ |
|
| 34 | 34 | abstract class DBSessionHandlerModel extends Model { |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -30,10 +30,10 @@ discard block |
||
| 30 | 30 | |
| 31 | 31 | class DatabaseQueryBuilder { |
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * The DatabaseConnection instance |
|
| 35 | - * @var object |
|
| 36 | - */ |
|
| 33 | + /** |
|
| 34 | + * The DatabaseConnection instance |
|
| 35 | + * @var object |
|
| 36 | + */ |
|
| 37 | 37 | private $connection = null; |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -727,12 +727,12 @@ discard block |
||
| 727 | 727 | * |
| 728 | 728 | * @return string|null |
| 729 | 729 | */ |
| 730 | - protected function buildQueryPart($property, $command = ''){ |
|
| 730 | + protected function buildQueryPart($property, $command = ''){ |
|
| 731 | 731 | if (!empty($this->{$property})) { |
| 732 | 732 | return $command . $this->{$property}; |
| 733 | 733 | } |
| 734 | 734 | return null; |
| 735 | - } |
|
| 735 | + } |
|
| 736 | 736 | |
| 737 | 737 | |
| 738 | 738 | /** |
@@ -208,7 +208,7 @@ |
||
| 208 | 208 | //If is the SELECT query |
| 209 | 209 | $this->isSelectQuery = stristr($this->query, 'SELECT') !== false; |
| 210 | 210 | |
| 211 | - //if can use cache feature for this query |
|
| 211 | + //if can use cache feature for this query |
|
| 212 | 212 | $this->dbCacheStatus = get_config('cache_enable', false) && $this->cacheTtl > 0; |
| 213 | 213 | } |
| 214 | 214 | |
@@ -133,11 +133,11 @@ discard block |
||
| 133 | 133 | } |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | - /** |
|
| 137 | - * Reset the form validation instance |
|
| 138 | - * |
|
| 139 | - * @return object the current instance |
|
| 140 | - */ |
|
| 136 | + /** |
|
| 137 | + * Reset the form validation instance |
|
| 138 | + * |
|
| 139 | + * @return object the current instance |
|
| 140 | + */ |
|
| 141 | 141 | public function reset() { |
| 142 | 142 | $this->rules = array(); |
| 143 | 143 | $this->labels = array(); |
@@ -160,11 +160,11 @@ discard block |
||
| 160 | 160 | return $this; |
| 161 | 161 | } |
| 162 | 162 | |
| 163 | - /** |
|
| 164 | - * Return the validation data |
|
| 165 | - * |
|
| 166 | - * @return array the validation data |
|
| 167 | - */ |
|
| 163 | + /** |
|
| 164 | + * Return the validation data |
|
| 165 | + * |
|
| 166 | + * @return array the validation data |
|
| 167 | + */ |
|
| 168 | 168 | public function getData() { |
| 169 | 169 | return $this->data; |
| 170 | 170 | } |
@@ -213,11 +213,11 @@ discard block |
||
| 213 | 213 | return $this->rules; |
| 214 | 214 | } |
| 215 | 215 | |
| 216 | - /** |
|
| 217 | - * Return the list of the validations rules for the given field |
|
| 218 | - * |
|
| 219 | - * @return array |
|
| 220 | - */ |
|
| 216 | + /** |
|
| 217 | + * Return the list of the validations rules for the given field |
|
| 218 | + * |
|
| 219 | + * @return array |
|
| 220 | + */ |
|
| 221 | 221 | public function getFieldRules($field) { |
| 222 | 222 | $rules = array(); |
| 223 | 223 | if (array_key_exists($field, $this->rules)) { |
@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | * @return string|null |
| 234 | 234 | */ |
| 235 | 235 | public function getFieldValue($field) { |
| 236 | - $value = null; |
|
| 236 | + $value = null; |
|
| 237 | 237 | if (array_key_exists($field, $this->data)) { |
| 238 | 238 | $value = $this->data[$field]; |
| 239 | 239 | } |
@@ -255,15 +255,15 @@ discard block |
||
| 255 | 255 | } |
| 256 | 256 | |
| 257 | 257 | |
| 258 | - /** |
|
| 259 | - * Return the list of validation errors |
|
| 260 | - * |
|
| 261 | - * @return array the errors list. |
|
| 262 | - * Format: |
|
| 263 | - * [field1] => 'error message 1', |
|
| 264 | - * [field2] => 'error message 2' |
|
| 265 | - */ |
|
| 266 | - public function getErrors() { |
|
| 258 | + /** |
|
| 259 | + * Return the list of validation errors |
|
| 260 | + * |
|
| 261 | + * @return array the errors list. |
|
| 262 | + * Format: |
|
| 263 | + * [field1] => 'error message 1', |
|
| 264 | + * [field2] => 'error message 2' |
|
| 265 | + */ |
|
| 266 | + public function getErrors() { |
|
| 267 | 267 | return $this->errors; |
| 268 | 268 | } |
| 269 | 269 | |
@@ -346,11 +346,11 @@ discard block |
||
| 346 | 346 | return $this; |
| 347 | 347 | } |
| 348 | 348 | |
| 349 | - /** |
|
| 350 | - * Set the database instance using get_instance() if is null |
|
| 351 | - * |
|
| 352 | - * @return object the current instance |
|
| 353 | - */ |
|
| 349 | + /** |
|
| 350 | + * Set the database instance using get_instance() if is null |
|
| 351 | + * |
|
| 352 | + * @return object the current instance |
|
| 353 | + */ |
|
| 354 | 354 | protected function setDatabaseFromSuperInstanceIfNotSet() { |
| 355 | 355 | if (!is_object($this->database)) { |
| 356 | 356 | $this->database = get_instance()->database; |
@@ -387,7 +387,7 @@ discard block |
||
| 387 | 387 | * @param string|null $field2 the second field used in some validation rule like "matches", "not_equal" |
| 388 | 388 | * |
| 389 | 389 | */ |
| 390 | - protected function setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue = null, $field2 = null) { |
|
| 390 | + protected function setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue = null, $field2 = null) { |
|
| 391 | 391 | //if the field is not required and his value is not set don't set error |
| 392 | 392 | //but in case the field have value validate it |
| 393 | 393 | if (!$this->fieldIsRequired($field) && strlen($value) <= 0) { |
@@ -413,9 +413,9 @@ discard block |
||
| 413 | 413 | * @return string the name of the validation method |
| 414 | 414 | */ |
| 415 | 415 | protected function getRuleValidationMethod($rule) { |
| 416 | - $parts = explode('_', $rule); |
|
| 417 | - $parts = array_map('ucfirst', $parts); |
|
| 418 | - return 'checkRule' . implode('', $parts); |
|
| 416 | + $parts = explode('_', $rule); |
|
| 417 | + $parts = array_map('ucfirst', $parts); |
|
| 418 | + return 'checkRule' . implode('', $parts); |
|
| 419 | 419 | } |
| 420 | 420 | |
| 421 | 421 | /** |
@@ -426,7 +426,7 @@ discard block |
||
| 426 | 426 | protected function filterValidationData() { |
| 427 | 427 | foreach ($this->data as $key => $value ) { |
| 428 | 428 | if (is_array($value)) { |
| 429 | - $this->data[$key] = array_map('trim', $value); |
|
| 429 | + $this->data[$key] = array_map('trim', $value); |
|
| 430 | 430 | } else { |
| 431 | 431 | $this->data[$key] = trim($value); |
| 432 | 432 | } |
@@ -473,7 +473,7 @@ discard block |
||
| 473 | 473 | $template['field2}'] = $field2; |
| 474 | 474 | $template['{value2}'] = $this->getFieldValue($field2); |
| 475 | 475 | $template['{label2}'] = $this->getFieldLabel($field2); |
| 476 | - } |
|
| 476 | + } |
|
| 477 | 477 | $message = $this->messages[$rule]; |
| 478 | 478 | //Check for custom message |
| 479 | 479 | if (isset($this->customErrors[$field][$rule])) { |
@@ -504,7 +504,7 @@ discard block |
||
| 504 | 504 | //Get the name of the method to validate this rule |
| 505 | 505 | $method = $this->getRuleValidationMethod($realRuleName); |
| 506 | 506 | if (method_exists($this, $method)) { |
| 507 | - call_user_func_array(array($this, $method), array($field, $realRuleName, $paramValue)); |
|
| 507 | + call_user_func_array(array($this, $method), array($field, $realRuleName, $paramValue)); |
|
| 508 | 508 | } else { |
| 509 | 509 | $this->forceError = true; |
| 510 | 510 | show_error('Invalid validaton rule "' . $realRuleName . '"'); |
@@ -597,7 +597,7 @@ discard block |
||
| 597 | 597 | * @param string|null $paramValue the rule parameter |
| 598 | 598 | */ |
| 599 | 599 | protected function checkRuleMinLength($field, $rule, $paramValue) { |
| 600 | - $value = $this->getFieldValue($field); |
|
| 600 | + $value = $this->getFieldValue($field); |
|
| 601 | 601 | if (strlen($value) < $paramValue) { |
| 602 | 602 | $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
| 603 | 603 | } |
@@ -611,7 +611,7 @@ discard block |
||
| 611 | 611 | * @param string|null $paramValue the rule parameter |
| 612 | 612 | */ |
| 613 | 613 | protected function checkRuleMaxLength($field, $rule, $paramValue) { |
| 614 | - $value = $this->getFieldValue($field); |
|
| 614 | + $value = $this->getFieldValue($field); |
|
| 615 | 615 | if (strlen($value) > $paramValue) { |
| 616 | 616 | $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
| 617 | 617 | } |
@@ -625,7 +625,7 @@ discard block |
||
| 625 | 625 | * @param string|null $paramValue the rule parameter |
| 626 | 626 | */ |
| 627 | 627 | protected function checkRuleExactLength($field, $rule, $paramValue) { |
| 628 | - $value = $this->getFieldValue($field); |
|
| 628 | + $value = $this->getFieldValue($field); |
|
| 629 | 629 | if (strlen($value) != $paramValue) { |
| 630 | 630 | $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
| 631 | 631 | } |
@@ -732,7 +732,7 @@ discard block |
||
| 732 | 732 | protected function checkRuleNumeric($field, $rule, $paramValue) { |
| 733 | 733 | $value = $this->getFieldValue($field); |
| 734 | 734 | if (!is_numeric($value)) { |
| 735 | - $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
|
| 735 | + $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
|
| 736 | 736 | } |
| 737 | 737 | } |
| 738 | 738 | |
@@ -746,7 +746,7 @@ discard block |
||
| 746 | 746 | protected function checkRuleInteger($field, $rule, $paramValue) { |
| 747 | 747 | $value = $this->getFieldValue($field); |
| 748 | 748 | if (filter_var($value, FILTER_VALIDATE_INT) === false) { |
| 749 | - $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
|
| 749 | + $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
|
| 750 | 750 | } |
| 751 | 751 | } |
| 752 | 752 | |
@@ -760,7 +760,7 @@ discard block |
||
| 760 | 760 | protected function checkRuleIntegerNatural($field, $rule, $paramValue) { |
| 761 | 761 | $value = $this->getFieldValue($field); |
| 762 | 762 | if (filter_var($value, FILTER_VALIDATE_INT) === false || $value < 0) { |
| 763 | - $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
|
| 763 | + $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
|
| 764 | 764 | } |
| 765 | 765 | } |
| 766 | 766 | |
@@ -847,7 +847,7 @@ discard block |
||
| 847 | 847 | $format = $paramValue; |
| 848 | 848 | $dateValue = date_create_from_format($format, $value); |
| 849 | 849 | if ($dateValue === false || $dateValue->format($format) !== $value) { |
| 850 | - $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
|
| 850 | + $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
|
| 851 | 851 | } |
| 852 | 852 | } |
| 853 | 853 | |
@@ -891,7 +891,7 @@ discard block |
||
| 891 | 891 | protected function checkRuleUrl($field, $rule, $paramValue) { |
| 892 | 892 | $value = $this->getFieldValue($field); |
| 893 | 893 | if (filter_var($value, FILTER_VALIDATE_URL) === false) { |
| 894 | - $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
|
| 894 | + $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
|
| 895 | 895 | } |
| 896 | 896 | } |
| 897 | 897 | |
@@ -906,7 +906,7 @@ discard block |
||
| 906 | 906 | protected function checkRuleIp($field, $rule, $paramValue) { |
| 907 | 907 | $value = $this->getFieldValue($field); |
| 908 | 908 | if (filter_var($value, FILTER_VALIDATE_IP) === false) { |
| 909 | - $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
|
| 909 | + $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
|
| 910 | 910 | } |
| 911 | 911 | } |
| 912 | 912 | |
@@ -951,7 +951,7 @@ discard block |
||
| 951 | 951 | $value = $this->getFieldValue($field); |
| 952 | 952 | list($table, $column) = explode('.', $paramValue); |
| 953 | 953 | $this->database->getQueryBuilder()->from($table) |
| 954 | - ->where($column, $value); |
|
| 954 | + ->where($column, $value); |
|
| 955 | 955 | $this->database->get(); |
| 956 | 956 | if ($this->database->numRows() > 0) { |
| 957 | 957 | $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
@@ -973,8 +973,8 @@ discard block |
||
| 973 | 973 | list($table, $column) = explode('.', $data[0]); |
| 974 | 974 | list($columnKey, $valueKey) = explode('=', $data[1]); |
| 975 | 975 | $this->database->getQueryBuilder()->from($table) |
| 976 | - ->where($column, $value) |
|
| 977 | - ->where($columnKey, '!=', trim($valueKey)); |
|
| 976 | + ->where($column, $value) |
|
| 977 | + ->where($columnKey, '!=', trim($valueKey)); |
|
| 978 | 978 | $this->database->get(); |
| 979 | 979 | if ($this->database->numRows() > 0) { |
| 980 | 980 | $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
@@ -994,7 +994,7 @@ discard block |
||
| 994 | 994 | $value = $this->getFieldValue($field); |
| 995 | 995 | list($table, $column) = explode('.', $paramValue); |
| 996 | 996 | $this->database->getQueryBuilder()->from($table) |
| 997 | - ->where($column, $value); |
|
| 997 | + ->where($column, $value); |
|
| 998 | 998 | $this->database->get(); |
| 999 | 999 | if ($this->database->numRows() <= 0) { |
| 1000 | 1000 | $this->setFieldErrorWithRequiredCheck($field, $value, $rule, $paramValue); |
@@ -234,10 +234,10 @@ discard block |
||
| 234 | 234 | return $this->removeVars($_ENV, $key); |
| 235 | 235 | } |
| 236 | 236 | |
| 237 | - /** |
|
| 238 | - * Get the value from $GLOBALS for given key. if the key is empty will return all values |
|
| 239 | - * @see GlobalVar::getVars |
|
| 240 | - */ |
|
| 237 | + /** |
|
| 238 | + * Get the value from $GLOBALS for given key. if the key is empty will return all values |
|
| 239 | + * @see GlobalVar::getVars |
|
| 240 | + */ |
|
| 241 | 241 | public function globals($key = null, $xss = true) { |
| 242 | 242 | return $this->getVars($GLOBALS, $key, $xss); |
| 243 | 243 | } |
@@ -259,16 +259,16 @@ discard block |
||
| 259 | 259 | } |
| 260 | 260 | |
| 261 | 261 | |
| 262 | - /** |
|
| 263 | - * Set the value for $_GET, $_POST, $_SERVER etc. if the key is an array will |
|
| 264 | - * set the current super variable value by this. |
|
| 265 | - * @param array $var the super global variable to use, can be "$_POST", "$_GET", etc. |
|
| 266 | - * @param string|array $key the item key to be set or array if need set the current global variable |
|
| 267 | - * by this value |
|
| 268 | - * @param mixed $value the value to set if $key is not an array |
|
| 269 | - * |
|
| 270 | - * @return object the current instance |
|
| 271 | - */ |
|
| 262 | + /** |
|
| 263 | + * Set the value for $_GET, $_POST, $_SERVER etc. if the key is an array will |
|
| 264 | + * set the current super variable value by this. |
|
| 265 | + * @param array $var the super global variable to use, can be "$_POST", "$_GET", etc. |
|
| 266 | + * @param string|array $key the item key to be set or array if need set the current global variable |
|
| 267 | + * by this value |
|
| 268 | + * @param mixed $value the value to set if $key is not an array |
|
| 269 | + * |
|
| 270 | + * @return object the current instance |
|
| 271 | + */ |
|
| 272 | 272 | protected function setVars(&$var, $key, $value = null) { |
| 273 | 273 | if (is_array($key)) { |
| 274 | 274 | //set all |