@@ -14,7 +14,7 @@ |
||
| 14 | 14 | 'version' => 'latest', |
| 15 | 15 | 'region' => 'us-west-2', |
| 16 | 16 | 'credentials' => $credentials |
| 17 | - ]); |
|
| 17 | + ]); |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | public function canSend() |
@@ -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(); |
@@ -34,8 +34,7 @@ |
||
| 34 | 34 | $args['RawMessage'] = array(); |
| 35 | 35 | $args['RawMessage']['Data'] = base64_encode($email->getRawMessage()); |
| 36 | 36 | return $this->ses->sendRawEmail($args); |
| 37 | - } |
|
| 38 | - else |
|
| 37 | + } else |
|
| 39 | 38 | { |
| 40 | 39 | $args = array(); |
| 41 | 40 | $args['Source'] = $email->getFromAddress(); |
@@ -3,19 +3,19 @@ discard block |
||
| 3 | 3 | |
| 4 | 4 | class LDAPObject extends \SerializableObject |
| 5 | 5 | { |
| 6 | - public $server; |
|
| 6 | + public $server; |
|
| 7 | 7 | |
| 8 | - function __construct($array=false, $server=false) |
|
| 9 | - { |
|
| 10 | - parent::__construct($array); |
|
| 11 | - $this->server = $server; |
|
| 12 | - } |
|
| 8 | + function __construct($array=false, $server=false) |
|
| 9 | + { |
|
| 10 | + parent::__construct($array); |
|
| 11 | + $this->server = $server; |
|
| 12 | + } |
|
| 13 | 13 | |
| 14 | - public function jsonSerialize() |
|
| 15 | - { |
|
| 16 | - $ret = array(); |
|
| 17 | - foreach ($this as $key => $value) |
|
| 18 | - { |
|
| 14 | + public function jsonSerialize() |
|
| 15 | + { |
|
| 16 | + $ret = array(); |
|
| 17 | + foreach ($this as $key => $value) |
|
| 18 | + { |
|
| 19 | 19 | if($key === 'server' || $key === 'count') continue; |
| 20 | 20 | if(is_numeric($key)) continue; |
| 21 | 21 | if($key === 'jpegphoto') |
@@ -31,9 +31,9 @@ discard block |
||
| 31 | 31 | { |
| 32 | 32 | $ret[$key] = $value; |
| 33 | 33 | } |
| 34 | - } |
|
| 35 | - return $ret; |
|
| 36 | - } |
|
| 34 | + } |
|
| 35 | + return $ret; |
|
| 36 | + } |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | ?> |
@@ -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 | } |
@@ -16,8 +16,12 @@ 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; |
|
| 19 | + if($key === 'server' || $key === 'count') { |
|
| 20 | + continue; |
|
| 21 | + } |
|
| 22 | + if(is_numeric($key)) { |
|
| 23 | + continue; |
|
| 24 | + } |
|
| 21 | 25 | if($key === 'jpegphoto') |
| 22 | 26 | { |
| 23 | 27 | $ret[$key] = base64_encode($value[0]); |
@@ -26,8 +30,7 @@ discard block |
||
| 26 | 30 | if(is_array($value) && $value['count'] === 1) |
| 27 | 31 | { |
| 28 | 32 | $ret[$key] = $value[0]; |
| 29 | - } |
|
| 30 | - else |
|
| 33 | + } else |
|
| 31 | 34 | { |
| 32 | 35 | $ret[$key] = $value; |
| 33 | 36 | } |
@@ -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 | } |
@@ -17,8 +17,7 @@ |
||
| 17 | 17 | if(isset($GLOBALS['FLIPSIDE_SETTINGS_LOC'])) |
| 18 | 18 | { |
| 19 | 19 | require_once($GLOBALS['FLIPSIDE_SETTINGS_LOC'].'/class.FlipsideSettings.php'); |
| 20 | -} |
|
| 21 | -else |
|
| 20 | +} else |
|
| 22 | 21 | { |
| 23 | 22 | require_once('/var/www/secure_settings/class.FlipsideSettings.php'); |
| 24 | 23 | } |
@@ -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 | } |
@@ -25,16 +25,14 @@ discard block |
||
| 25 | 25 | if(isset($mail['from'])) |
| 26 | 26 | { |
| 27 | 27 | $this->From = $mail['from']; |
| 28 | - } |
|
| 29 | - else |
|
| 28 | + } else |
|
| 30 | 29 | { |
| 31 | 30 | $this->From = $this->Username; |
| 32 | 31 | } |
| 33 | 32 | if(isset($mail['from_name'])) |
| 34 | 33 | { |
| 35 | 34 | $this->FromName = $mail['from_name']; |
| 36 | - } |
|
| 37 | - else |
|
| 35 | + } else |
|
| 38 | 36 | { |
| 39 | 37 | $this->FromName = 'Burning Flipside'; |
| 40 | 38 | } |
@@ -42,8 +40,7 @@ discard block |
||
| 42 | 40 | if(is_array($mail['to'])) |
| 43 | 41 | { |
| 44 | 42 | array_walk($mail['to'], 'FlipsideMail::addTo', $this); |
| 45 | - } |
|
| 46 | - else |
|
| 43 | + } else |
|
| 47 | 44 | { |
| 48 | 45 | $this->addAddress($mail['to']); |
| 49 | 46 | } |
@@ -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 | } |
@@ -15,8 +15,7 @@ discard block |
||
| 15 | 15 | if(isset($params['filter'])) |
| 16 | 16 | { |
| 17 | 17 | $this->filter = new \Data\Filter($params['filter']); |
| 18 | - } |
|
| 19 | - else if(isset($params['$filter'])) |
|
| 18 | + } else if(isset($params['$filter'])) |
|
| 20 | 19 | { |
| 21 | 20 | $this->filter = new \Data\Filter($params['$filter']); |
| 22 | 21 | } |
@@ -29,8 +28,7 @@ discard block |
||
| 29 | 28 | if(isset($params['select'])) |
| 30 | 29 | { |
| 31 | 30 | $this->select = explode(',',$params['select']); |
| 32 | - } |
|
| 33 | - else if(isset($params['$select'])) |
|
| 31 | + } else if(isset($params['$select'])) |
|
| 34 | 32 | { |
| 35 | 33 | $this->select = explode(',',$params['$select']); |
| 36 | 34 | } |
@@ -47,8 +45,7 @@ discard block |
||
| 47 | 45 | { |
| 48 | 46 | //Default to assending |
| 49 | 47 | $this->orderby[$exp[0]] = 1; |
| 50 | - } |
|
| 51 | - else |
|
| 48 | + } else |
|
| 52 | 49 | { |
| 53 | 50 | switch($exp[1]) |
| 54 | 51 | { |
@@ -52,11 +52,11 @@ discard block |
||
| 52 | 52 | |
| 53 | 53 | protected function processFilter($params) |
| 54 | 54 | { |
| 55 | - if(isset($params['filter'])) |
|
| 55 | + if (isset($params['filter'])) |
|
| 56 | 56 | { |
| 57 | 57 | $this->filter = new \Data\Filter($params['filter']); |
| 58 | 58 | } |
| 59 | - else if(isset($params['$filter'])) |
|
| 59 | + else if (isset($params['$filter'])) |
|
| 60 | 60 | { |
| 61 | 61 | $this->filter = new \Data\Filter($params['$filter']); |
| 62 | 62 | } |
@@ -64,42 +64,42 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | protected function processExpand($params) |
| 66 | 66 | { |
| 67 | - if(isset($params['$expand'])) |
|
| 67 | + if (isset($params['$expand'])) |
|
| 68 | 68 | { |
| 69 | - $this->expand = explode(',',$params['$expand']); |
|
| 69 | + $this->expand = explode(',', $params['$expand']); |
|
| 70 | 70 | } |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | protected function processSelect($params) |
| 74 | 74 | { |
| 75 | - if(isset($params['select'])) |
|
| 75 | + if (isset($params['select'])) |
|
| 76 | 76 | { |
| 77 | - $this->select = explode(',',$params['select']); |
|
| 77 | + $this->select = explode(',', $params['select']); |
|
| 78 | 78 | } |
| 79 | - else if(isset($params['$select'])) |
|
| 79 | + else if (isset($params['$select'])) |
|
| 80 | 80 | { |
| 81 | - $this->select = explode(',',$params['$select']); |
|
| 81 | + $this->select = explode(',', $params['$select']); |
|
| 82 | 82 | } |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | 85 | protected function processOrderBy($params) |
| 86 | 86 | { |
| 87 | - if(isset($params['$orderby'])) |
|
| 87 | + if (isset($params['$orderby'])) |
|
| 88 | 88 | { |
| 89 | 89 | $this->orderby = array(); |
| 90 | - $orderby = explode(',',$params['$orderby']); |
|
| 90 | + $orderby = explode(',', $params['$orderby']); |
|
| 91 | 91 | $count = count($orderby); |
| 92 | - for($i = 0; $i < $count; $i++) |
|
| 92 | + for ($i = 0; $i < $count; $i++) |
|
| 93 | 93 | { |
| 94 | - $exp = explode(' ',$orderby[$i]); |
|
| 95 | - if(count($exp) === 1) |
|
| 94 | + $exp = explode(' ', $orderby[$i]); |
|
| 95 | + if (count($exp) === 1) |
|
| 96 | 96 | { |
| 97 | 97 | //Default to assending |
| 98 | 98 | $this->orderby[$exp[0]] = 1; |
| 99 | 99 | } |
| 100 | 100 | else |
| 101 | 101 | { |
| 102 | - switch($exp[1]) |
|
| 102 | + switch ($exp[1]) |
|
| 103 | 103 | { |
| 104 | 104 | case 'asc': |
| 105 | 105 | $this->orderby[$exp[0]] = 1; |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | |
| 118 | 118 | protected function processTop($params) |
| 119 | 119 | { |
| 120 | - if(isset($params['$top']) && is_numeric($params['$top'])) |
|
| 120 | + if (isset($params['$top']) && is_numeric($params['$top'])) |
|
| 121 | 121 | { |
| 122 | 122 | $this->top = intval($params['$top']); |
| 123 | 123 | } |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | |
| 126 | 126 | protected function processSkip($params) |
| 127 | 127 | { |
| 128 | - if(isset($params['$skip']) && is_numeric($params['$skip'])) |
|
| 128 | + if (isset($params['$skip']) && is_numeric($params['$skip'])) |
|
| 129 | 129 | { |
| 130 | 130 | $this->skip = intval($params['$skip']); |
| 131 | 131 | } |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | |
| 134 | 134 | protected function processCount($params) |
| 135 | 135 | { |
| 136 | - if(isset($params['$count']) && strcasecmp($params['$count'], 'true') === 0) |
|
| 136 | + if (isset($params['$count']) && strcasecmp($params['$count'], 'true') === 0) |
|
| 137 | 137 | { |
| 138 | 138 | $this->count = true; |
| 139 | 139 | } |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | |
| 142 | 142 | protected function processSearch($params) |
| 143 | 143 | { |
| 144 | - if(isset($params['$search'])) |
|
| 144 | + if (isset($params['$search'])) |
|
| 145 | 145 | { |
| 146 | 146 | throw new Exception('Search not yet implemented'); |
| 147 | 147 | } |
@@ -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 | } |