@@ -14,8 +14,8 @@ |
||
| 14 | 14 | /** |
| 15 | 15 | * This cron script recompiles the Browscap cache |
| 16 | 16 | */ |
| 17 | -ini_set('memory_limit','-1'); // turn off memory limit for this script |
|
| 18 | -set_time_limit(120); // change to 2 minutes for this script |
|
| 17 | +ini_set('memory_limit', '-1'); // turn off memory limit for this script |
|
| 18 | +set_time_limit(120); // change to 2 minutes for this script |
|
| 19 | 19 | |
| 20 | 20 | require('vendor/autoload.php'); |
| 21 | 21 | |
@@ -9,17 +9,17 @@ discard block |
||
| 9 | 9 | * @license http://www.apache.org/licenses/ Apache 2.0 License |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -spl_autoload_register(function ($class) { |
|
| 12 | +spl_autoload_register(function($class) { |
|
| 13 | 13 | |
| 14 | 14 | // project-specific namespace prefix |
| 15 | 15 | $prefix = 'Flipside\\'; |
| 16 | 16 | |
| 17 | 17 | // base directory for the namespace prefix |
| 18 | - $base_dir = __DIR__ . '/'; |
|
| 18 | + $base_dir = __DIR__.'/'; |
|
| 19 | 19 | |
| 20 | 20 | // does the class use the namespace prefix? |
| 21 | 21 | $len = strlen($prefix); |
| 22 | - if (strncmp($prefix, $class, $len) !== 0) { |
|
| 22 | + if(strncmp($prefix, $class, $len) !== 0) { |
|
| 23 | 23 | // no, move to the next registered autoloader |
| 24 | 24 | return; |
| 25 | 25 | } |
@@ -30,10 +30,10 @@ discard block |
||
| 30 | 30 | // replace the namespace prefix with the base directory, replace namespace |
| 31 | 31 | // separators with directory separators in the relative class name, append |
| 32 | 32 | // with .php |
| 33 | - $file = $base_dir . str_replace('\\', '/', $relative_class) . '.php'; |
|
| 33 | + $file = $base_dir.str_replace('\\', '/', $relative_class).'.php'; |
|
| 34 | 34 | |
| 35 | 35 | // if the file exists, require it |
| 36 | - if (file_exists($file)) { |
|
| 36 | + if(file_exists($file)) { |
|
| 37 | 37 | require $file; |
| 38 | 38 | } |
| 39 | 39 | }); |
@@ -9,7 +9,8 @@ discard block |
||
| 9 | 9 | * @license http://www.apache.org/licenses/ Apache 2.0 License |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -spl_autoload_register(function ($class) { |
|
| 12 | +spl_autoload_register(function ($class) |
|
| 13 | +{ |
|
| 13 | 14 | |
| 14 | 15 | // project-specific namespace prefix |
| 15 | 16 | $prefix = 'Flipside\\'; |
@@ -19,7 +20,8 @@ discard block |
||
| 19 | 20 | |
| 20 | 21 | // does the class use the namespace prefix? |
| 21 | 22 | $len = strlen($prefix); |
| 22 | - if (strncmp($prefix, $class, $len) !== 0) { |
|
| 23 | + if (strncmp($prefix, $class, $len) !== 0) |
|
| 24 | + { |
|
| 23 | 25 | // no, move to the next registered autoloader |
| 24 | 26 | return; |
| 25 | 27 | } |
@@ -33,7 +35,8 @@ discard block |
||
| 33 | 35 | $file = $base_dir . str_replace('\\', '/', $relative_class) . '.php'; |
| 34 | 36 | |
| 35 | 37 | // if the file exists, require it |
| 36 | - if (file_exists($file)) { |
|
| 38 | + if (file_exists($file)) |
|
| 39 | + { |
|
| 37 | 40 | require $file; |
| 38 | 41 | } |
| 39 | 42 | }); |
@@ -72,7 +72,7 @@ |
||
| 72 | 72 | public function getDataSetData($dataSetName) |
| 73 | 73 | { |
| 74 | 74 | if(!isset(\FlipsideSettings::$dataset) || !isset(\FlipsideSettings::$dataset[$dataSetName])) |
| 75 | - { |
|
| 75 | + { |
|
| 76 | 76 | return false; |
| 77 | 77 | } |
| 78 | 78 | return \FlipsideSettings::$dataset[$dataSetName]; |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | \Psr\Log\LogLevel::WARNING, |
| 13 | 13 | \Psr\Log\LogLevel::NOTICE); |
| 14 | 14 | |
| 15 | - public function __construct($params=false) |
|
| 15 | + public function __construct($params = false) |
|
| 16 | 16 | { |
| 17 | 17 | if(isset($params['defaultLogLevels'])) |
| 18 | 18 | { |
@@ -27,10 +27,10 @@ discard block |
||
| 27 | 27 | { |
| 28 | 28 | // build a replacement array with braces around the context keys |
| 29 | 29 | $replace = array(); |
| 30 | - foreach ($context as $key => $val) { |
|
| 30 | + foreach($context as $key => $val) { |
|
| 31 | 31 | // check that the value can be casted to string |
| 32 | - if (!is_array($val) && (!is_object($val) || method_exists($val, '__toString'))) { |
|
| 33 | - $replace['{' . $key . '}'] = $val; |
|
| 32 | + if(!is_array($val) && (!is_object($val) || method_exists($val, '__toString'))) { |
|
| 33 | + $replace['{'.$key.'}'] = $val; |
|
| 34 | 34 | } |
| 35 | 35 | } |
| 36 | 36 | |
@@ -27,9 +27,11 @@ |
||
| 27 | 27 | { |
| 28 | 28 | // build a replacement array with braces around the context keys |
| 29 | 29 | $replace = array(); |
| 30 | - foreach ($context as $key => $val) { |
|
| 30 | + foreach ($context as $key => $val) |
|
| 31 | + { |
|
| 31 | 32 | // check that the value can be casted to string |
| 32 | - if (!is_array($val) && (!is_object($val) || method_exists($val, '__toString'))) { |
|
| 33 | + if (!is_array($val) && (!is_object($val) || method_exists($val, '__toString'))) |
|
| 34 | + { |
|
| 33 | 35 | $replace['{' . $key . '}'] = $val; |
| 34 | 36 | } |
| 35 | 37 | } |
@@ -3,7 +3,7 @@ |
||
| 3 | 3 | |
| 4 | 4 | class PHPLog extends LogService |
| 5 | 5 | { |
| 6 | - public function __construct($params=false) |
|
| 6 | + public function __construct($params = false) |
|
| 7 | 7 | { |
| 8 | 8 | parent::__construct($params); |
| 9 | 9 | } |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | return $this->dataTable->create($data); |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | - public function read($filter=false, $select=false, $count=false, $skip=false, $sort=false, $params=false, $returnObj=false) |
|
| 37 | + public function read($filter = false, $select = false, $count = false, $skip = false, $sort = false, $params = false, $returnObj = false) |
|
| 38 | 38 | { |
| 39 | 39 | $res = $this->dataTable->read($filter, $select, $count, $skip, $sort, $params); |
| 40 | 40 | if($res === false) |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | return $this->dataTable->delete($filter); |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - public function count($filter=false) |
|
| 70 | + public function count($filter = false) |
|
| 71 | 71 | { |
| 72 | 72 | return $this->dataTable->count($filter); |
| 73 | 73 | } |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | public function count($filter = false) |
| 21 | 21 | { |
| 22 | 22 | if($filter) |
| 23 | - { |
|
| 23 | + { |
|
| 24 | 24 | $res = $this->data; |
| 25 | 25 | $res = $filter->filter_array($res); |
| 26 | 26 | return count($res); |
@@ -62,7 +62,7 @@ |
||
| 62 | 62 | |
| 63 | 63 | public function gc($maxlifetime) |
| 64 | 64 | { |
| 65 | - $date = date("Y-m-d H:i:s", time()-$maxlifetime); |
|
| 65 | + $date = date("Y-m-d H:i:s", time() - $maxlifetime); |
|
| 66 | 66 | $filter = new \Data\Filter("sessionLastAccess lt $date"); |
| 67 | 67 | return $this->dataTable->delete($filter); |
| 68 | 68 | } |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | $stmt = $this->pdo->query($sql); |
| 248 | 248 | if($stmt === false) |
| 249 | 249 | { |
| 250 | - if (php_sapi_name() !== "cli") { |
|
| 250 | + if(php_sapi_name() !== "cli") { |
|
| 251 | 251 | error_log('DB query failed. '.print_r($this->pdo->errorInfo(), true)); |
| 252 | 252 | } |
| 253 | 253 | return false; |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | $sql = "INSERT INTO $tablename ($cols) VALUES ($set);"; |
| 297 | 297 | if($this->pdo->exec($sql) === false) |
| 298 | 298 | { |
| 299 | - if (php_sapi_name() !== "cli") { |
|
| 299 | + if(php_sapi_name() !== "cli") { |
|
| 300 | 300 | error_log('DB query failed. '.print_r($this->pdo->errorInfo(), true)); |
| 301 | 301 | } |
| 302 | 302 | return false; |
@@ -247,7 +247,8 @@ discard block |
||
| 247 | 247 | $stmt = $this->pdo->query($sql); |
| 248 | 248 | if($stmt === false) |
| 249 | 249 | { |
| 250 | - if (php_sapi_name() !== "cli") { |
|
| 250 | + if (php_sapi_name() !== "cli") |
|
| 251 | + { |
|
| 251 | 252 | error_log('DB query failed. '.print_r($this->pdo->errorInfo(), true)); |
| 252 | 253 | } |
| 253 | 254 | return false; |
@@ -296,7 +297,8 @@ discard block |
||
| 296 | 297 | $sql = "INSERT INTO $tablename ($cols) VALUES ($set);"; |
| 297 | 298 | if($this->pdo->exec($sql) === false) |
| 298 | 299 | { |
| 299 | - if (php_sapi_name() !== "cli") { |
|
| 300 | + if (php_sapi_name() !== "cli") |
|
| 301 | + { |
|
| 300 | 302 | error_log('DB query failed. '.print_r($this->pdo->errorInfo(), true)); |
| 301 | 303 | } |
| 302 | 304 | return false; |