@@ -27,7 +27,7 @@ |
||
| 27 | 27 | |
| 28 | 28 | public function sendEmail($email) |
| 29 | 29 | { |
| 30 | - if($email->hasAttachments()) |
|
| 30 | + if ($email->hasAttachments()) |
|
| 31 | 31 | { |
| 32 | 32 | //Amazeon sendEmail doesn't support attachments. We need to use sendRawEmail |
| 33 | 33 | $args = array(); |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | { |
| 6 | 6 | public $server; |
| 7 | 7 | |
| 8 | - function __construct($array=false, $server=false) |
|
| 8 | + function __construct($array = false, $server = false) |
|
| 9 | 9 | { |
| 10 | 10 | parent::__construct($array); |
| 11 | 11 | $this->server = $server; |
@@ -16,14 +16,14 @@ discard block |
||
| 16 | 16 | $ret = array(); |
| 17 | 17 | foreach ($this as $key => $value) |
| 18 | 18 | { |
| 19 | - if($key === 'server' || $key === 'count') continue; |
|
| 20 | - if(is_numeric($key)) continue; |
|
| 21 | - if($key === 'jpegphoto') |
|
| 19 | + if ($key === 'server' || $key === 'count') continue; |
|
| 20 | + if (is_numeric($key)) continue; |
|
| 21 | + if ($key === 'jpegphoto') |
|
| 22 | 22 | { |
| 23 | 23 | $ret[$key] = base64_encode($value[0]); |
| 24 | 24 | continue; |
| 25 | 25 | } |
| 26 | - if(is_array($value) && $value['count'] === 1) |
|
| 26 | + if (is_array($value) && $value['count'] === 1) |
|
| 27 | 27 | { |
| 28 | 28 | $ret[$key] = $value[0]; |
| 29 | 29 | } |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | /** |
| 15 | 15 | * use the FlipsideSettings class |
| 16 | 16 | */ |
| 17 | -if(isset($GLOBALS['FLIPSIDE_SETTINGS_LOC'])) |
|
| 17 | +if (isset($GLOBALS['FLIPSIDE_SETTINGS_LOC'])) |
|
| 18 | 18 | { |
| 19 | 19 | require_once($GLOBALS['FLIPSIDE_SETTINGS_LOC'].'/class.FlipsideSettings.php'); |
| 20 | 20 | } |
@@ -59,11 +59,11 @@ discard block |
||
| 59 | 59 | static function getDataSetByName($setName) |
| 60 | 60 | { |
| 61 | 61 | static $instances = array(); |
| 62 | - if(isset($instances[$setName])) |
|
| 62 | + if (isset($instances[$setName])) |
|
| 63 | 63 | { |
| 64 | 64 | return $instances[$setName]; |
| 65 | 65 | } |
| 66 | - if(!isset(FlipsideSettings::$dataset) || !isset(FlipsideSettings::$dataset[$setName])) |
|
| 66 | + if (!isset(FlipsideSettings::$dataset) || !isset(FlipsideSettings::$dataset[$setName])) |
|
| 67 | 67 | { |
| 68 | 68 | throw new Exception('Unknown dataset name '.$setName); |
| 69 | 69 | } |
@@ -36,11 +36,11 @@ discard block |
||
| 36 | 36 | protected function __construct() |
| 37 | 37 | { |
| 38 | 38 | $this->methods = array(); |
| 39 | - if(isset(FlipsideSettings::$authProviders)) |
|
| 39 | + if (isset(FlipsideSettings::$authProviders)) |
|
| 40 | 40 | { |
| 41 | 41 | $keys = array_keys(FlipsideSettings::$authProviders); |
| 42 | 42 | $count = count($keys); |
| 43 | - for($i = 0; $i < $count; $i++) |
|
| 43 | + for ($i = 0; $i < $count; $i++) |
|
| 44 | 44 | { |
| 45 | 45 | $class = $keys[$i]; |
| 46 | 46 | array_push($this->methods, new $class(FlipsideSettings::$authProviders[$keys[$i]])); |
@@ -58,9 +58,9 @@ discard block |
||
| 58 | 58 | public function getAuthenticator($methodName) |
| 59 | 59 | { |
| 60 | 60 | $count = count($this->methods); |
| 61 | - for($i = 0; $i < $count; $i++) |
|
| 61 | + for ($i = 0; $i < $count; $i++) |
|
| 62 | 62 | { |
| 63 | - if(strcasecmp(get_class($this->methods[$i]), $methodName) === 0) |
|
| 63 | + if (strcasecmp(get_class($this->methods[$i]), $methodName) === 0) |
|
| 64 | 64 | { |
| 65 | 65 | return $this->methods[$i]; |
| 66 | 66 | } |
@@ -82,10 +82,10 @@ discard block |
||
| 82 | 82 | { |
| 83 | 83 | $res = false; |
| 84 | 84 | $count = count($this->methods); |
| 85 | - for($i = 0; $i < $count; $i++) |
|
| 85 | + for ($i = 0; $i < $count; $i++) |
|
| 86 | 86 | { |
| 87 | 87 | $res = $this->methods[$i]->login($username, $password); |
| 88 | - if($res !== false) |
|
| 88 | + if ($res !== false) |
|
| 89 | 89 | { |
| 90 | 90 | return $this->methods[$i]->getUser($res); |
| 91 | 91 | } |
@@ -105,10 +105,10 @@ discard block |
||
| 105 | 105 | { |
| 106 | 106 | $res = false; |
| 107 | 107 | $count = count($this->methods); |
| 108 | - for($i = 0; $i < $count; $i++) |
|
| 108 | + for ($i = 0; $i < $count; $i++) |
|
| 109 | 109 | { |
| 110 | 110 | $res = $this->methods[$i]->login($username, $password); |
| 111 | - if($res !== false) |
|
| 111 | + if ($res !== false) |
|
| 112 | 112 | { |
| 113 | 113 | FlipSession::setVar('AuthMethod', get_class($this->methods[$i])); |
| 114 | 114 | FlipSession::setVar('AuthData', $res); |
@@ -156,11 +156,11 @@ discard block |
||
| 156 | 156 | */ |
| 157 | 157 | private function mergeResult(&$returnValue, $res) |
| 158 | 158 | { |
| 159 | - if($res === false) |
|
| 159 | + if ($res === false) |
|
| 160 | 160 | { |
| 161 | 161 | return; |
| 162 | 162 | } |
| 163 | - if($returnValue === false) |
|
| 163 | + if ($returnValue === false) |
|
| 164 | 164 | { |
| 165 | 165 | $returnValue = $res; |
| 166 | 166 | return; |
@@ -182,11 +182,11 @@ discard block |
||
| 182 | 182 | { |
| 183 | 183 | $ret = false; |
| 184 | 184 | $count = count($this->methods); |
| 185 | - for($i = 0; $i < $count; $i++) |
|
| 185 | + for ($i = 0; $i < $count; $i++) |
|
| 186 | 186 | { |
| 187 | - if($checkField) |
|
| 187 | + if ($checkField) |
|
| 188 | 188 | { |
| 189 | - if($this->methods[$i]->{$checkField} === $checkValue) |
|
| 189 | + if ($this->methods[$i]->{$checkField} === $checkValue) |
|
| 190 | 190 | { |
| 191 | 191 | continue; |
| 192 | 192 | } |
@@ -210,11 +210,11 @@ discard block |
||
| 210 | 210 | { |
| 211 | 211 | $retCount = 0; |
| 212 | 212 | $count = count($this->methods); |
| 213 | - for($i = 0; $i < $count; $i++) |
|
| 213 | + for ($i = 0; $i < $count; $i++) |
|
| 214 | 214 | { |
| 215 | - if($checkField) |
|
| 215 | + if ($checkField) |
|
| 216 | 216 | { |
| 217 | - if($this->methods[$i]->{$checkField} === $checkValue) |
|
| 217 | + if ($this->methods[$i]->{$checkField} === $checkValue) |
|
| 218 | 218 | { |
| 219 | 219 | continue; |
| 220 | 220 | } |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | */ |
| 236 | 236 | public function getGroupByName($name, $methodName = false) |
| 237 | 237 | { |
| 238 | - if($methodName === false) |
|
| 238 | + if ($methodName === false) |
|
| 239 | 239 | { |
| 240 | 240 | return $this->callOnEach('getGroupByName', array($name)); |
| 241 | 241 | } |
@@ -255,9 +255,9 @@ discard block |
||
| 255 | 255 | * |
| 256 | 256 | * @return array|false An array of Auth\User objects or false if no users were found |
| 257 | 257 | */ |
| 258 | - public function getUsersByFilter($filter, $select=false, $top=false, $skip=false, $orderby=false, $methodName = false) |
|
| 258 | + public function getUsersByFilter($filter, $select = false, $top = false, $skip = false, $orderby = false, $methodName = false) |
|
| 259 | 259 | { |
| 260 | - if($methodName === false) |
|
| 260 | + if ($methodName === false) |
|
| 261 | 261 | { |
| 262 | 262 | return $this->callOnEach('getUsersByFilter', array($filter, $select, $top, $skip, $orderby), 'current'); |
| 263 | 263 | } |
@@ -277,9 +277,9 @@ discard block |
||
| 277 | 277 | * |
| 278 | 278 | * @return array|false An array of Auth\PendingUser objects or false if no pending users were found |
| 279 | 279 | */ |
| 280 | - public function getPendingUsersByFilter($filter, $select=false, $top=false, $skip=false, $orderby=false, $methodName = false) |
|
| 280 | + public function getPendingUsersByFilter($filter, $select = false, $top = false, $skip = false, $orderby = false, $methodName = false) |
|
| 281 | 281 | { |
| 282 | - if($methodName === false) |
|
| 282 | + if ($methodName === false) |
|
| 283 | 283 | { |
| 284 | 284 | return $this->callOnEach('getPendingUsersByFilter', array($filter, $select, $top, $skip, $orderby), 'pending'); |
| 285 | 285 | } |
@@ -299,9 +299,9 @@ discard block |
||
| 299 | 299 | * |
| 300 | 300 | * @return array|false An array of Auth\Group objects or false if no pending users were found |
| 301 | 301 | */ |
| 302 | - public function getGroupsByFilter($filter, $select=false, $top=false, $skip=false, $orderby=false, $methodName = false) |
|
| 302 | + public function getGroupsByFilter($filter, $select = false, $top = false, $skip = false, $orderby = false, $methodName = false) |
|
| 303 | 303 | { |
| 304 | - if($methodName === false) |
|
| 304 | + if ($methodName === false) |
|
| 305 | 305 | { |
| 306 | 306 | return $this->callOnEach('getGroupsByFilter', array($filter, $select, $top, $skip, $orderby), 'current'); |
| 307 | 307 | } |
@@ -318,7 +318,7 @@ discard block |
||
| 318 | 318 | */ |
| 319 | 319 | public function getActiveUserCount($methodName = false) |
| 320 | 320 | { |
| 321 | - if($methodName === false) |
|
| 321 | + if ($methodName === false) |
|
| 322 | 322 | { |
| 323 | 323 | return $this->addFromEach('getActiveUserCount', 'current'); |
| 324 | 324 | } |
@@ -335,7 +335,7 @@ discard block |
||
| 335 | 335 | */ |
| 336 | 336 | public function getPendingUserCount($methodName = false) |
| 337 | 337 | { |
| 338 | - if($methodName === false) |
|
| 338 | + if ($methodName === false) |
|
| 339 | 339 | { |
| 340 | 340 | return $this->addFromEach('getPendingUserCount', 'pending'); |
| 341 | 341 | } |
@@ -352,7 +352,7 @@ discard block |
||
| 352 | 352 | */ |
| 353 | 353 | public function getGroupCount($methodName = false) |
| 354 | 354 | { |
| 355 | - if($methodName === false) |
|
| 355 | + if ($methodName === false) |
|
| 356 | 356 | { |
| 357 | 357 | return $this->addFromEach('getGroupCount', 'current'); |
| 358 | 358 | } |
@@ -372,9 +372,9 @@ discard block |
||
| 372 | 372 | { |
| 373 | 373 | $ret = array(); |
| 374 | 374 | $count = count($this->methods); |
| 375 | - for($i = 0; $i < $count; $i++) |
|
| 375 | + for ($i = 0; $i < $count; $i++) |
|
| 376 | 376 | { |
| 377 | - if($this->methods[$i]->supplement === false) continue; |
|
| 377 | + if ($this->methods[$i]->supplement === false) continue; |
|
| 378 | 378 | |
| 379 | 379 | array_push($ret, $this->methods[$i]->getSupplementLink()); |
| 380 | 380 | } |
@@ -391,7 +391,7 @@ discard block |
||
| 391 | 391 | */ |
| 392 | 392 | public function impersonateUser($userArray) |
| 393 | 393 | { |
| 394 | - if(!is_object($userArray)) |
|
| 394 | + if (!is_object($userArray)) |
|
| 395 | 395 | { |
| 396 | 396 | $user = new $userArray['class']($userArray); |
| 397 | 397 | } |
@@ -408,15 +408,15 @@ discard block |
||
| 408 | 408 | */ |
| 409 | 409 | public function getTempUserByHash($hash, $methodName = false) |
| 410 | 410 | { |
| 411 | - if($methodName === false) |
|
| 411 | + if ($methodName === false) |
|
| 412 | 412 | { |
| 413 | 413 | $count = count($this->methods); |
| 414 | - for($i = 0; $i < $count; $i++) |
|
| 414 | + for ($i = 0; $i < $count; $i++) |
|
| 415 | 415 | { |
| 416 | - if($this->methods[$i]->pending === false) continue; |
|
| 416 | + if ($this->methods[$i]->pending === false) continue; |
|
| 417 | 417 | |
| 418 | 418 | $ret = $this->methods[$i]->getTempUserByHash($hash); |
| 419 | - if($ret !== false) |
|
| 419 | + if ($ret !== false) |
|
| 420 | 420 | { |
| 421 | 421 | return $ret; |
| 422 | 422 | } |
@@ -437,15 +437,15 @@ discard block |
||
| 437 | 437 | */ |
| 438 | 438 | public function createPendingUser($user, $methodName = false) |
| 439 | 439 | { |
| 440 | - if($methodName === false) |
|
| 440 | + if ($methodName === false) |
|
| 441 | 441 | { |
| 442 | 442 | $count = count($this->methods); |
| 443 | - for($i = 0; $i < $count; $i++) |
|
| 443 | + for ($i = 0; $i < $count; $i++) |
|
| 444 | 444 | { |
| 445 | - if($this->methods[$i]->pending === false) continue; |
|
| 445 | + if ($this->methods[$i]->pending === false) continue; |
|
| 446 | 446 | |
| 447 | 447 | $ret = $this->methods[$i]->createPendingUser($user); |
| 448 | - if($ret !== false) |
|
| 448 | + if ($ret !== false) |
|
| 449 | 449 | { |
| 450 | 450 | return true; |
| 451 | 451 | } |
@@ -469,15 +469,15 @@ discard block |
||
| 469 | 469 | */ |
| 470 | 470 | public function activatePendingUser($user, $methodName = false) |
| 471 | 471 | { |
| 472 | - if($methodName === false) |
|
| 472 | + if ($methodName === false) |
|
| 473 | 473 | { |
| 474 | 474 | $count = count($this->methods); |
| 475 | - for($i = 0; $i < $count; $i++) |
|
| 475 | + for ($i = 0; $i < $count; $i++) |
|
| 476 | 476 | { |
| 477 | - if($this->methods[$i]->current === false) continue; |
|
| 477 | + if ($this->methods[$i]->current === false) continue; |
|
| 478 | 478 | |
| 479 | 479 | $ret = $this->methods[$i]->activatePendingUser($user); |
| 480 | - if($ret !== false) |
|
| 480 | + if ($ret !== false) |
|
| 481 | 481 | { |
| 482 | 482 | $this->impersonateUser($ret); |
| 483 | 483 | return true; |
@@ -499,15 +499,15 @@ discard block |
||
| 499 | 499 | */ |
| 500 | 500 | public function getUserByResetHash($hash, $methodName = false) |
| 501 | 501 | { |
| 502 | - if($methodName === false) |
|
| 502 | + if ($methodName === false) |
|
| 503 | 503 | { |
| 504 | 504 | $count = count($this->methods); |
| 505 | - for($i = 0; $i < $count; $i++) |
|
| 505 | + for ($i = 0; $i < $count; $i++) |
|
| 506 | 506 | { |
| 507 | - if($this->methods[$i]->current === false) continue; |
|
| 507 | + if ($this->methods[$i]->current === false) continue; |
|
| 508 | 508 | |
| 509 | 509 | $ret = $this->methods[$i]->getUserByResetHash($hash); |
| 510 | - if($ret !== false) |
|
| 510 | + if ($ret !== false) |
|
| 511 | 511 | { |
| 512 | 512 | return $ret; |
| 513 | 513 | } |
@@ -515,7 +515,7 @@ discard block |
||
| 515 | 515 | return false; |
| 516 | 516 | } |
| 517 | 517 | $auth = $this->getAuthenticator($methodName); |
| 518 | - if($auth === false) |
|
| 518 | + if ($auth === false) |
|
| 519 | 519 | { |
| 520 | 520 | return $this->getUserByResetHash($hash, false); |
| 521 | 521 | } |
@@ -532,11 +532,11 @@ discard block |
||
| 532 | 532 | public function getSuplementalProviderByHost($host) |
| 533 | 533 | { |
| 534 | 534 | $count = count($this->methods); |
| 535 | - for($i = 0; $i < $count; $i++) |
|
| 535 | + for ($i = 0; $i < $count; $i++) |
|
| 536 | 536 | { |
| 537 | - if($this->methods[$i]->supplement === false) continue; |
|
| 537 | + if ($this->methods[$i]->supplement === false) continue; |
|
| 538 | 538 | |
| 539 | - if($this->methods[$i]->getHostName() === $host) |
|
| 539 | + if ($this->methods[$i]->getHostName() === $host) |
|
| 540 | 540 | { |
| 541 | 541 | return $this->methods[$i]; |
| 542 | 542 | } |
@@ -544,15 +544,15 @@ discard block |
||
| 544 | 544 | return false; |
| 545 | 545 | } |
| 546 | 546 | |
| 547 | - public function deletePendingUsersByFilter($filter, $methodName=false) |
|
| 547 | + public function deletePendingUsersByFilter($filter, $methodName = false) |
|
| 548 | 548 | { |
| 549 | 549 | $users = $this->getPendingUsersByFilter($filter, false, false, false, false, $methodName); |
| 550 | - if($users === false) |
|
| 550 | + if ($users === false) |
|
| 551 | 551 | { |
| 552 | 552 | return false; |
| 553 | 553 | } |
| 554 | 554 | $count = count($users); |
| 555 | - for($i = 0; $i < $count; $i++) |
|
| 555 | + for ($i = 0; $i < $count; $i++) |
|
| 556 | 556 | { |
| 557 | 557 | $users[$i]->delete(); |
| 558 | 558 | } |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | |
| 23 | 23 | public function send_HTML($mail) |
| 24 | 24 | { |
| 25 | - if(isset($mail['from'])) |
|
| 25 | + if (isset($mail['from'])) |
|
| 26 | 26 | { |
| 27 | 27 | $this->From = $mail['from']; |
| 28 | 28 | } |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | { |
| 31 | 31 | $this->From = $this->Username; |
| 32 | 32 | } |
| 33 | - if(isset($mail['from_name'])) |
|
| 33 | + if (isset($mail['from_name'])) |
|
| 34 | 34 | { |
| 35 | 35 | $this->FromName = $mail['from_name']; |
| 36 | 36 | } |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | $this->FromName = 'Burning Flipside'; |
| 40 | 40 | } |
| 41 | 41 | $this->clearAllRecipients(); |
| 42 | - if(is_array($mail['to'])) |
|
| 42 | + if (is_array($mail['to'])) |
|
| 43 | 43 | { |
| 44 | 44 | array_walk($mail['to'], 'FlipsideMail::addTo', $this); |
| 45 | 45 | } |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | { |
| 48 | 48 | $this->addAddress($mail['to']); |
| 49 | 49 | } |
| 50 | - if(isset($mail['reply_to'])) |
|
| 50 | + if (isset($mail['reply_to'])) |
|
| 51 | 51 | { |
| 52 | 52 | $this->addReplyTo($mail['reply_to']); |
| 53 | 53 | } |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | { |
| 29 | 29 | static $instances = array(); |
| 30 | 30 | $class = get_called_class(); |
| 31 | - if(!isset($instances[$class])) |
|
| 31 | + if (!isset($instances[$class])) |
|
| 32 | 32 | { |
| 33 | 33 | $instances[$class] = new static(); |
| 34 | 34 | } |
@@ -16,18 +16,18 @@ discard block |
||
| 16 | 16 | * |
| 17 | 17 | * This class can be serialized to various formats |
| 18 | 18 | */ |
| 19 | -class SerializableObject implements ArrayAccess,JsonSerializable |
|
| 19 | +class SerializableObject implements ArrayAccess, JsonSerializable |
|
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | 22 | * Create the object from an array |
| 23 | 23 | * |
| 24 | 24 | * @param array $array The array of object properties |
| 25 | 25 | */ |
| 26 | - public function __construct($array=false) |
|
| 26 | + public function __construct($array = false) |
|
| 27 | 27 | { |
| 28 | - if($array !== false && is_array($array)) |
|
| 28 | + if ($array !== false && is_array($array)) |
|
| 29 | 29 | { |
| 30 | - foreach($array as $key => $value) |
|
| 30 | + foreach ($array as $key => $value) |
|
| 31 | 31 | { |
| 32 | 32 | $this->{$key} = $value; |
| 33 | 33 | } |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | $xml = new XmlWriter(); |
| 55 | 55 | $xml->openMemory(); |
| 56 | 56 | $xml->startDocument('1.0'); |
| 57 | - if(isset($this[0])) |
|
| 57 | + if (isset($this[0])) |
|
| 58 | 58 | { |
| 59 | 59 | $xml->startElement('Array'); |
| 60 | 60 | $this->array2XML($xml, 'Entity', (array)$this); |
@@ -76,13 +76,13 @@ discard block |
||
| 76 | 76 | */ |
| 77 | 77 | private function object2XML(XMLWriter $xml, $data) |
| 78 | 78 | { |
| 79 | - foreach($data as $key => $value) |
|
| 79 | + foreach ($data as $key => $value) |
|
| 80 | 80 | { |
| 81 | - if(is_array($value) || is_numeric($key)) |
|
| 81 | + if (is_array($value) || is_numeric($key)) |
|
| 82 | 82 | { |
| 83 | 83 | $this->array2XML($xml, $key, (array)$value); |
| 84 | 84 | } |
| 85 | - else if(is_object($value)) |
|
| 85 | + else if (is_object($value)) |
|
| 86 | 86 | { |
| 87 | 87 | $xml->startElement($key); |
| 88 | 88 | $this->object2XML($xml, $value); |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | } |
| 91 | 91 | else |
| 92 | 92 | { |
| 93 | - if($key[0] === '$') |
|
| 93 | + if ($key[0] === '$') |
|
| 94 | 94 | { |
| 95 | 95 | $xml->writeElement(substr($key, 1), $value); |
| 96 | 96 | } |
@@ -112,29 +112,29 @@ discard block |
||
| 112 | 112 | */ |
| 113 | 113 | private function array2XML(XMLWriter $xml, $keyParent, $data) |
| 114 | 114 | { |
| 115 | - foreach($data as $key => $value) |
|
| 115 | + foreach ($data as $key => $value) |
|
| 116 | 116 | { |
| 117 | - if(is_string($value)) |
|
| 117 | + if (is_string($value)) |
|
| 118 | 118 | { |
| 119 | 119 | $xml->writeElement($keyParent, $value); |
| 120 | 120 | continue; |
| 121 | 121 | } |
| 122 | - if(is_numeric($key)) |
|
| 122 | + if (is_numeric($key)) |
|
| 123 | 123 | { |
| 124 | 124 | $xml->startElement($keyParent); |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | - if(is_object($value)) |
|
| 127 | + if (is_object($value)) |
|
| 128 | 128 | { |
| 129 | 129 | $this->object2XML($xml, $value); |
| 130 | 130 | } |
| 131 | - else if(is_array($value)) |
|
| 131 | + else if (is_array($value)) |
|
| 132 | 132 | { |
| 133 | 133 | $this->array2XML($xml, $key, $value); |
| 134 | 134 | continue; |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - if(is_numeric($key)) |
|
| 137 | + if (is_numeric($key)) |
|
| 138 | 138 | { |
| 139 | 139 | $xml->endElement(); |
| 140 | 140 | } |
@@ -165,16 +165,16 @@ discard block |
||
| 165 | 165 | public function serializeObject($fmt = 'json', $select = false) |
| 166 | 166 | { |
| 167 | 167 | $copy = $this; |
| 168 | - if($select !== false) |
|
| 168 | + if ($select !== false) |
|
| 169 | 169 | { |
| 170 | 170 | $copy = new self(); |
| 171 | 171 | $count = count($select); |
| 172 | - for($i = 0; $i < $count; $i++) |
|
| 172 | + for ($i = 0; $i < $count; $i++) |
|
| 173 | 173 | { |
| 174 | 174 | $copy->{$select[$i]} = $this->offsetGet($select[$i]); |
| 175 | 175 | } |
| 176 | 176 | } |
| 177 | - switch($fmt) |
|
| 177 | + switch ($fmt) |
|
| 178 | 178 | { |
| 179 | 179 | case 'json': |
| 180 | 180 | return json_encode($copy); |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | |
| 31 | 31 | public function getUserFromToken($token) |
| 32 | 32 | { |
| 33 | - if($token === false) |
|
| 33 | + if ($token === false) |
|
| 34 | 34 | { |
| 35 | 35 | $token = \FlipSession::getVar('OAuthToken'); |
| 36 | 36 | } |
@@ -6,13 +6,13 @@ discard block |
||
| 6 | 6 | public $user; |
| 7 | 7 | public $is_admin = false; |
| 8 | 8 | |
| 9 | - function __construct($title, $adminGroup='LDAPAdmins') |
|
| 9 | + function __construct($title, $adminGroup = 'LDAPAdmins') |
|
| 10 | 10 | { |
| 11 | 11 | $this->user = FlipSession::getUser(); |
| 12 | 12 | $this->is_admin = $this->userIsAdmin($adminGroup); |
| 13 | 13 | parent::__construct($title); |
| 14 | 14 | $adminCSS = '/css/common/admin.min.css'; |
| 15 | - if($this->minified !== 'min') |
|
| 15 | + if ($this->minified !== 'min') |
|
| 16 | 16 | { |
| 17 | 17 | $adminCSS = '/css/common/admin.css'; |
| 18 | 18 | } |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | |
| 23 | 23 | protected function userIsAdmin($adminGroup) |
| 24 | 24 | { |
| 25 | - if($this->user === false || $this->user === null) |
|
| 25 | + if ($this->user === false || $this->user === null) |
|
| 26 | 26 | { |
| 27 | 27 | return false; |
| 28 | 28 | } |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | function addAllLinks() |
| 33 | 33 | { |
| 34 | - if($this->user === false || $this->user === null) |
|
| 34 | + if ($this->user === false || $this->user === null) |
|
| 35 | 35 | { |
| 36 | 36 | $this->addLink('<i class="fa fa-sign-in"></i> Login', $this->loginUrl); |
| 37 | 37 | } |
@@ -47,13 +47,13 @@ discard block |
||
| 47 | 47 | $ret = '<li>'; |
| 48 | 48 | $href = $this->getHrefForDropdown($link); |
| 49 | 49 | $ret .= $this->createLink($name.' <i class="fa fa-arrow-right"></i>', $href); |
| 50 | - $ret.='<ul>'; |
|
| 50 | + $ret .= '<ul>'; |
|
| 51 | 51 | $subNames = array_keys($link); |
| 52 | - foreach($subNames as $subName) |
|
| 52 | + foreach ($subNames as $subName) |
|
| 53 | 53 | { |
| 54 | - $ret.=$this->getLinkByName($subName, $link); |
|
| 54 | + $ret .= $this->getLinkByName($subName, $link); |
|
| 55 | 55 | } |
| 56 | - $ret.='</ul></li>'; |
|
| 56 | + $ret .= '</ul></li>'; |
|
| 57 | 57 | return $ret; |
| 58 | 58 | } |
| 59 | 59 | |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | $sites = $this->getSiteLinksForHeader(); |
| 63 | 63 | $sideNav = $this->getLinksMenus(); |
| 64 | 64 | $log = '<a href="https://profiles.burningflipside.com/logout.php"><i class="fa fa-sign-out"></i></a>'; |
| 65 | - if($this->user === false || $this->user === null) |
|
| 65 | + if ($this->user === false || $this->user === null) |
|
| 66 | 66 | { |
| 67 | 67 | $log = '<a href="https://profiles.burningflipside.com/login.php?return='.$this->currentUrl().'"><i class="fa fa-sign-in"></i></a>'; |
| 68 | 68 | } |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | const CARD_YELLOW = 'panel-yellow'; |
| 109 | 109 | const CARD_RED = 'panel-red'; |
| 110 | 110 | |
| 111 | - function add_card($iconName, $bigText, $littleText, $link='#', $color = self::CARD_BLUE, $textColor=false) |
|
| 111 | + function add_card($iconName, $bigText, $littleText, $link = '#', $color = self::CARD_BLUE, $textColor = false) |
|
| 112 | 112 | { |
| 113 | 113 | $card = '<div class="col-lg-3 col-md-6"> |
| 114 | 114 | <div class="panel '.$color.'"> |
@@ -135,9 +135,9 @@ discard block |
||
| 135 | 135 | $this->body .= $card; |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | - function printPage($header=true) |
|
| 138 | + function printPage($header = true) |
|
| 139 | 139 | { |
| 140 | - if($this->user === false || $this->user === null) |
|
| 140 | + if ($this->user === false || $this->user === null) |
|
| 141 | 141 | { |
| 142 | 142 | $this->body = ' |
| 143 | 143 | <div class="row"> |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | </div> |
| 147 | 147 | </div>'; |
| 148 | 148 | } |
| 149 | - else if($this->is_admin === false) |
|
| 149 | + else if ($this->is_admin === false) |
|
| 150 | 150 | { |
| 151 | 151 | $this->body = ' |
| 152 | 152 | <div class="row"> |