@@ -364,7 +364,7 @@ |
||
| 364 | 364 | if (stristr($this->_agent, 'FacebookExternalHit')) { |
| 365 | 365 | $this->setRobot(true); |
| 366 | 366 | $this->setFacebook(true); |
| 367 | - } else if (stristr($this->_agent, 'FBIOS')) { |
|
| 367 | + } else if (stristr($this->_agent, 'FBIOS')) { |
|
| 368 | 368 | $this->setFacebook(true); |
| 369 | 369 | } |
| 370 | 370 | } |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | - defined('ROOT_PATH') || exit('Access denied'); |
|
| 2 | + defined('ROOT_PATH') || exit('Access denied'); |
|
| 3 | 3 | /** |
| 4 | 4 | * TNH Framework |
| 5 | 5 | * |
@@ -28,68 +28,68 @@ discard block |
||
| 28 | 28 | * SOFTWARE. |
| 29 | 29 | */ |
| 30 | 30 | |
| 31 | - class Browser { |
|
| 32 | - |
|
| 33 | - /** |
|
| 34 | - * List of know platforms |
|
| 35 | - * @var array |
|
| 36 | - */ |
|
| 37 | - private $_platforms = array( |
|
| 38 | - '/windows nt 10/i' => 'Windows 10', |
|
| 39 | - '/windows phone 10/i' => 'Windows Phone 10', |
|
| 40 | - '/windows phone 8.1/i' => 'Windows Phone 8.1', |
|
| 41 | - '/windows phone 8/i' => 'Windows Phone 8', |
|
| 42 | - '/windows nt 6.3/i' => 'Windows 8.1', |
|
| 43 | - '/windows nt 6.2/i' => 'Windows 8', |
|
| 44 | - '/windows nt 6.1/i' => 'Windows 7', |
|
| 45 | - '/windows nt 6.0/i' => 'Windows Vista', |
|
| 46 | - '/windows nt 5.2/i' => 'Windows Server 2003/XP x64', |
|
| 47 | - '/windows nt 5.1/i' => 'Windows XP', |
|
| 48 | - '/windows xp/i' => 'Windows XP', |
|
| 49 | - '/windows nt 5.0/i' => 'Windows 2000', |
|
| 50 | - '/windows me/i' => 'Windows ME', |
|
| 51 | - '/win98/i' => 'Windows 98', |
|
| 52 | - '/win95/i' => 'Windows 95', |
|
| 53 | - '/win16/i' => 'Windows 3.11', |
|
| 54 | - '/ipad/i' => 'iPad', |
|
| 31 | + class Browser { |
|
| 32 | + |
|
| 33 | + /** |
|
| 34 | + * List of know platforms |
|
| 35 | + * @var array |
|
| 36 | + */ |
|
| 37 | + private $_platforms = array( |
|
| 38 | + '/windows nt 10/i' => 'Windows 10', |
|
| 39 | + '/windows phone 10/i' => 'Windows Phone 10', |
|
| 40 | + '/windows phone 8.1/i' => 'Windows Phone 8.1', |
|
| 41 | + '/windows phone 8/i' => 'Windows Phone 8', |
|
| 42 | + '/windows nt 6.3/i' => 'Windows 8.1', |
|
| 43 | + '/windows nt 6.2/i' => 'Windows 8', |
|
| 44 | + '/windows nt 6.1/i' => 'Windows 7', |
|
| 45 | + '/windows nt 6.0/i' => 'Windows Vista', |
|
| 46 | + '/windows nt 5.2/i' => 'Windows Server 2003/XP x64', |
|
| 47 | + '/windows nt 5.1/i' => 'Windows XP', |
|
| 48 | + '/windows xp/i' => 'Windows XP', |
|
| 49 | + '/windows nt 5.0/i' => 'Windows 2000', |
|
| 50 | + '/windows me/i' => 'Windows ME', |
|
| 51 | + '/win98/i' => 'Windows 98', |
|
| 52 | + '/win95/i' => 'Windows 95', |
|
| 53 | + '/win16/i' => 'Windows 3.11', |
|
| 54 | + '/ipad/i' => 'iPad', |
|
| 55 | 55 | '/ipod/i' => 'iPod', |
| 56 | 56 | '/iphone/i' => 'iPhone', |
| 57 | 57 | '/macintosh|mac os x/i' => 'Mac OS X', |
| 58 | - '/mac_powerpc/i' => 'Mac OS 9', |
|
| 59 | - '/android/i' => 'Android', |
|
| 60 | - '/ubuntu/i' => 'Ubuntu', |
|
| 61 | - '/linux/i' => 'Linux', |
|
| 62 | - '/blackberry/i' => 'BlackBerry', |
|
| 63 | - '/webos/i' => 'Mobile' |
|
| 64 | - ); |
|
| 65 | - |
|
| 66 | - /** |
|
| 67 | - * List of know browsers |
|
| 68 | - * @var array |
|
| 69 | - */ |
|
| 70 | - private $_browsers = array( |
|
| 71 | - '/mobile/i' => 'Handheld Browser', |
|
| 72 | - '/msie/i' => 'Internet Explorer', |
|
| 73 | - '/firefox/i' => 'Firefox', |
|
| 74 | - '/chrome/i' => 'Chrome', |
|
| 75 | - '/safari/i' => 'Safari', |
|
| 76 | - '/edge/i' => 'Edge', |
|
| 77 | - '/opera/i' => 'Opera', |
|
| 78 | - '/netscape/i' => 'Netscape', |
|
| 79 | - '/maxthon/i' => 'Maxthon', |
|
| 80 | - '/konqueror/i' => 'Konqueror' |
|
| 81 | - ); |
|
| 82 | - |
|
| 83 | - /** |
|
| 84 | - * Agent string |
|
| 85 | - * @var string |
|
| 86 | - */ |
|
| 87 | - private $_agent = ''; |
|
| 88 | - |
|
| 89 | - /** |
|
| 90 | - * Browser name |
|
| 91 | - * @var string |
|
| 92 | - */ |
|
| 58 | + '/mac_powerpc/i' => 'Mac OS 9', |
|
| 59 | + '/android/i' => 'Android', |
|
| 60 | + '/ubuntu/i' => 'Ubuntu', |
|
| 61 | + '/linux/i' => 'Linux', |
|
| 62 | + '/blackberry/i' => 'BlackBerry', |
|
| 63 | + '/webos/i' => 'Mobile' |
|
| 64 | + ); |
|
| 65 | + |
|
| 66 | + /** |
|
| 67 | + * List of know browsers |
|
| 68 | + * @var array |
|
| 69 | + */ |
|
| 70 | + private $_browsers = array( |
|
| 71 | + '/mobile/i' => 'Handheld Browser', |
|
| 72 | + '/msie/i' => 'Internet Explorer', |
|
| 73 | + '/firefox/i' => 'Firefox', |
|
| 74 | + '/chrome/i' => 'Chrome', |
|
| 75 | + '/safari/i' => 'Safari', |
|
| 76 | + '/edge/i' => 'Edge', |
|
| 77 | + '/opera/i' => 'Opera', |
|
| 78 | + '/netscape/i' => 'Netscape', |
|
| 79 | + '/maxthon/i' => 'Maxthon', |
|
| 80 | + '/konqueror/i' => 'Konqueror' |
|
| 81 | + ); |
|
| 82 | + |
|
| 83 | + /** |
|
| 84 | + * Agent string |
|
| 85 | + * @var string |
|
| 86 | + */ |
|
| 87 | + private $_agent = ''; |
|
| 88 | + |
|
| 89 | + /** |
|
| 90 | + * Browser name |
|
| 91 | + * @var string |
|
| 92 | + */ |
|
| 93 | 93 | private $_browser_name = ''; |
| 94 | 94 | |
| 95 | 95 | /** |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | */ |
| 129 | 129 | private $_is_facebook = false; |
| 130 | 130 | |
| 131 | - /** |
|
| 131 | + /** |
|
| 132 | 132 | * Class constructor |
| 133 | 133 | */ |
| 134 | 134 | public function __construct($userAgent = '') { |
@@ -255,12 +255,12 @@ discard block |
||
| 255 | 255 | return $this->_is_facebook; |
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - /** |
|
| 259 | - * Returns a formatted string with a summary of the details of the browser. |
|
| 260 | - * @codeCoverageIgnore |
|
| 261 | - * |
|
| 262 | - * @return string formatted string with a summary of the browser |
|
| 263 | - */ |
|
| 258 | + /** |
|
| 259 | + * Returns a formatted string with a summary of the details of the browser. |
|
| 260 | + * @codeCoverageIgnore |
|
| 261 | + * |
|
| 262 | + * @return string formatted string with a summary of the browser |
|
| 263 | + */ |
|
| 264 | 264 | public function __toString() { |
| 265 | 265 | return "<strong>Browser Name:</strong> {$this->getBrowser()}<br/>\n" . |
| 266 | 266 | "<strong>Browser Version:</strong> {$this->getVersion()}<br/>\n" . |
@@ -304,69 +304,69 @@ discard block |
||
| 304 | 304 | /** |
| 305 | 305 | * Determine the user's platform |
| 306 | 306 | */ |
| 307 | - protected function checkPlatform() { |
|
| 308 | - foreach ($this->_platforms as $regex => $value) { |
|
| 309 | - if (preg_match($regex, $this->_agent) ) { |
|
| 310 | - $this->setPlatform($value); |
|
| 311 | - break; |
|
| 312 | - } |
|
| 313 | - } |
|
| 314 | - } |
|
| 307 | + protected function checkPlatform() { |
|
| 308 | + foreach ($this->_platforms as $regex => $value) { |
|
| 309 | + if (preg_match($regex, $this->_agent) ) { |
|
| 310 | + $this->setPlatform($value); |
|
| 311 | + break; |
|
| 312 | + } |
|
| 313 | + } |
|
| 314 | + } |
|
| 315 | 315 | |
| 316 | - /** |
|
| 316 | + /** |
|
| 317 | 317 | * Routine to determine the browser type |
| 318 | 318 | */ |
| 319 | - protected function checkBrowser() { |
|
| 320 | - foreach ($this->_browsers as $regex => $value) { |
|
| 321 | - if (preg_match($regex, $this->_agent ) ) { |
|
| 322 | - $this->setBrowser($value); |
|
| 323 | - break; |
|
| 324 | - } |
|
| 325 | - } |
|
| 326 | - } |
|
| 319 | + protected function checkBrowser() { |
|
| 320 | + foreach ($this->_browsers as $regex => $value) { |
|
| 321 | + if (preg_match($regex, $this->_agent ) ) { |
|
| 322 | + $this->setBrowser($value); |
|
| 323 | + break; |
|
| 324 | + } |
|
| 325 | + } |
|
| 326 | + } |
|
| 327 | 327 | |
| 328 | - /** |
|
| 328 | + /** |
|
| 329 | 329 | * Routine to determine the browser version |
| 330 | 330 | */ |
| 331 | - protected function checkBrowserVersion(){ |
|
| 332 | - $detected = $this->getBrowser(); |
|
| 333 | - $d = array_search($detected, $this->_browsers); |
|
| 334 | - $browser = str_replace(array("/i","/"), "", $d); |
|
| 335 | - $regex = "/(?<browser>version|{$browser})[\/]+(?<version>[0-9.|a-zA-Z.]*)/i"; |
|
| 336 | - if (preg_match_all($regex, $this->_agent, $matches)) { |
|
| 337 | - $found = array_search($browser, $matches["browser"]); |
|
| 338 | - $this->setVersion($matches["version"][$found]); |
|
| 339 | - } |
|
| 340 | - } |
|
| 341 | - |
|
| 342 | - /** |
|
| 331 | + protected function checkBrowserVersion(){ |
|
| 332 | + $detected = $this->getBrowser(); |
|
| 333 | + $d = array_search($detected, $this->_browsers); |
|
| 334 | + $browser = str_replace(array("/i","/"), "", $d); |
|
| 335 | + $regex = "/(?<browser>version|{$browser})[\/]+(?<version>[0-9.|a-zA-Z.]*)/i"; |
|
| 336 | + if (preg_match_all($regex, $this->_agent, $matches)) { |
|
| 337 | + $found = array_search($browser, $matches["browser"]); |
|
| 338 | + $this->setVersion($matches["version"][$found]); |
|
| 339 | + } |
|
| 340 | + } |
|
| 341 | + |
|
| 342 | + /** |
|
| 343 | 343 | * Determine if the browser is Mobile or not |
| 344 | 344 | */ |
| 345 | - protected function checkMobile() { |
|
| 346 | - if (preg_match('/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i', $this->_agent) ) { |
|
| 347 | - $this->setMobile(true); |
|
| 348 | - } |
|
| 349 | - } |
|
| 345 | + protected function checkMobile() { |
|
| 346 | + if (preg_match('/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i', $this->_agent) ) { |
|
| 347 | + $this->setMobile(true); |
|
| 348 | + } |
|
| 349 | + } |
|
| 350 | 350 | |
| 351 | - /** |
|
| 351 | + /** |
|
| 352 | 352 | * Determine if the browser is Tablet or not |
| 353 | 353 | */ |
| 354 | - protected function checkTablet() { |
|
| 355 | - if (preg_match('/tablet|ipad/i', $this->_agent) ) { |
|
| 356 | - $this->setTablet(true); |
|
| 357 | - } |
|
| 358 | - } |
|
| 354 | + protected function checkTablet() { |
|
| 355 | + if (preg_match('/tablet|ipad/i', $this->_agent) ) { |
|
| 356 | + $this->setTablet(true); |
|
| 357 | + } |
|
| 358 | + } |
|
| 359 | 359 | |
| 360 | - /** |
|
| 360 | + /** |
|
| 361 | 361 | * Determine if the browser is Robot or not |
| 362 | 362 | */ |
| 363 | - protected function checkBot() { |
|
| 364 | - if (preg_match('/bot/i', $this->_agent) ) { |
|
| 365 | - $this->setRobot(true); |
|
| 366 | - } |
|
| 367 | - } |
|
| 363 | + protected function checkBot() { |
|
| 364 | + if (preg_match('/bot/i', $this->_agent) ) { |
|
| 365 | + $this->setRobot(true); |
|
| 366 | + } |
|
| 367 | + } |
|
| 368 | 368 | |
| 369 | - /** |
|
| 369 | + /** |
|
| 370 | 370 | * Detect if URL is loaded from FacebookExternalHit |
| 371 | 371 | */ |
| 372 | 372 | protected function checkFacebook() { |
@@ -379,10 +379,10 @@ discard block |
||
| 379 | 379 | } |
| 380 | 380 | |
| 381 | 381 | |
| 382 | - /** |
|
| 383 | - * Protected routine to calculate and determine what |
|
| 384 | - * the browser is in use (including platform) |
|
| 385 | - */ |
|
| 382 | + /** |
|
| 383 | + * Protected routine to calculate and determine what |
|
| 384 | + * the browser is in use (including platform) |
|
| 385 | + */ |
|
| 386 | 386 | protected function determine() { |
| 387 | 387 | $this->checkPlatform(); |
| 388 | 388 | $this->checkBrowser(); |
@@ -393,4 +393,4 @@ discard block |
||
| 393 | 393 | $this->checkFacebook(); |
| 394 | 394 | } |
| 395 | 395 | |
| 396 | - } |
|
| 396 | + } |
|
@@ -746,22 +746,22 @@ discard block |
||
| 746 | 746 | return $this->loaderInstance; |
| 747 | 747 | } |
| 748 | 748 | |
| 749 | - /** |
|
| 750 | - * Get the return type array or object |
|
| 751 | - * @return string|boolean |
|
| 752 | - */ |
|
| 749 | + /** |
|
| 750 | + * Get the return type array or object |
|
| 751 | + * @return string|boolean |
|
| 752 | + */ |
|
| 753 | 753 | protected function getReturnType(){ |
| 754 | 754 | $type = false; |
| 755 | 755 | if ($this->_temporary_return_type == 'array') { |
| 756 | - $type = 'array'; |
|
| 756 | + $type = 'array'; |
|
| 757 | 757 | } |
| 758 | 758 | return $type; |
| 759 | 759 | } |
| 760 | 760 | |
| 761 | - /** |
|
| 762 | - * Check if soft delete is enable setting the condition |
|
| 763 | - * @return object the current instance |
|
| 764 | - */ |
|
| 761 | + /** |
|
| 762 | + * Check if soft delete is enable setting the condition |
|
| 763 | + * @return object the current instance |
|
| 764 | + */ |
|
| 765 | 765 | protected function checkForSoftDelete(){ |
| 766 | 766 | if ($this->soft_delete && $this->_temporary_with_deleted !== true) { |
| 767 | 767 | $this->getQueryBuilder()->where($this->soft_delete_key, (bool) $this->_temporary_only_deleted); |
@@ -769,14 +769,14 @@ discard block |
||
| 769 | 769 | return $this; |
| 770 | 770 | } |
| 771 | 771 | |
| 772 | - /** |
|
| 773 | - * Relate for "belongs_to" and "has_many" |
|
| 774 | - * @param string $relationship the name of relation |
|
| 775 | - * @param string|array $options the model and primary key values |
|
| 776 | - * @param object|array $row the row to update |
|
| 777 | - * @param string $type the type can be "belongs_to", "has_many" |
|
| 778 | - * @return mixed the final row values |
|
| 779 | - */ |
|
| 772 | + /** |
|
| 773 | + * Relate for "belongs_to" and "has_many" |
|
| 774 | + * @param string $relationship the name of relation |
|
| 775 | + * @param string|array $options the model and primary key values |
|
| 776 | + * @param object|array $row the row to update |
|
| 777 | + * @param string $type the type can be "belongs_to", "has_many" |
|
| 778 | + * @return mixed the final row values |
|
| 779 | + */ |
|
| 780 | 780 | protected function relateBelongsToAndHasMany($relationship, $options, $row, $type){ |
| 781 | 781 | if (in_array($relationship, $this->_with)) { |
| 782 | 782 | $loaderInstance = $this->getLoaderInstanceOrCreate(); |
@@ -315,7 +315,7 @@ |
||
| 315 | 315 | protected static function getDefaultFilePathForFunctionLanguage($file, $type, $appLang = null){ |
| 316 | 316 | $searchDir = null; |
| 317 | 317 | if ($type == 'function') { |
| 318 | - $searchDir = array(FUNCTIONS_PATH, CORE_FUNCTIONS_PATH); |
|
| 318 | + $searchDir = array(FUNCTIONS_PATH, CORE_FUNCTIONS_PATH); |
|
| 319 | 319 | } |
| 320 | 320 | else if ($type == 'language') { |
| 321 | 321 | $searchDir = array(APP_LANG_PATH, CORE_LANG_PATH); |
@@ -316,8 +316,7 @@ |
||
| 316 | 316 | $searchDir = null; |
| 317 | 317 | if ($type == 'function') { |
| 318 | 318 | $searchDir = array(FUNCTIONS_PATH, CORE_FUNCTIONS_PATH); |
| 319 | - } |
|
| 320 | - else if ($type == 'language') { |
|
| 319 | + } else if ($type == 'language') { |
|
| 321 | 320 | $searchDir = array(APP_LANG_PATH, CORE_LANG_PATH); |
| 322 | 321 | $file = $appLang . DS . $file; |
| 323 | 322 | } |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | self::$logger = $logger[0]; |
| 45 | 45 | } |
| 46 | 46 | if ($setLoggerName) { |
| 47 | - self::$logger->setLogger('Class::' . get_called_class()); |
|
| 47 | + self::$logger->setLogger('Class::' . get_called_class()); |
|
| 48 | 48 | } |
| 49 | 49 | return self::$logger; |
| 50 | 50 | } |
@@ -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 | /** |
@@ -160,15 +160,15 @@ |
||
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | /** |
| 163 | - * Return the server port using variable |
|
| 164 | - * |
|
| 165 | - * @codeCoverageIgnore |
|
| 166 | - * @return string |
|
| 167 | - */ |
|
| 163 | + * Return the server port using variable |
|
| 164 | + * |
|
| 165 | + * @codeCoverageIgnore |
|
| 166 | + * @return string |
|
| 167 | + */ |
|
| 168 | 168 | protected static function getServerPort() { |
| 169 | 169 | $serverPort = 80; |
| 170 | 170 | if (isset($_SERVER['SERVER_PORT'])) { |
| 171 | - $serverPort = $_SERVER['SERVER_PORT']; |
|
| 171 | + $serverPort = $_SERVER['SERVER_PORT']; |
|
| 172 | 172 | } |
| 173 | 173 | $port = ''; |
| 174 | 174 | if ((is_https() && $serverPort != 443) || (!is_https() && $serverPort != 80)) { |
@@ -282,7 +282,7 @@ discard block |
||
| 282 | 282 | } |
| 283 | 283 | $filename = $this->encodeUtf8($this->filterOther((string) $filename)); |
| 284 | 284 | if (empty($data)) { |
| 285 | - $data = $this->getAttachmentData($path); |
|
| 285 | + $data = $this->getAttachmentData($path); |
|
| 286 | 286 | } |
| 287 | 287 | $this->_attachments[] = array( |
| 288 | 288 | 'path' => $path, |
@@ -346,7 +346,7 @@ discard block |
||
| 346 | 346 | $addresses = array(); |
| 347 | 347 | foreach ($pairs as $name => $email) { |
| 348 | 348 | if (is_numeric($name)) { |
| 349 | - $name = null; |
|
| 349 | + $name = null; |
|
| 350 | 350 | } |
| 351 | 351 | $addresses[] = $this->formatHeader($email, $name); |
| 352 | 352 | } |
@@ -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(); |
@@ -262,24 +262,24 @@ |
||
| 262 | 262 | return $this; |
| 263 | 263 | } |
| 264 | 264 | |
| 265 | - /** |
|
| 266 | - * Return the instance of session. |
|
| 267 | - * @return object the session instance |
|
| 268 | - */ |
|
| 265 | + /** |
|
| 266 | + * Return the instance of session. |
|
| 267 | + * @return object the session instance |
|
| 268 | + */ |
|
| 269 | 269 | public function getSession() { |
| 270 | 270 | return $this->session; |
| 271 | 271 | } |
| 272 | 272 | |
| 273 | - /** |
|
| 274 | - * Set the value for $_GET, $_POST, $_SERVER etc. if the key is an array will |
|
| 275 | - * set the current super variable value by this. |
|
| 276 | - * @param string $type the type can be "post", "get", etc. |
|
| 277 | - * @param string|array $key the item key to be set or array if need set the current global variable |
|
| 278 | - * by this value |
|
| 279 | - * @param mixed $value the value to set if $key is not an array |
|
| 280 | - * |
|
| 281 | - * @return object the current instance |
|
| 282 | - */ |
|
| 273 | + /** |
|
| 274 | + * Set the value for $_GET, $_POST, $_SERVER etc. if the key is an array will |
|
| 275 | + * set the current super variable value by this. |
|
| 276 | + * @param string $type the type can be "post", "get", etc. |
|
| 277 | + * @param string|array $key the item key to be set or array if need set the current global variable |
|
| 278 | + * by this value |
|
| 279 | + * @param mixed $value the value to set if $key is not an array |
|
| 280 | + * |
|
| 281 | + * @return object the current instance |
|
| 282 | + */ |
|
| 283 | 283 | protected function setVars($type, $key, $value = null) { |
| 284 | 284 | if (is_array($key)) { |
| 285 | 285 | //set all |