@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | } |
128 | 128 | } |
129 | 129 | if (count($errors)) { |
130 | - \SS_Log::log('setCurrentStore errors - ' . json_encode($errors), \SS_Log::WARN); |
|
130 | + \SS_Log::log('setCurrentStore errors - '.json_encode($errors), \SS_Log::WARN); |
|
131 | 131 | } |
132 | 132 | } |
133 | 133 | } |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | |
143 | 143 | $errors = array_merge($errors, $client->getErrors($result)); |
144 | 144 | if (count($errors)) { |
145 | - \SS_Log::log('updateStore errors - ' . json_encode($errors), \SS_Log::WARN); |
|
145 | + \SS_Log::log('updateStore errors - '.json_encode($errors), \SS_Log::WARN); |
|
146 | 146 | } |
147 | 147 | } |
148 | 148 | |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | |
170 | 170 | $errors = array_merge($errors, $client->getErrors($result)); |
171 | 171 | if (count($errors)) { |
172 | - \SS_Log::log('setItemCategoriesURL errors - ' . json_encode($errors), \SS_Log::WARN); |
|
172 | + \SS_Log::log('setItemCategoriesURL errors - '.json_encode($errors), \SS_Log::WARN); |
|
173 | 173 | } |
174 | 174 | } |
175 | 175 | |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | |
195 | 195 | $errors = array_merge($errors, $client->getErrors($result)); |
196 | 196 | if (count($errors)) { |
197 | - \SS_Log::log('setItemCategories errors - ' . json_encode($errors), \SS_Log::WARN); |
|
197 | + \SS_Log::log('setItemCategories errors - '.json_encode($errors), \SS_Log::WARN); |
|
198 | 198 | } |
199 | 199 | } |
200 | 200 | |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | } |
218 | 218 | $errors = array_merge($errors, $client->getErrors($result)); |
219 | 219 | if (count($errors)) { |
220 | - \SS_Log::log('getCategory errors - ' . json_encode($errors), \SS_Log::WARN); |
|
220 | + \SS_Log::log('getCategory errors - '.json_encode($errors), \SS_Log::WARN); |
|
221 | 221 | } |
222 | 222 | } |
223 | 223 | } |
@@ -234,12 +234,12 @@ discard block |
||
234 | 234 | |
235 | 235 | if ($category = $this->getCategory($data['code'])) { |
236 | 236 | $result = $client->patch($category, $data); |
237 | - } else { |
|
237 | + }else { |
|
238 | 238 | $result = $client->post($this->getItemCategoriesURL(), $data); |
239 | 239 | } |
240 | 240 | $errors = array_merge($errors, $client->getErrors($result)); |
241 | 241 | if (count($errors)) { |
242 | - \SS_Log::log('putCategory errors - ' . json_encode($errors), \SS_Log::WARN); |
|
242 | + \SS_Log::log('putCategory errors - '.json_encode($errors), \SS_Log::WARN); |
|
243 | 243 | } |
244 | 244 | } |
245 | 245 | |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | |
257 | 257 | $errors = array_merge($errors, $client->getErrors($result)); |
258 | 258 | if (count($errors)) { |
259 | - \SS_Log::log('deleteCategory errors - ' . json_encode($errors), \SS_Log::WARN); |
|
259 | + \SS_Log::log('deleteCategory errors - '.json_encode($errors), \SS_Log::WARN); |
|
260 | 260 | } |
261 | 261 | } |
262 | 262 | } |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | use Dynamic\FoxyStripe\Model\FoxyStripeClient; |
4 | 4 | |
5 | -class FoxyStripeSiteConfig extends DataExtension{ |
|
5 | +class FoxyStripeSiteConfig extends DataExtension { |
|
6 | 6 | |
7 | 7 | private static $db = array( |
8 | 8 | 'StoreTitle' => 'Varchar(255)', |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | 'ProductLimit' => 10 |
28 | 28 | ); |
29 | 29 | |
30 | - public function updateCMSFields(FieldList $fields){ |
|
30 | + public function updateCMSFields(FieldList $fields) { |
|
31 | 31 | |
32 | 32 | // set TabSet names to avoid spaces from camel case |
33 | 33 | $fields->addFieldToTab('Root', new TabSet('FoxyStripe', 'FoxyStripe')); |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | )); |
84 | 84 | |
85 | 85 | // configuration warning |
86 | - if(FoxyCart::store_name_warning()!==null){ |
|
86 | + if (FoxyCart::store_name_warning() !== null) { |
|
87 | 87 | $fields->insertBefore(LiteralField::create( |
88 | 88 | "StoreSubDomainHeaderWarning", |
89 | 89 | _t( |
@@ -174,14 +174,14 @@ discard block |
||
174 | 174 | |
175 | 175 | $siteConfig = SiteConfig::current_site_config(); |
176 | 176 | |
177 | - if(!$siteConfig->StoreKey) { |
|
177 | + if (!$siteConfig->StoreKey) { |
|
178 | 178 | $key = FoxyCart::setStoreKey(); |
179 | - while(!ctype_alnum($key)){ |
|
179 | + while (!ctype_alnum($key)) { |
|
180 | 180 | $key = FoxyCart::setStoreKey(); |
181 | 181 | } |
182 | 182 | $siteConfig->StoreKey = $key; |
183 | 183 | $siteConfig->write(); |
184 | - DB::alteration_message($siteConfig->ClassName.": created FoxyCart Store Key " . $key, 'created'); |
|
184 | + DB::alteration_message($siteConfig->ClassName.": created FoxyCart Store Key ".$key, 'created'); |
|
185 | 185 | } |
186 | 186 | } |
187 | 187 | |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | |
228 | 228 | $errors = array_merge($errors, $client->getErrors($result)); |
229 | 229 | if (count($errors)) { |
230 | - \SS_Log::log('FoxyStripeSiteConfig::onBeforeWrite errors - ' . json_encode($errors), \SS_Log::WARN); |
|
230 | + \SS_Log::log('FoxyStripeSiteConfig::onBeforeWrite errors - '.json_encode($errors), \SS_Log::WARN); |
|
231 | 231 | } |
232 | 232 | } |
233 | 233 | } |