Completed
Push — master ( e125e7...e04318 )
by Sathish
14:33
created
src/Extension/UserManagementConfigExtension.php 2 patches
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
             'Root.UserManagement',
43 43
             TreeDropdownField::create(
44 44
                 'CustomerGroupID',
45
-                _t(__CLASS__ . '.CustomerGroup', 'Group to add new customers to'),
45
+                _t(__CLASS__.'.CustomerGroup', 'Group to add new customers to'),
46 46
                 Group::class
47 47
             )
48 48
         );
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
             'Root.UserManagement',
51 51
             TreeDropdownField::create(
52 52
                 'LoginUrlID',
53
-                _t(__CLASS__ . '.LoginUrl', 'Login Url'),
53
+                _t(__CLASS__.'.LoginUrl', 'Login Url'),
54 54
                 SiteTree::class
55 55
             )
56 56
         );
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             'Root.UserManagement',
59 59
             TreeDropdownField::create(
60 60
                 'LoginCallBackUrlID',
61
-                _t(__CLASS__ . '.LoginCallBackUrl', 'Login Call Back Url'),
61
+                _t(__CLASS__.'.LoginCallBackUrl', 'Login Call Back Url'),
62 62
                 SiteTree::class
63 63
             )
64 64
         );
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
             'Root.UserManagement',
67 67
             TreeDropdownField::create(
68 68
                 'LostPasswordUrlID',
69
-                _t(__CLASS__ . '.LostPasswordUrl', 'Lost Password Url'),
69
+                _t(__CLASS__.'.LostPasswordUrl', 'Lost Password Url'),
70 70
                 SiteTree::class
71 71
             )
72 72
         );
@@ -74,21 +74,21 @@  discard block
 block discarded – undo
74 74
             'Root.UserManagement',
75 75
             TextareaField::create(
76 76
                 'ProfileUpdateSuccess',
77
-                _t(__CLASS__ . '.ProfileUpdateSuccess', 'Profile update Success Message')
77
+                _t(__CLASS__.'.ProfileUpdateSuccess', 'Profile update Success Message')
78 78
             )
79 79
         );
80 80
         $fields->addFieldToTab(
81 81
             'Root.UserManagement',
82 82
             TextareaField::create(
83 83
                 'ProfileUpdatError',
84
-                _t(__CLASS__ . '.ProfileUpdatError', 'Profile update Error Message')
84
+                _t(__CLASS__.'.ProfileUpdatError', 'Profile update Error Message')
85 85
             )
86 86
         );
87 87
         $fields->addFieldToTab(
88 88
             'Root.UserManagement',
89 89
             CheckboxField::create(
90 90
                 'EnableSpamProtection',
91
-                _t(__CLASS__ . '.EnableSpamProtection', 'Enable Spam Protection')
91
+                _t(__CLASS__.'.EnableSpamProtection', 'Enable Spam Protection')
92 92
             )
93 93
         );
94 94
         
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
         if (!$this->owner->LoginUrl()->ID) {
114 114
             $LoginUrl = SiteTree::get()
115 115
                 ->filter('ClassName', 'UserManagement\Page\UserLoginPage');
116
-            if($LoginUrl->count() > 0)
116
+            if ($LoginUrl->count() > 0)
117 117
                 return $LoginUrl->first()->ID;
118 118
             else
119 119
                 return;
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
         if (!$this->owner->LoginCallBackUrl()->ID) {
133 133
             $LoginCallBackUrl = SiteTree::get()
134 134
             ->filter('ClassName', 'UserManagement\Page\UserProfilePage');
135
-            if($LoginCallBackUrl->count() > 0)
135
+            if ($LoginCallBackUrl->count() > 0)
136 136
                 return $LoginCallBackUrl->first()->ID;
137 137
             else
138 138
                 return;
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     {
151 151
         if (!$this->owner->LostPasswordUrl()->ID) {
152 152
             $LostPasswordUrl = SiteTree::get()->filter('ClassName', 'UserManagement\Page\LostPasswordPage');
153
-            if($LostPasswordUrl->count()>0)
153
+            if ($LostPasswordUrl->count() > 0)
154 154
                 return $LostPasswordUrl->first()->ID;
155 155
             else
156 156
                 return;
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
     {
170 170
         if (!$this->owner->CustomerGroup()->ID) {
171 171
             $group = Group::get()->filter('Title', 'general');
172
-            if($group->count() > 0)
172
+            if ($group->count() > 0)
173 173
                 return Group::get()->filter('Title', 'general')->first()->ID;
174 174
             else
175 175
                 return;
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
     public function getExportFieldNames()
182 182
     {
183 183
         $memberFields = Member::create()->getFrontEndFields()->dataFieldNames();
184
-        $memberFields = array_diff($memberFields, ["FirstName", "Surname", "Email", "TempIDHash", "TempIDExpired", "AutoLoginHash", "AutoLoginExpired","PasswordEncryption","Salt","Locale", "FailedLoginCount", "LockedOutUntil", "Password", "PasswordExpiry"]);
184
+        $memberFields = array_diff($memberFields, ["FirstName", "Surname", "Email", "TempIDHash", "TempIDExpired", "AutoLoginHash", "AutoLoginExpired", "PasswordEncryption", "Salt", "Locale", "FailedLoginCount", "LockedOutUntil", "Password", "PasswordExpiry"]);
185 185
         return array_combine($memberFields, $memberFields);
186 186
     }
187 187
 }
Please login to merge, or discard this patch.
Braces   +20 added lines, -16 removed lines patch added patch discarded remove patch
@@ -113,10 +113,11 @@  discard block
 block discarded – undo
113 113
         if (!$this->owner->LoginUrl()->ID) {
114 114
             $LoginUrl = SiteTree::get()
115 115
                 ->filter('ClassName', 'UserManagement\Page\UserLoginPage');
116
-            if($LoginUrl->count() > 0)
117
-                return $LoginUrl->first()->ID;
118
-            else
119
-                return;
116
+            if($LoginUrl->count() > 0) {
117
+                            return $LoginUrl->first()->ID;
118
+            } else {
119
+                            return;
120
+            }
120 121
         } else {
121 122
             return $this->owner->LoginUrl()->ID;
122 123
         }
@@ -132,10 +133,11 @@  discard block
 block discarded – undo
132 133
         if (!$this->owner->LoginCallBackUrl()->ID) {
133 134
             $LoginCallBackUrl = SiteTree::get()
134 135
             ->filter('ClassName', 'UserManagement\Page\UserProfilePage');
135
-            if($LoginCallBackUrl->count() > 0)
136
-                return $LoginCallBackUrl->first()->ID;
137
-            else
138
-                return;
136
+            if($LoginCallBackUrl->count() > 0) {
137
+                            return $LoginCallBackUrl->first()->ID;
138
+            } else {
139
+                            return;
140
+            }
139 141
         } else {
140 142
             return $this->owner->LoginCallBackUrl()->ID;
141 143
         }
@@ -150,10 +152,11 @@  discard block
 block discarded – undo
150 152
     {
151 153
         if (!$this->owner->LostPasswordUrl()->ID) {
152 154
             $LostPasswordUrl = SiteTree::get()->filter('ClassName', 'UserManagement\Page\LostPasswordPage');
153
-            if($LostPasswordUrl->count()>0)
154
-                return $LostPasswordUrl->first()->ID;
155
-            else
156
-                return;
155
+            if($LostPasswordUrl->count()>0) {
156
+                            return $LostPasswordUrl->first()->ID;
157
+            } else {
158
+                            return;
159
+            }
157 160
         } else {
158 161
             return $this->owner->LostPasswordUrl()->ID;
159 162
         }
@@ -169,10 +172,11 @@  discard block
 block discarded – undo
169 172
     {
170 173
         if (!$this->owner->CustomerGroup()->ID) {
171 174
             $group = Group::get()->filter('Title', 'general');
172
-            if($group->count() > 0)
173
-                return Group::get()->filter('Title', 'general')->first()->ID;
174
-            else
175
-                return;
175
+            if($group->count() > 0) {
176
+                            return Group::get()->filter('Title', 'general')->first()->ID;
177
+            } else {
178
+                            return;
179
+            }
176 180
         } else {
177 181
             return $this->owner->CustomerGroup()->ID;
178 182
         }
Please login to merge, or discard this patch.