Completed
Pull Request — master (#164)
by Corey
03:06
created
site/views/checkin/old_view.php 4 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
     print $form
93 93
             ->field($model, "behaviors{$category['id']}")
94 94
             ->checkboxList($behaviors,
95
-                           ['item' => "checkboxItemTemplate"]);
95
+                            ['item' => "checkboxItemTemplate"]);
96 96
   }
97 97
   ActiveForm::end();
98 98
 
Please login to merge, or discard this patch.
Switch Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,10 +41,10 @@
 block discarded – undo
41 41
 
42 42
   <?php
43 43
               switch(true) {
44
-                case ($score < 30):
45
-                  $alert_level = "success";
46
-                  $alert_msg = "You're doing well! Keep on doing whatever it is you're doing!";
47
-                  break;
44
+              case ($score < 30):
45
+                $alert_level = "success";
46
+                $alert_msg = "You're doing well! Keep on doing whatever it is you're doing!";
47
+                break;
48 48
 
49 49
               case ($score < 40):
50 50
                 $alert_level = "info";
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 $this->title = "The Faster Scale App | Previous Check-ins";
16 16
 $time = Yii::$container->get('common\interfaces\TimeInterface');
17 17
 $this->registerJsFile('/js/checkin/view.js', ['depends' => [\site\assets\AppAsset::class]]);
18
-if($answer_pie) {
18
+if ($answer_pie) {
19 19
   $this->registerJsFile('/js/checkin/charts/pie.js', ['depends' => [\site\assets\AppAsset::class]]);
20 20
 }
21 21
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 }
26 26
 
27 27
 $pie_data = [];
28
-if($answer_pie) {
28
+if ($answer_pie) {
29 29
   $values     = array_map('intval', array_column($answer_pie, "count"));
30 30
   $labels     = array_column($answer_pie, "name");
31 31
   $colors     = array_column($answer_pie, "color");
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
   <h1>View Previous Check-ins</h1>
52 52
 
53 53
   <?php
54
-              switch(true) {
54
+              switch (true) {
55 55
                 case ($score < 30):
56 56
                   $alert_level = "success";
57 57
                   $alert_msg = "You're doing well! Keep on doing whatever it is you're doing!";
@@ -112,16 +112,16 @@  discard block
 block discarded – undo
112 112
 </div>
113 113
 
114 114
 
115
-  <?php if($questions) {
115
+  <?php if ($questions) {
116 116
   print "<h3>Processing Questions:</h3>";
117
-  foreach($questions as $behavior_id => $behavior_questions) {
117
+  foreach ($questions as $behavior_id => $behavior_questions) {
118 118
     print "<div class='well well-sm'>";
119 119
     print "<button type='button' class='btn btn-primary' disabled='disabled'>{$behavior_questions['question']['title']}</button>";
120 120
     print "<div class='row'>";
121
-    foreach($behavior_questions['answers'] as $question) { 
121
+    foreach ($behavior_questions['answers'] as $question) { 
122 122
       print "<div class='col-md-4'>";
123 123
       print "<p><strong>{$question['title']}</strong></p>";
124
-      print "<p>".Html::encode($question['answer'])."</p>";
124
+      print "<p>" . Html::encode($question['answer']) . "</p>";
125 125
       print "</div>";
126 126
     }
127 127
     print "</div></div>";
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
     'options' => ['class' => 'form-horizontal'],
137 137
   ]);
138 138
 
139
-  foreach($categories as $category) {
139
+  foreach ($categories as $category) {
140 140
     $behaviors = AH::map($behaviorsList[$category['id']], 'id', 'name');
141 141
     print $form
142 142
             ->field($model, "behaviors{$category['id']}")
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
   ActiveForm::end();
147 147
 
148 148
 $this->registerJson($past_checkin_dates, "past-checkin-dates");
149
-if($answer_pie) {
149
+if ($answer_pie) {
150 150
   $this->registerJson($pie_data, "pie_data");
151 151
 }
152 152
 ?>
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,9 +102,12 @@
 block discarded – undo
102 102
         <div class='card-text'>
103 103
           <?php if ($pie_data): ?>
104 104
           <canvas id='category-pie-chart'></canvas>
105
-          <?php else: ?>
105
+          <?php else {
106
+  : ?>
106 107
           <p>no data</p>
107
-          <?php endif; ?>
108
+          <?php endif;
109
+}
110
+?>
108 111
         </div>
109 112
       </div>
110 113
     </div>
Please login to merge, or discard this patch.
site/controllers/SiteController.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
   public function actionIndex()
72 72
   {
73 73
     $time = Yii::$container->get(\common\interfaces\TimeInterface::class); 
74
-    $key = "index_blog_".$time->getLocalDate('UTC');
74
+    $key = "index_blog_" . $time->getLocalDate('UTC');
75 75
     $posts = Yii::$app->cache->get($key);
76
-    if($posts === false) {
76
+    if ($posts === false) {
77 77
       $posts = \Yii::$app->getModule('blog')
78 78
                             ->fetch()
79 79
                             ->parse()
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
   {
107 107
     $model = new ContactForm();
108 108
     if ($model->load(Yii::$app->request->post()) && $model->validate()) {
109
-      if($model->sendEmail(Yii::$app->params['adminEmail'])) {
109
+      if ($model->sendEmail(Yii::$app->params['adminEmail'])) {
110 110
         Yii::$app->session->setFlash('success', 'Thank you for contacting us. We will respond to you as soon as possible.');
111 111
       } else {
112 112
         Yii::$app->session->setFlash('error', 'There was an error sending email.');
@@ -138,10 +138,10 @@  discard block
 block discarded – undo
138 138
   public function actionSignup()
139 139
   {
140 140
     $model = Yii::$container->get(\site\models\SignupForm::class);
141
-    if($model->load(Yii::$app->request->post()) && $model->validate()) {
141
+    if ($model->load(Yii::$app->request->post()) && $model->validate()) {
142 142
       $model->signup();
143 143
       Yii::$app->getSession()->setFlash('success', 'We have sent a verification email to the email address you provided. Please check your inbox and follow the instructions to verify your account.');
144
-      return $this->redirect('/',302);
144
+      return $this->redirect('/', 302);
145 145
     }
146 146
 
147 147
     return $this->render('signup', [
@@ -152,10 +152,10 @@  discard block
 block discarded – undo
152 152
   public function actionRequestPasswordReset()
153 153
   {
154 154
     $model = Yii::$container->get(\site\models\PasswordResetRequestForm::class);
155
-    if($model->load(Yii::$app->request->post()) && $model->validate()) {
156
-      if(!$model->sendEmail()) {
155
+    if ($model->load(Yii::$app->request->post()) && $model->validate()) {
156
+      if (!$model->sendEmail()) {
157 157
         $ip = Yii::$app->getRequest()->getUserIP() ?: "UNKNOWN";
158
-        Yii::warning("$ip has tried to reset the password for ".$model->email);
158
+        Yii::warning("$ip has tried to reset the password for " . $model->email);
159 159
       }
160 160
 
161 161
       Yii::$app->getSession()->setFlash('success', 'If there is an account with the submitted email address you will receive further instructions in your email inbox.');
@@ -198,14 +198,14 @@  discard block
 block discarded – undo
198 198
       throw new BadRequestHttpException("Wrong or expired email verification token. If you aren't sure why this error occurs perhaps you've already verified your account. Please try logging in.");
199 199
     }
200 200
 
201
-    if($user->isTokenConfirmed($user->verify_email_token)) {
201
+    if ($user->isTokenConfirmed($user->verify_email_token)) {
202 202
       Yii::$app->getSession()->setFlash('success', 'Your account has already been verified. Please log in.');
203
-      return $this->redirect('/login',302);
203
+      return $this->redirect('/login', 302);
204 204
     } else if (Yii::$app->getUser()->login($user)) {
205 205
       $user->confirmVerifyEmailToken();
206 206
       $user->save();
207 207
       Yii::$app->getSession()->setFlash('success', 'Your account has been verified. Please continue with your check-in.');
208
-      return $this->redirect('/welcome',302);
208
+      return $this->redirect('/welcome', 302);
209 209
     }
210 210
   }
211 211
 
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
     }
217 217
 
218 218
     $user = Yii::$container->get(\common\interfaces\UserInterface::class)->findByChangeEmailToken($token);
219
-    var_dump( $user);
219
+    var_dump($user);
220 220
     exit();
221 221
     if (!$user) {
222 222
       throw new BadRequestHttpException("Wrong or expired email change token. If you aren't sure why this error occurs perhaps you've already confirmed your change of email. Please try logging in.");
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
     // log out the user (if they're logged in)
228 228
 
229 229
     Yii::$app->getSession()->setFlash('success', 'Your email address has been successfully changed. Please log in.');
230
-    return $this->redirect('/login',302);
230
+    return $this->redirect('/login', 302);
231 231
   }
232 232
 
233 233
   public function actionPrivacy()
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
   public function actionExport()
244 244
   {
245 245
     header("Content-Type: text/csv");
246
-    header("Content-Disposition: attachment; filename=fsa-data-export-".Yii::$app->user->identity->email."-".date('Ymd').".csv");
246
+    header("Content-Disposition: attachment; filename=fsa-data-export-" . Yii::$app->user->identity->email . "-" . date('Ymd') . ".csv");
247 247
 
248 248
     $reader = Yii::$app->user->identity->getExportData();
249 249
     $fp = fopen('php://output', 'w');
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
 
260 260
     fputcsv($fp, $header);
261 261
     $user_behavior = Yii::$container->get(\common\interfaces\UserBehaviorInterface::class);
262
-    while($row = $reader->read()) {
262
+    while ($row = $reader->read()) {
263 263
       $row = $user_behavior::decorateWithCategory([$row]);
264 264
       $row = Yii::$app->user->identity->cleanExportData($row);
265 265
       fputcsv($fp, $row[0]);
Please login to merge, or discard this patch.
site/controllers/ProfileController.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
             'allow'   => true,
28 28
             'roles'   => ['@'],
29 29
           ], [
30
-            'actions' => [ 'change-email', ],
30
+            'actions' => ['change-email', ],
31 31
             'allow'   => true,
32 32
           ],
33 33
         ],
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
     if ($editProfileForm->load(Yii::$app->request->post())) {
74 74
       $saved_user = $editProfileForm->saveProfile();
75
-      if($saved_user) {
75
+      if ($saved_user) {
76 76
         Yii::$app->getSession()->setFlash('success', 'New profile data saved!');
77 77
       }
78 78
     }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     $model = Yii::$container->get(\site\models\DeleteAccountForm::class, [Yii::$app->user->identity]);
91 91
 
92 92
     if ($model->load(Yii::$app->request->post()) && $model->validate()) {
93
-      if($model->deleteAccount()) {
93
+      if ($model->deleteAccount()) {
94 94
         $this->redirect(['site/index']);
95 95
       } else {
96 96
         Yii::$app->getSession()->setFlash('error', 'Wrong password!');
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     $model = Yii::$container->get(\site\models\ChangePasswordForm::class, [Yii::$app->user->identity]);
105 105
 
106 106
     if ($model->load(Yii::$app->request->post())) {
107
-      if($model->validate() && $model->changePassword()) {
107
+      if ($model->validate() && $model->changePassword()) {
108 108
         Yii::$app->getSession()->setFlash('success', 'Password successfully changed');
109 109
       } else {
110 110
         Yii::$app->getSession()->setFlash('error', 'Wrong password!');
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     $model = Yii::$container->get(\site\models\ChangeEmailForm::class, [Yii::$app->user->identity]);
119 119
 
120 120
     if ($model->load(Yii::$app->request->post()) && $model->validate()) {
121
-      if($model->changeEmail()) {
121
+      if ($model->changeEmail()) {
122 122
         Yii::$app->getSession()->setFlash('success', "We've sent an email to your requested email address to confirm. Please click on the verification link to continue.");
123 123
       } else {
124 124
         Yii::$app->getSession()->setFlash('error', 'Something went wrong!');
@@ -130,14 +130,14 @@  discard block
 block discarded – undo
130 130
 
131 131
   public function actionChangeEmail(string $token) {
132 132
     $user = \common\models\User::findByChangeEmailToken($token);
133
-    if($user) {
133
+    if ($user) {
134 134
       $validator = new \yii\validators\EmailValidator();
135
-      if($validator->validate($user->desired_email, $error)) {
135
+      if ($validator->validate($user->desired_email, $error)) {
136 136
         $user->removeChangeEmailToken();
137 137
         $user->email = $user->desired_email;
138 138
         $user->desired_email = null;
139 139
         $user->save();
140
-        if(!Yii::$app->user->isGuest) {
140
+        if (!Yii::$app->user->isGuest) {
141 141
           Yii::$app->user->logout();
142 142
           Yii::$app->session->setFlash('success', 'Your email address was successfully changed. For security, we\'ve logged you out.');
143 143
         } else {
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 
158 158
   public function actionExport() {
159 159
     header("Content-Type: text/csv");
160
-    header("Content-Disposition: attachment; filename=fsa-data-export-".Yii::$app->user->identity->email."-".date('Ymd').".csv");
160
+    header("Content-Disposition: attachment; filename=fsa-data-export-" . Yii::$app->user->identity->email . "-" . date('Ymd') . ".csv");
161 161
 
162 162
     $reader = Yii::$app->user->identity->getExportData();
163 163
     $fp = fopen('php://output', 'w');
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
 
174 174
     fputcsv($fp, $header);
175 175
     $user_behavior = Yii::$container->get(\common\interfaces\UserBehaviorInterface::class);
176
-    while($row = $reader->read()) {
176
+    while ($row = $reader->read()) {
177 177
       $row = $user_behavior::decorateWithCategory([$row]);
178 178
       $row = Yii::$app->user->identity->cleanExportData($row);
179 179
       fputcsv($fp, $row[0]);
Please login to merge, or discard this patch.
site/models/ChangeEmailForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
    */
47 47
   public function changeEmail() {
48 48
     $user = $this->user->findByEmail($this->desired_email);
49
-    if(!$user) {
49
+    if (!$user) {
50 50
       $this->user->desired_email = $this->desired_email;
51 51
       $this->user->generateChangeEmailToken();
52 52
       $this->user->save();
Please login to merge, or discard this patch.