Completed
Push — master ( a6b9e0...462ccf )
by Corey
03:34
created
site/tests/_support/UnitTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     use _generated\UnitTesterActions;
22 22
 
23
-   /**
24
-    * Define custom actions here
25
-    */
23
+    /**
24
+     * Define custom actions here
25
+     */
26 26
 }
Please login to merge, or discard this patch.
common/models/Category.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -15,13 +15,13 @@
 block discarded – undo
15 15
 
16 16
   // a weight of 0 means selections in that category do not increase the score
17 17
   public static $categories = [
18
-    [ "id" => 1, "weight" => 0,  "name" => "Restoration"],
19
-    [ "id" => 2, "weight" => 1,  "name" => "Forgetting Priorities"],
20
-    [ "id" => 3, "weight" => 2,  "name" => "Anxiety"],
21
-    [ "id" => 4, "weight" => 4,  "name" => "Speeding Up"],
22
-    [ "id" => 5, "weight" => 6,  "name" => "Ticked Off"],
23
-    [ "id" => 6, "weight" => 8,  "name" => "Exhausted"],
24
-    [ "id" => 7, "weight" => 10, "name" => "Relapse/Moral Failure"],
18
+    ["id" => 1, "weight" => 0, "name" => "Restoration"],
19
+    ["id" => 2, "weight" => 1, "name" => "Forgetting Priorities"],
20
+    ["id" => 3, "weight" => 2, "name" => "Anxiety"],
21
+    ["id" => 4, "weight" => 4, "name" => "Speeding Up"],
22
+    ["id" => 5, "weight" => 6, "name" => "Ticked Off"],
23
+    ["id" => 6, "weight" => 8, "name" => "Exhausted"],
24
+    ["id" => 7, "weight" => 10, "name" => "Relapse/Moral Failure"],
25 25
   ];
26 26
 
27 27
   public static $colors = [
Please login to merge, or discard this patch.
site/views/checkin/report.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -35,12 +35,12 @@
 block discarded – undo
35 35
                 <th>Behavior</th>
36 36
                 <th>Category</th>
37 37
             </tr>
38
-<?php foreach($top_behaviors as $key => $row) {
38
+<?php foreach ($top_behaviors as $key => $row) {
39 39
 $num = $key + 1;
40
-print "<tr>".
41
-  "<td>{$row['count']}</td>".
42
-  "<td>{$row['behavior']['name']}</td>".
43
-  "<td>{$row['behavior']['category']['name']}</td>".
40
+print "<tr>" .
41
+  "<td>{$row['count']}</td>" .
42
+  "<td>{$row['behavior']['name']}</td>" .
43
+  "<td>{$row['behavior']['category']['name']}</td>" .
44 44
   "</tr>";
45 45
 }
46 46
 ?>
Please login to merge, or discard this patch.
common/tests/unit/components/TimeTest.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
       $this->container->set('common\interfaces\UserBehaviorInterface', '\site\tests\_support\MockUserBehavior');
25 25
       $this->container->set('common\interfaces\QuestionInterface', '\site\tests\_support\MockQuestion');
26 26
 
27
-      $this->container->set('common\interfaces\TimeInterface', function () {
27
+      $this->container->set('common\interfaces\TimeInterface', function() {
28 28
         return new \common\components\Time('America/Los_Angeles');
29 29
       });
30 30
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     public function testGetLocalTime()
42 42
     {
43
-      $this->specify('getLocalTime should function correctly', function () {
43
+      $this->specify('getLocalTime should function correctly', function() {
44 44
         expect("getLocalTime should work with user's set time", $this->assertEquals($this->time->getLocalTime(), (new DateTime("now", new DateTimeZone("America/Los_Angeles")))->format("Y-m-d H:i:s")));
45 45
         expect('getLocalTime should work with a custom timezone', $this->assertEquals($this->time->getLocalTime("UTC"), (new DateTime("now"))->format("Y-m-d H:i:s")));
46 46
       });
@@ -48,13 +48,13 @@  discard block
 block discarded – undo
48 48
 
49 49
     public function testConvertLocalToUTC()
50 50
     {
51
-      $this->specify('convertLocalToUTC should function correctly', function () {
51
+      $this->specify('convertLocalToUTC should function correctly', function() {
52 52
         $la_tz = (new DateTime("now", new DateTimeZone("America/Los_Angeles")))->format("Y-m-d H:i:s");
53 53
 
54 54
         expect('convertLocalToUTC should convert a Los Angeles tz to UTC with the included time', $this->assertEquals($this->time->convertLocalToUTC($la_tz), (new DateTime("now"))->format("Y-m-d H:i:s")));
55 55
         expect('convertLocalToUTC should convert a Los Angeles tz to UTC without the included time', $this->assertEquals($this->time->convertLocalToUTC($la_tz, false), (new DateTime("now"))->format("Y-m-d")));
56 56
         // with UTC
57
-        $this->container->set('common\interfaces\TimeInterface', function () {
57
+        $this->container->set('common\interfaces\TimeInterface', function() {
58 58
           return new \common\components\Time('UTC');
59 59
         });
60 60
         $time = $this->container->get('common\interfaces\TimeInterface');
@@ -67,14 +67,14 @@  discard block
 block discarded – undo
67 67
 
68 68
     public function testConvertUTCToLocal()
69 69
     {
70
-      $this->specify('convertUTCToLocal should function correctly', function () {
70
+      $this->specify('convertUTCToLocal should function correctly', function() {
71 71
         $utc_tz = (new DateTime("now"))->format("Y-m-d H:i:s");
72 72
 
73 73
         expect('convertUTCToLocal should convert a UTC tz to Los Angeles with the included timezone', $this->assertEquals((new DateTime("now", new DateTimeZone("America/Los_Angeles")))->format(DateTime::ATOM), $this->time->convertUTCToLocal($utc_tz)));
74 74
         expect('convertUTCToLocal should convert a UTC tz to Los Angeles without the included timezone', $this->assertEquals($this->time->convertUTCToLocal($utc_tz, false), (new DateTime("now", new DateTimeZone("America/Los_Angeles")))->format("Y-m-d H:i:s")));
75 75
 
76 76
         // with UTC
77
-        $this->container->set('common\interfaces\TimeInterface', function () {
77
+        $this->container->set('common\interfaces\TimeInterface', function() {
78 78
           return new \common\components\Time('UTC');
79 79
         });
80 80
         $time = $this->container->get('common\interfaces\TimeInterface');
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 
88 88
     public function testGetLocalDate()
89 89
     {
90
-      $this->specify('getLocalDate should function correctly', function () {
90
+      $this->specify('getLocalDate should function correctly', function() {
91 91
         expect("getLocalDate should correctly get the user's local date", $this->assertEquals($this->time->getLocalDate(), (new DateTime("now", new DateTimeZone("America/Los_Angeles")))->format("Y-m-d")));
92 92
         expect("getLocalDate should correctly get the local date of a specified timezone", $this->assertEquals($this->time->getLocalDate("UTC"), (new DateTime("now", new DateTimeZone("UTC")))->format("Y-m-d")));
93 93
       });
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         expect('getUTCBookends should return false if there is a space at the end of the time string', $this->assertFalse($this->time->getUTCBookends('2016-05-30 00:00:00 ')));
110 110
         expect('getUTCBookends should return UTC bookend times from the Los_Angeles tz', $this->assertEquals($this->time->getUTCBookends('2016-05-30'), ['2016-05-30 07:00:00', '2016-05-31 06:59:59']));
111 111
         // with UTC
112
-        $this->container->set('common\interfaces\TimeInterface', function () {
112
+        $this->container->set('common\interfaces\TimeInterface', function() {
113 113
           return new \common\components\Time('UTC');
114 114
         });
115 115
         $time = $this->container->get('common\interfaces\TimeInterface');
Please login to merge, or discard this patch.
common/config/main.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
       'common\interfaces\QuestionInterface' => \common\models\Question::class,
11 11
       'common\interfaces\BehaviorInterface' => \common\models\Behavior::class,
12 12
       'common\interfaces\CategoryInterface' => \common\models\Category::class,
13
-      'common\interfaces\TimeInterface' => function () {
14
-        if(Yii::$app->user->getIsGuest()) {
13
+      'common\interfaces\TimeInterface' => function() {
14
+        if (Yii::$app->user->getIsGuest()) {
15 15
           return new \common\components\Time('UTC');
16 16
         } else {
17 17
           return new \common\components\Time(Yii::$app->user->identity->timezone);
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
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     // check that the desired_email is not already the email of another user
49 49
     $user = $this->user->findByEmail($this->desired_email);
50 50
     // if it is, we do nothing and return true, don't leak the data
51
-    if(!$user) {
51
+    if (!$user) {
52 52
       $this->user->desired_email = $this->desired_email;
53 53
       $this->user->generateChangeEmailToken();
54 54
       $this->user->save();
Please login to merge, or discard this patch.
site/controllers/ProfileController.php 1 patch
Spacing   +9 added lines, -9 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!');
@@ -128,14 +128,14 @@  discard block
 block discarded – undo
128 128
   public function actionChangeEmail(string $token) {
129 129
     $user = Yii::$container->get(\common\interfaces\UserInterface::class)->findByChangeEmailToken($token);
130 130
 
131
-    if($user) {
131
+    if ($user) {
132 132
       $validator = new \yii\validators\EmailValidator();
133
-      if($validator->validate($user->desired_email, $error)) {
133
+      if ($validator->validate($user->desired_email, $error)) {
134 134
         $user->removeChangeEmailToken();
135 135
         $user->email = $user->desired_email;
136 136
         $user->desired_email = null;
137 137
         $user->save();
138
-        if(!Yii::$app->user->isGuest) {
138
+        if (!Yii::$app->user->isGuest) {
139 139
           Yii::$app->user->logout();
140 140
           Yii::$app->session->setFlash('success', 'Your email address was successfully changed. For security, we\'ve logged you out.');
141 141
         } else {
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 
156 156
   public function actionExport() {
157 157
     header("Content-Type: text/csv");
158
-    header("Content-Disposition: attachment; filename=fsa-data-export-".Yii::$app->user->identity->email."-".date('Ymd').".csv");
158
+    header("Content-Disposition: attachment; filename=fsa-data-export-" . Yii::$app->user->identity->email . "-" . date('Ymd') . ".csv");
159 159
 
160 160
     $reader = Yii::$app->user->identity->getExportData();
161 161
     $fp = fopen('php://output', 'w');
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 
172 172
     fputcsv($fp, $header);
173 173
     $user_behavior = Yii::$container->get(\common\interfaces\UserBehaviorInterface::class);
174
-    while($row = $reader->read()) {
174
+    while ($row = $reader->read()) {
175 175
       $row = $user_behavior::decorateWithCategory([$row]);
176 176
       $row = Yii::$app->user->identity->cleanExportData($row);
177 177
       fputcsv($fp, $row[0]);
Please login to merge, or discard this patch.
common/models/Behavior.php 1 patch
Spacing   +99 added lines, -99 removed lines patch added patch discarded remove patch
@@ -14,103 +14,103 @@  discard block
 block discarded – undo
14 14
 class Behavior extends \yii\base\BaseObject implements BehaviorInterface
15 15
 {
16 16
   public static $behaviors = [
17
-    ['id' => 1,   'name' => 'no current secrets', 'category_id' => 1],
18
-    ['id' => 2,   'name' => 'resolving problems', 'category_id' => 1],
19
-    ['id' => 3,   'name' => 'identifying fears and feelings', 'category_id' => 1],
20
-    ['id' => 4,   'name' => 'keeping commitments to meetings, prayer, family, church, people, goals, and self', 'category_id' => 1],
21
-    ['id' => 5,   'name' => 'being open', 'category_id' => 1],
22
-    ['id' => 6,   'name' => 'being honest', 'category_id' => 1],
23
-    ['id' => 7,   'name' => 'making eye contact', 'category_id' => 1],
24
-    ['id' => 8,   'name' => 'reaching out to others', 'category_id' => 1],
25
-    ['id' => 9,   'name' => 'increasing in relationships with God and others', 'category_id' => 1],
26
-    ['id' => 10,  'name' => 'accountability', 'category_id' => 1],
27
-    ['id' => 11,  'name' => 'secrets', 'category_id' => 2],
28
-    ['id' => 12,  'name' => 'bored', 'category_id' => 2],
29
-    ['id' => 13,  'name' => 'less time/energy for God, meetings, and church', 'category_id' => 2],
30
-    ['id' => 14,  'name' => 'avoiding support and accountability towards people', 'category_id' => 2],
31
-    ['id' => 15,  'name' => 'superficial conversations', 'category_id' => 2],
32
-    ['id' => 16,  'name' => 'sarcasm', 'category_id' => 2],
33
-    ['id' => 17,  'name' => 'isolating yourself', 'category_id' => 2],
34
-    ['id' => 18,  'name' => 'changes in goals', 'category_id' => 2],
35
-    ['id' => 19,  'name' => 'flirting', 'category_id' => 2],
36
-    ['id' => 20,  'name' => 'obsessed with relationships', 'category_id' => 2],
37
-    ['id' => 21,  'name' => 'breaking promises/commitments', 'category_id' => 2],
38
-    ['id' => 22,  'name' => 'neglecting family', 'category_id' => 2],
39
-    ['id' => 23,  'name' => 'preoccupation with material things, television, or entertainment', 'category_id' => 2],
40
-    ['id' => 24,  'name' => 'procrastination', 'category_id' => 2],
41
-    ['id' => 25,  'name' => 'lying', 'category_id' => 2],
42
-    ['id' => 26,  'name' => 'over-confidence', 'category_id' => 2],
43
-    ['id' => 27,  'name' => 'hiding money', 'category_id' => 2],
44
-    ['id' => 28,  'name' => 'worry', 'category_id' => 3],
45
-    ['id' => 29,  'name' => 'using profanity', 'category_id' => 3],
46
-    ['id' => 30,  'name' => 'being fearful', 'category_id' => 3],
47
-    ['id' => 31,  'name' => 'being resentful', 'category_id' => 3],
48
-    ['id' => 32,  'name' => 'replaying old, negative thoughts', 'category_id' => 3],
49
-    ['id' => 33,  'name' => 'perfectionism', 'category_id' => 3],
50
-    ['id' => 34,  'name' => 'judging others\' motives', 'category_id' => 3],
51
-    ['id' => 35,  'name' => 'making goals and lists you can\'t complete', 'category_id' => 3],
52
-    ['id' => 36,  'name' => 'poor planning', 'category_id' => 3],
53
-    ['id' => 37,  'name' => 'mind reading', 'category_id' => 3],
54
-    ['id' => 38,  'name' => 'fantasy', 'category_id' => 3],
55
-    ['id' => 41,  'name' => 'co-dependent rescuing', 'category_id' => 3],
56
-    ['id' => 42,  'name' => 'sleep problems', 'category_id' => 3],
57
-    ['id' => 43,  'name' => 'trouble concentrating', 'category_id' => 3],
58
-    ['id' => 44,  'name' => 'seeking/creating drama', 'category_id' => 3],
59
-    ['id' => 45,  'name' => 'gossip', 'category_id' => 3],
60
-    ['id' => 46,  'name' => 'using over-the-counter medication for pain, sleep, and weight control', 'category_id' => 3],
61
-    ['id' => 47,  'name' => 'super busy', 'category_id' => 4],
62
-    ['id' => 48,  'name' => 'workaholic', 'category_id' => 4],
63
-    ['id' => 49,  'name' => 'can\'t relax', 'category_id' => 4],
64
-    ['id' => 50,  'name' => 'driving too fast', 'category_id' => 4],
65
-    ['id' => 51,  'name' => 'avoiding slowing down', 'category_id' => 4],
66
-    ['id' => 52,  'name' => 'feeling driven', 'category_id' => 4],
67
-    ['id' => 53,  'name' => 'in a hurry', 'category_id' => 4],
68
-    ['id' => 54,  'name' => 'can\'t turn off thoughts', 'category_id' => 4],
69
-    ['id' => 55,  'name' => 'skipping meals', 'category_id' => 4],
70
-    ['id' => 56,  'name' => 'binge eating (usually at night)', 'category_id' => 4],
71
-    ['id' => 57,  'name' => 'overspending', 'category_id' => 4],
72
-    ['id' => 58,  'name' => 'can\'t identify own feelings/needs', 'category_id' => 4],
73
-    ['id' => 59,  'name' => 'repetitive, negative thoughts', 'category_id' => 4],
74
-    ['id' => 60,  'name' => 'irritable', 'category_id' => 4],
75
-    ['id' => 61,  'name' => 'making excuses for "having to do it all"', 'category_id' => 4],
76
-    ['id' => 62,  'name' => 'dramatic mood swings', 'category_id' => 4],
77
-    ['id' => 63,  'name' => 'lust', 'category_id' => 4],
78
-    ['id' => 64,  'name' => 'too much caffeine', 'category_id' => 4],
79
-    ['id' => 65,  'name' => 'over exercising', 'category_id' => 4],
80
-    ['id' => 66,  'name' => 'nervousness', 'category_id' => 4],
81
-    ['id' => 67,  'name' => 'difficulty being alone or with people', 'category_id' => 4],
82
-    ['id' => 68,  'name' => 'difficulty listening to others', 'category_id' => 4],
83
-    ['id' => 69,  'name' => 'avoiding support', 'category_id' => 4],
84
-    ['id' => 70,  'name' => 'procrastination causing crises in money, work, or relationships', 'category_id' => 5],
85
-    ['id' => 71,  'name' => 'sarcasm', 'category_id' => 5],
86
-    ['id' => 72,  'name' => 'black and white, all or nothing thinking', 'category_id' => 5],
87
-    ['id' => 73,  'name' => 'feeling that no one understands', 'category_id' => 5],
88
-    ['id' => 74,  'name' => 'overreacting', 'category_id' => 5],
89
-    ['id' => 75,  'name' => 'road rage', 'category_id' => 5],
90
-    ['id' => 76,  'name' => 'constant resentments', 'category_id' => 5],
91
-    ['id' => 77,  'name' => 'pushing others away', 'category_id' => 5],
92
-    ['id' => 78,  'name' => 'increased isolation', 'category_id' => 5],
93
-    ['id' => 79,  'name' => 'blaming', 'category_id' => 5],
94
-    ['id' => 80,  'name' => 'self pity', 'category_id' => 5],
95
-    ['id' => 81,  'name' => 'arguing', 'category_id' => 5],
96
-    ['id' => 82,  'name' => 'irrationality', 'category_id' => 5],
97
-    ['id' => 83,  'name' => 'can\'t handle criticism', 'category_id' => 5],
98
-    ['id' => 84,  'name' => 'defensive', 'category_id' => 5],
99
-    ['id' => 85,  'name' => 'people are avoiding you', 'category_id' => 5],
100
-    ['id' => 86,  'name' => 'having to be right', 'category_id' => 5],
101
-    ['id' => 87,  'name' => 'digestive problems', 'category_id' => 5],
102
-    ['id' => 88,  'name' => 'headaches', 'category_id' => 5],
103
-    ['id' => 89,  'name' => 'obsessive (stuck) thoughts', 'category_id' => 5],
104
-    ['id' => 90,  'name' => 'can\'t forgive', 'category_id' => 5],
105
-    ['id' => 91,  'name' => 'feeling grandiose (superior)', 'category_id' => 5],
106
-    ['id' => 92,  'name' => 'intimidation', 'category_id' => 5],
107
-    ['id' => 93,  'name' => 'feeling aggressive', 'category_id' => 5],
108
-    ['id' => 94,  'name' => 'depressed', 'category_id' => 6],
109
-    ['id' => 95,  'name' => 'panicked', 'category_id' => 6],
110
-    ['id' => 96,  'name' => 'confused', 'category_id' => 6],
111
-    ['id' => 97,  'name' => 'hopeless', 'category_id' => 6],
112
-    ['id' => 98,  'name' => 'sleeping too much or too little', 'category_id' => 6],
113
-    ['id' => 99,  'name' => 'can\'t cope', 'category_id' => 6],
17
+    ['id' => 1, 'name' => 'no current secrets', 'category_id' => 1],
18
+    ['id' => 2, 'name' => 'resolving problems', 'category_id' => 1],
19
+    ['id' => 3, 'name' => 'identifying fears and feelings', 'category_id' => 1],
20
+    ['id' => 4, 'name' => 'keeping commitments to meetings, prayer, family, church, people, goals, and self', 'category_id' => 1],
21
+    ['id' => 5, 'name' => 'being open', 'category_id' => 1],
22
+    ['id' => 6, 'name' => 'being honest', 'category_id' => 1],
23
+    ['id' => 7, 'name' => 'making eye contact', 'category_id' => 1],
24
+    ['id' => 8, 'name' => 'reaching out to others', 'category_id' => 1],
25
+    ['id' => 9, 'name' => 'increasing in relationships with God and others', 'category_id' => 1],
26
+    ['id' => 10, 'name' => 'accountability', 'category_id' => 1],
27
+    ['id' => 11, 'name' => 'secrets', 'category_id' => 2],
28
+    ['id' => 12, 'name' => 'bored', 'category_id' => 2],
29
+    ['id' => 13, 'name' => 'less time/energy for God, meetings, and church', 'category_id' => 2],
30
+    ['id' => 14, 'name' => 'avoiding support and accountability towards people', 'category_id' => 2],
31
+    ['id' => 15, 'name' => 'superficial conversations', 'category_id' => 2],
32
+    ['id' => 16, 'name' => 'sarcasm', 'category_id' => 2],
33
+    ['id' => 17, 'name' => 'isolating yourself', 'category_id' => 2],
34
+    ['id' => 18, 'name' => 'changes in goals', 'category_id' => 2],
35
+    ['id' => 19, 'name' => 'flirting', 'category_id' => 2],
36
+    ['id' => 20, 'name' => 'obsessed with relationships', 'category_id' => 2],
37
+    ['id' => 21, 'name' => 'breaking promises/commitments', 'category_id' => 2],
38
+    ['id' => 22, 'name' => 'neglecting family', 'category_id' => 2],
39
+    ['id' => 23, 'name' => 'preoccupation with material things, television, or entertainment', 'category_id' => 2],
40
+    ['id' => 24, 'name' => 'procrastination', 'category_id' => 2],
41
+    ['id' => 25, 'name' => 'lying', 'category_id' => 2],
42
+    ['id' => 26, 'name' => 'over-confidence', 'category_id' => 2],
43
+    ['id' => 27, 'name' => 'hiding money', 'category_id' => 2],
44
+    ['id' => 28, 'name' => 'worry', 'category_id' => 3],
45
+    ['id' => 29, 'name' => 'using profanity', 'category_id' => 3],
46
+    ['id' => 30, 'name' => 'being fearful', 'category_id' => 3],
47
+    ['id' => 31, 'name' => 'being resentful', 'category_id' => 3],
48
+    ['id' => 32, 'name' => 'replaying old, negative thoughts', 'category_id' => 3],
49
+    ['id' => 33, 'name' => 'perfectionism', 'category_id' => 3],
50
+    ['id' => 34, 'name' => 'judging others\' motives', 'category_id' => 3],
51
+    ['id' => 35, 'name' => 'making goals and lists you can\'t complete', 'category_id' => 3],
52
+    ['id' => 36, 'name' => 'poor planning', 'category_id' => 3],
53
+    ['id' => 37, 'name' => 'mind reading', 'category_id' => 3],
54
+    ['id' => 38, 'name' => 'fantasy', 'category_id' => 3],
55
+    ['id' => 41, 'name' => 'co-dependent rescuing', 'category_id' => 3],
56
+    ['id' => 42, 'name' => 'sleep problems', 'category_id' => 3],
57
+    ['id' => 43, 'name' => 'trouble concentrating', 'category_id' => 3],
58
+    ['id' => 44, 'name' => 'seeking/creating drama', 'category_id' => 3],
59
+    ['id' => 45, 'name' => 'gossip', 'category_id' => 3],
60
+    ['id' => 46, 'name' => 'using over-the-counter medication for pain, sleep, and weight control', 'category_id' => 3],
61
+    ['id' => 47, 'name' => 'super busy', 'category_id' => 4],
62
+    ['id' => 48, 'name' => 'workaholic', 'category_id' => 4],
63
+    ['id' => 49, 'name' => 'can\'t relax', 'category_id' => 4],
64
+    ['id' => 50, 'name' => 'driving too fast', 'category_id' => 4],
65
+    ['id' => 51, 'name' => 'avoiding slowing down', 'category_id' => 4],
66
+    ['id' => 52, 'name' => 'feeling driven', 'category_id' => 4],
67
+    ['id' => 53, 'name' => 'in a hurry', 'category_id' => 4],
68
+    ['id' => 54, 'name' => 'can\'t turn off thoughts', 'category_id' => 4],
69
+    ['id' => 55, 'name' => 'skipping meals', 'category_id' => 4],
70
+    ['id' => 56, 'name' => 'binge eating (usually at night)', 'category_id' => 4],
71
+    ['id' => 57, 'name' => 'overspending', 'category_id' => 4],
72
+    ['id' => 58, 'name' => 'can\'t identify own feelings/needs', 'category_id' => 4],
73
+    ['id' => 59, 'name' => 'repetitive, negative thoughts', 'category_id' => 4],
74
+    ['id' => 60, 'name' => 'irritable', 'category_id' => 4],
75
+    ['id' => 61, 'name' => 'making excuses for "having to do it all"', 'category_id' => 4],
76
+    ['id' => 62, 'name' => 'dramatic mood swings', 'category_id' => 4],
77
+    ['id' => 63, 'name' => 'lust', 'category_id' => 4],
78
+    ['id' => 64, 'name' => 'too much caffeine', 'category_id' => 4],
79
+    ['id' => 65, 'name' => 'over exercising', 'category_id' => 4],
80
+    ['id' => 66, 'name' => 'nervousness', 'category_id' => 4],
81
+    ['id' => 67, 'name' => 'difficulty being alone or with people', 'category_id' => 4],
82
+    ['id' => 68, 'name' => 'difficulty listening to others', 'category_id' => 4],
83
+    ['id' => 69, 'name' => 'avoiding support', 'category_id' => 4],
84
+    ['id' => 70, 'name' => 'procrastination causing crises in money, work, or relationships', 'category_id' => 5],
85
+    ['id' => 71, 'name' => 'sarcasm', 'category_id' => 5],
86
+    ['id' => 72, 'name' => 'black and white, all or nothing thinking', 'category_id' => 5],
87
+    ['id' => 73, 'name' => 'feeling that no one understands', 'category_id' => 5],
88
+    ['id' => 74, 'name' => 'overreacting', 'category_id' => 5],
89
+    ['id' => 75, 'name' => 'road rage', 'category_id' => 5],
90
+    ['id' => 76, 'name' => 'constant resentments', 'category_id' => 5],
91
+    ['id' => 77, 'name' => 'pushing others away', 'category_id' => 5],
92
+    ['id' => 78, 'name' => 'increased isolation', 'category_id' => 5],
93
+    ['id' => 79, 'name' => 'blaming', 'category_id' => 5],
94
+    ['id' => 80, 'name' => 'self pity', 'category_id' => 5],
95
+    ['id' => 81, 'name' => 'arguing', 'category_id' => 5],
96
+    ['id' => 82, 'name' => 'irrationality', 'category_id' => 5],
97
+    ['id' => 83, 'name' => 'can\'t handle criticism', 'category_id' => 5],
98
+    ['id' => 84, 'name' => 'defensive', 'category_id' => 5],
99
+    ['id' => 85, 'name' => 'people are avoiding you', 'category_id' => 5],
100
+    ['id' => 86, 'name' => 'having to be right', 'category_id' => 5],
101
+    ['id' => 87, 'name' => 'digestive problems', 'category_id' => 5],
102
+    ['id' => 88, 'name' => 'headaches', 'category_id' => 5],
103
+    ['id' => 89, 'name' => 'obsessive (stuck) thoughts', 'category_id' => 5],
104
+    ['id' => 90, 'name' => 'can\'t forgive', 'category_id' => 5],
105
+    ['id' => 91, 'name' => 'feeling grandiose (superior)', 'category_id' => 5],
106
+    ['id' => 92, 'name' => 'intimidation', 'category_id' => 5],
107
+    ['id' => 93, 'name' => 'feeling aggressive', 'category_id' => 5],
108
+    ['id' => 94, 'name' => 'depressed', 'category_id' => 6],
109
+    ['id' => 95, 'name' => 'panicked', 'category_id' => 6],
110
+    ['id' => 96, 'name' => 'confused', 'category_id' => 6],
111
+    ['id' => 97, 'name' => 'hopeless', 'category_id' => 6],
112
+    ['id' => 98, 'name' => 'sleeping too much or too little', 'category_id' => 6],
113
+    ['id' => 99, 'name' => 'can\'t cope', 'category_id' => 6],
114 114
     ['id' => 100, 'name' => 'overwhelmed', 'category_id' => 6],
115 115
     ['id' => 101, 'name' => 'crying for "no reason"', 'category_id' => 6],
116 116
     ['id' => 102, 'name' => 'can\'t think', 'category_id' => 6],
@@ -181,10 +181,10 @@  discard block
 block discarded – undo
181 181
     $bhvrs_by_cat = AH::index(self::$behaviors, null, 'category_id');
182 182
     $cats = AH::index(\common\models\Category::$categories, "id");
183 183
     $weights_sum = array_sum(array_column($cats, 'weight'));
184
-    foreach($cats as $id => &$cat) {
184
+    foreach ($cats as $id => &$cat) {
185 185
       $cat['behavior_count'] = count($bhvrs_by_cat[$id]); // add count of behaviors
186 186
       $cat['category_id'] = $cat['id']; // rename id to category_id 
187
-      $cat['weight'] = (100 * $cat['weight']) / $weights_sum; // normalize weight
187
+      $cat['weight'] = (100*$cat['weight'])/$weights_sum; // normalize weight
188 188
       unset($cat['id']);
189 189
     }
190 190
     return $cats;
Please login to merge, or discard this patch.
site/views/site/contact.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         <?= $form->field($model, 'subject') ?>
58 58
         <?= $form->field($model, 'body')->textArea(['rows' => 6]) ?>
59 59
 
60
-        <?php if(Yii::$app->user->isGuest) {
60
+        <?php if (Yii::$app->user->isGuest) {
61 61
           // only show captcha if user is not logged in
62 62
           print $form->field($model, 'verifyCode')->widget(Captcha::class, [
63 63
             'template' => '<div class="row"><div class="col-md-4">{image}</div><div class="col-md-8">{input}</div></div>',
Please login to merge, or discard this patch.