| @@ -347,7 +347,7 @@ | ||
| 347 | 347 | /** | 
| 348 | 348 | * returns the Distributor for the user | 
| 349 | 349 | * Needs to be in model so we can access from the order in the template. | 
| 350 | - * @return Varchar Field | |
| 350 | + * @return Distributor Field | |
| 351 | 351 | */ | 
| 352 | 352 | public function MyDistributor() | 
| 353 | 353 |      { | 
| @@ -16,7 +16,7 @@ discard block | ||
| 16 | 16 | public function init() | 
| 17 | 17 |      { | 
| 18 | 18 | parent::init(); | 
| 19 | -        if (! Permission::check('ADMIN')) { | |
| 19 | +        if (!Permission::check('ADMIN')) { | |
| 20 | 20 | return Security::permissionFailure($this, 'This page is secured and you need administrator rights to access it. You can also save the page in the CMS to get 15 minutes access without being logged in.'); | 
| 21 | 21 | } | 
| 22 | 22 | } | 
| @@ -181,17 +181,17 @@ discard block | ||
| 181 | 181 | "MyCountryCode" => "This is the key function", | 
| 182 | 182 | "MyCountryTitle" => "", | 
| 183 | 183 | "MyCurrency" => "Based on the currency set in the order.", | 
| 184 | -            "MyDistributor" => "You have to set the ". _t('Distributor.SINGULAR_NAME', 'Distributor') . "'s countries in order to work out someone's ". _t('Distributor.SINGULAR_NAME', 'Distributor') . ".", | |
| 184 | +            "MyDistributor" => "You have to set the "._t('Distributor.SINGULAR_NAME', 'Distributor')."'s countries in order to work out someone's "._t('Distributor.SINGULAR_NAME', 'Distributor').".", | |
| 185 | 185 | "MyDistributorCountry" => "This is the country that is being used for the sale. For dodgy countries, we use the backup country.", | 
| 186 | -            "MyDeliveryCostNote" => "Set in country, ". _t('Distributor.SINGULAR_NAME', 'Distributor') . " and default country.", | |
| 187 | -            "MyShippingDeliveryInfo" => "Set in country, ". _t('Distributor.SINGULAR_NAME', 'Distributor') . " and default country.", | |
| 188 | -            "MyShippingReturnInfo" => "Set in country, ". _t('Distributor.SINGULAR_NAME', 'Distributor') . " and default country.", | |
| 189 | -            "MyProductNotAvailableNote" => "Set in country, ". _t('Distributor.SINGULAR_NAME', 'Distributor') . ", default country, AND the Ecommerce Config.", | |
| 186 | +            "MyDeliveryCostNote" => "Set in country, "._t('Distributor.SINGULAR_NAME', 'Distributor')." and default country.", | |
| 187 | +            "MyShippingDeliveryInfo" => "Set in country, "._t('Distributor.SINGULAR_NAME', 'Distributor')." and default country.", | |
| 188 | +            "MyShippingReturnInfo" => "Set in country, "._t('Distributor.SINGULAR_NAME', 'Distributor')." and default country.", | |
| 189 | +            "MyProductNotAvailableNote" => "Set in country, "._t('Distributor.SINGULAR_NAME', 'Distributor').", default country, AND the Ecommerce Config.", | |
| 190 | 190 | "MyStockistSearchPage" => "", | 
| 191 | 191 | "MyStockistCountryPage" => "The stockist page that is related to the visitor's country", | 
| 192 | 192 | "MyCountryFAQPage" => "", | 
| 193 | 193 | "MyBackupCountryCode" => "This country is used if the information for the selected country is not available.", | 
| 194 | -            "MyDefaultDistributor" => "You can set one default ". _t('Distributor.SINGULAR_NAME', 'Distributor') . " (head office) with a tickbox for any ". _t('Distributor.SINGULAR_NAME', 'Distributor') , | |
| 194 | +            "MyDefaultDistributor" => "You can set one default "._t('Distributor.SINGULAR_NAME', 'Distributor')." (head office) with a tickbox for any "._t('Distributor.SINGULAR_NAME', 'Distributor'), | |
| 195 | 195 | |
| 196 | 196 | ); | 
| 197 | 197 | $array = array( | 
| @@ -211,7 +211,7 @@ discard block | ||
| 211 | 211 | "MyDefaultDistributor" => "Object", | 
| 212 | 212 | ); | 
| 213 | 213 | echo "<h1>Current Settings</h1>"; | 
| 214 | -        echo "<p>Most of these settings can be adjusted in the country, ". _t('Distributor.SINGULAR_NAME', 'Distributor') . " and generic e-commerce settings.</p>"; | |
| 214 | +        echo "<p>Most of these settings can be adjusted in the country, "._t('Distributor.SINGULAR_NAME', 'Distributor')." and generic e-commerce settings.</p>"; | |
| 215 | 215 |          foreach ($array as $name => $type) { | 
| 216 | 216 | $style = "created"; | 
| 217 | 217 | $notSet = false; | 
| @@ -245,7 +245,7 @@ discard block | ||
| 245 | 245 | } | 
| 246 | 246 | } | 
| 247 | 247 | } | 
| 248 | -            if (! $string) { | |
| 248 | +            if (!$string) { | |
| 249 | 249 | $string = "NOT SET"; | 
| 250 | 250 | $style = "deleted"; | 
| 251 | 251 | } | 
| @@ -99,7 +99,7 @@ discard block | ||
| 99 | 99 | /** | 
| 100 | 100 | * This is called from /ecommerce/code/Product | 
| 101 | 101 | * returning NULL is like returning TRUE, i.e. ignore this. | 
| 102 | - * @param Member (optional) $member | |
| 102 | + * @param Member Member $member | |
| 103 | 103 | * @param bool (optional) $checkPrice | 
| 104 | 104 | * @return false | null | 
| 105 | 105 | */ | 
| @@ -400,7 +400,7 @@ discard block | ||
| 400 | 400 | * as long as we do not give distributors access to the Products | 
| 401 | 401 | * this is fairly safe. | 
| 402 | 402 | * @param member (optiona) $member | 
| 403 | - * @return null / bool | |
| 403 | + * @return boolean / bool | |
| 404 | 404 | */ | 
| 405 | 405 | public function canEdit($member = null) | 
| 406 | 406 |      { | 
| @@ -223,7 +223,7 @@ discard block | ||
| 223 | 223 | return null; | 
| 224 | 224 | } | 
| 225 | 225 | $key = $this->owner->ClassName."___".$this->owner->ID.'____'.$countryCode; | 
| 226 | -        if (! isset(self::$_buyable_price[$key])) { | |
| 226 | +        if (!isset(self::$_buyable_price[$key])) { | |
| 227 | 227 | //basics | 
| 228 | 228 | $currency = null; | 
| 229 | 229 | $currencyCode = null; | 
| @@ -311,7 +311,7 @@ discard block | ||
| 311 | 311 | } | 
| 312 | 312 | } | 
| 313 | 313 | //order must have a country and a currency | 
| 314 | -            if (! $currencyCode ||  ! $countryCode) { | |
| 314 | +            if (!$currencyCode || !$countryCode) { | |
| 315 | 315 |                  if ($this->debug) { | 
| 316 | 316 |                      debug::log('No currency ('.$currencyCode.') or no country code ('.$countryCode.') for order: '); | 
| 317 | 317 | } | 
| @@ -408,7 +408,7 @@ discard block | ||
| 408 | 408 | */ | 
| 409 | 409 | public function canEdit($member = null) | 
| 410 | 410 |      { | 
| 411 | -        if (! $member) { | |
| 411 | +        if (!$member) { | |
| 412 | 412 | $member = Member::currentUser(); | 
| 413 | 413 | } | 
| 414 | 414 |          if ($member) { | 
| @@ -96,7 +96,6 @@ | ||
| 96 | 96 | * - ID | 
| 97 | 97 | * searches through children, until all all childpages have been added | 
| 98 | 98 | * | 
| 99 | - * @param string $country [description] | |
| 100 | 99 | * @param array $values [description] | 
| 101 | 100 | * @return array [description] | 
| 102 | 101 | */ | 
| @@ -25,11 +25,11 @@ | ||
| 25 | 25 |              } else { | 
| 26 | 26 | $fromCountriesArray = array(); | 
| 27 | 27 | } | 
| 28 | - $allCountries = EcommerceCountry::get(); | |
| 28 | + $allCountries = EcommerceCountry::get(); | |
| 29 | 29 | $toCountries = array(); | 
| 30 | 30 |              foreach ($allCountries as $country) { | 
| 31 | 31 | $country = CountryPrice_EcommerceCountry::get_real_country($country); | 
| 32 | - $toCountries[$country->Code] = $country->Name . ($country->DoNotAllowSales ? ' (Sales not allowed)' : ''); | |
| 32 | + $toCountries[$country->Code] = $country->Name.($country->DoNotAllowSales ? ' (Sales not allowed)' : ''); | |
| 33 | 33 | } | 
| 34 | 34 | $countryCurrencies = CountryPrice_EcommerceCurrency::get_currency_per_country(); | 
| 35 | 35 | $link = CountryPrice_CopyPrices_Controller::get_link($this->owner); | 
| @@ -244,7 +244,7 @@ | ||
| 244 | 244 | |
| 245 | 245 | /** | 
| 246 | 246 | * Returns if the currency is an old currency not used anymore. | 
| 247 | - * @return Boolean | |
| 247 | + * @return boolean|null | |
| 248 | 248 | */ | 
| 249 | 249 | public function isObsolete() | 
| 250 | 250 |      { | 
| @@ -65,9 +65,9 @@ discard block | ||
| 65 | 65 | */ | 
| 66 | 66 | public function Buyable() | 
| 67 | 67 |      { | 
| 68 | -        if(! $this->_myBuyable) { | |
| 68 | +        if (!$this->_myBuyable) { | |
| 69 | 69 | $className = $this->ObjectClass; | 
| 70 | -            if ( class_exists($this->ObjectClass) ) { | |
| 70 | +            if (class_exists($this->ObjectClass)) { | |
| 71 | 71 | $this->_myBuyable = $className::get()->byID($this->ObjectID); | 
| 72 | 72 | } | 
| 73 | 73 | } | 
| @@ -87,9 +87,9 @@ discard block | ||
| 87 | 87 | */ | 
| 88 | 88 | public function CountryObject() | 
| 89 | 89 |      { | 
| 90 | -        if(! $this->_myCountryObject) { | |
| 90 | +        if (!$this->_myCountryObject) { | |
| 91 | 91 |              if ($this->Country) { | 
| 92 | - $this->_myCountryObject = EcommerceCountry::get() | |
| 92 | + $this->_myCountryObject = EcommerceCountry::get() | |
| 93 | 93 |                      ->filter(array("Code" => $this->Country)) | 
| 94 | 94 | ->First(); | 
| 95 | 95 | } | 
| @@ -146,7 +146,7 @@ discard block | ||
| 146 | 146 | */ | 
| 147 | 147 | public function getFullPrice() | 
| 148 | 148 |      { | 
| 149 | - return "$this->Price $this->Currency" . ($this->isObsolete() ? ' (obsolete!)' : ''); | |
| 149 | + return "$this->Price $this->Currency".($this->isObsolete() ? ' (obsolete!)' : ''); | |
| 150 | 150 | } | 
| 151 | 151 | |
| 152 | 152 | public function getCMSFields() | 
| @@ -218,7 +218,7 @@ discard block | ||
| 218 | 218 | public function canEdit($member = null) | 
| 219 | 219 |      { | 
| 220 | 220 | $canEdit = parent::canEdit(); | 
| 221 | -        if (! $canEdit) { | |
| 221 | +        if (!$canEdit) { | |
| 222 | 222 | $member = Member::currentUser(); | 
| 223 | 223 | $distributor = $member->Distributor(); | 
| 224 | 224 |              if ($distributor->exists()) { | 
| @@ -236,16 +236,16 @@ discard block | ||
| 236 | 236 | protected function validate() | 
| 237 | 237 |      { | 
| 238 | 238 | $result = parent::validate(); | 
| 239 | -        if (! $this->ObjectClass && isset($_REQUEST["MyObjectClass"])) { | |
| 239 | +        if (!$this->ObjectClass && isset($_REQUEST["MyObjectClass"])) { | |
| 240 | 240 |              if (class_exists($_REQUEST["MyObjectClass"])) { | 
| 241 | 241 | $this->ObjectClass = Convert::raw2sql($_REQUEST["MyObjectClass"]); | 
| 242 | 242 | } | 
| 243 | 243 | } | 
| 244 | -        if (! $this->ObjectID && isset($_REQUEST["MyObjectID"])) { | |
| 244 | +        if (!$this->ObjectID && isset($_REQUEST["MyObjectID"])) { | |
| 245 | 245 | $this->ObjectID = intval($_REQUEST["MyObjectID"]); | 
| 246 | 246 | } | 
| 247 | 247 | //check for duplicates in case it has not been created yet... | 
| 248 | -        if (! $this->ObjectClass || ! $this->ObjectID) { | |
| 248 | +        if (!$this->ObjectClass || !$this->ObjectID) { | |
| 249 | 249 |              $result->error('Object could not be created. Please contact your developer.'); | 
| 250 | 250 | return $result; | 
| 251 | 251 | } | 
| @@ -47,6 +47,7 @@ | ||
| 47 | 47 | * this method basically makes sure that the Order | 
| 48 | 48 | * has all the localised stuff attached to it, specifically | 
| 49 | 49 | * the right currency | 
| 50 | + * @param string $countryCode | |
| 50 | 51 | */ | 
| 51 | 52 | public static function localise_order($countryCode = null, $force = false) | 
| 52 | 53 |      { | 
| @@ -100,7 +100,7 @@ discard block | ||
| 100 | 100 | $order = Order::get()->byID($order->ID); | 
| 101 | 101 | $orderHasBeenChanged = false; | 
| 102 | 102 | |
| 103 | - //check currency ... | |
| 103 | + //check currency ... | |
| 104 | 104 |          if ($order->CurrencyUsedID != $currencyObject->ID) { | 
| 105 | 105 | $order->SetCurrency($currencyObject); | 
| 106 | 106 | $orderHasBeenChanged = true; | 
| @@ -148,7 +148,7 @@ discard block | ||
| 148 | 148 | 'Root.Country', | 
| 149 | 149 | DropdownField::create( | 
| 150 | 150 | 'DistributorID', | 
| 151 | -                     _t('Distributor.SINGULAR_NAME', 'Distributor'), | |
| 151 | +                        _t('Distributor.SINGULAR_NAME', 'Distributor'), | |
| 152 | 152 |                      array(''=> '--- Please select ---') + Distributor::get()->map()->toArray() | 
| 153 | 153 | ) | 
| 154 | 154 | ); | 
| @@ -61,7 +61,7 @@ discard block | ||
| 61 | 61 |          if ($order->IsSubmitted()) { | 
| 62 | 62 | return true; | 
| 63 | 63 | } | 
| 64 | -        if (! $countryCode) { | |
| 64 | +        if (!$countryCode) { | |
| 65 | 65 | $countryCode = $order->getCountry(); | 
| 66 | 66 | } | 
| 67 | 67 | $currencyObject = CountryPrice_EcommerceCurrency::get_currency_for_country($countryCode); | 
| @@ -75,13 +75,13 @@ discard block | ||
| 75 | 75 | //check if the billing and shipping address have a country so that they will not be overridden by previous Orders | 
| 76 | 76 | //we do this to make sure that the previous address can not change the region and thereby destroy the order in the cart | 
| 77 | 77 |          if ($billingAddress = $order->CreateOrReturnExistingAddress('BillingAddress')) { | 
| 78 | -            if (! $billingAddress->Country || $force) { | |
| 78 | +            if (!$billingAddress->Country || $force) { | |
| 79 | 79 | $billingAddress->Country = $countryCode; | 
| 80 | 80 | $billingAddress->write(); | 
| 81 | 81 | } | 
| 82 | 82 | } | 
| 83 | 83 |          if ($shippingAddress = $order->CreateOrReturnExistingAddress('ShippingAddress')) { | 
| 84 | -            if (! $shippingAddress->ShippingCountry || $force) { | |
| 84 | +            if (!$shippingAddress->ShippingCountry || $force) { | |
| 85 | 85 | $shippingAddress->ShippingCountry = $countryCode; | 
| 86 | 86 | $shippingAddress->write(); | 
| 87 | 87 | } | 
| @@ -90,7 +90,7 @@ discard block | ||
| 90 | 90 | //if a country code and currency has been set then all is good | 
| 91 | 91 | //from there we keep it this way | 
| 92 | 92 | if ( | 
| 93 | - $order->OriginatingCountryCode == $countryCode && | |
| 93 | + $order->OriginatingCountryCode == $countryCode && | |
| 94 | 94 | $order->CurrencyUsedID == $currencyObject->ID | 
| 95 | 95 |          ) { | 
| 96 | 96 | return true; | 
| @@ -111,7 +111,7 @@ discard block | ||
| 111 | 111 |              if ($items) { | 
| 112 | 112 |                  foreach ($items as $item) { | 
| 113 | 113 | $buyable = $item->Buyable(true); | 
| 114 | -                    if (! $buyable->canPurchase()) { | |
| 114 | +                    if (!$buyable->canPurchase()) { | |
| 115 | 115 | $item->delete(); | 
| 116 | 116 | } | 
| 117 | 117 | } | 
| @@ -157,7 +157,7 @@ discard block | ||
| 157 | 157 | |
| 158 | 158 | public function canEdit($member = null) | 
| 159 | 159 |      { | 
| 160 | -        if (! $member) { | |
| 160 | +        if (!$member) { | |
| 161 | 161 | $member = Member::currentUser(); | 
| 162 | 162 | } | 
| 163 | 163 |          if ($member) { | 
| @@ -268,7 +268,7 @@ discard block | ||
| 268 | 268 | $countryMessageObject->CountrySpecificEmailMessage | 
| 269 | 269 | ); | 
| 270 | 270 | } | 
| 271 | -        if($step->SendEmailToDistributor) { | |
| 271 | +        if ($step->SendEmailToDistributor) { | |
| 272 | 272 |              if ($distributor = $this->owner->Distributor()) { | 
| 273 | 273 | $distributorEmail = $distributor->Email; | 
| 274 | 274 |                  if ($distributorEmail) { | 
| @@ -12,7 +12,7 @@ | ||
| 12 | 12 |          if ($allowedCountries->count()) { | 
| 13 | 13 |              $allowedCountryCodes = $allowedCountries->column('Code'); | 
| 14 | 14 |              foreach ($newSource as $key => $value) { | 
| 15 | -                if (! in_array($key, $allowedCountryCodes)) { | |
| 15 | +                if (!in_array($key, $allowedCountryCodes)) { | |
| 16 | 16 | unset($newSource[$key]); | 
| 17 | 17 | } | 
| 18 | 18 | } | 
| @@ -111,7 +111,7 @@ discard block | ||
| 111 | 111 | //secondary for another country | 
| 112 | 112 |          $fields->removeByName('Versions'); | 
| 113 | 113 |          if ($listOfCountriesCovered && $listOfCountriesCovered->count()) { | 
| 114 | -            $countryArray =  array(" -- please select --") + $listOfCountriesCovered->toArray(); | |
| 114 | +            $countryArray = array(" -- please select --") + $listOfCountriesCovered->toArray(); | |
| 115 | 115 |              $fields->addFieldToTab("Root.CountryDetails", DropdownField::create("PrimaryCountryID", "Primary Country", $countryArray)); | 
| 116 | 116 |          } else { | 
| 117 | 117 |              $fields->removeByName('PrimaryCountryID'); | 
| @@ -143,7 +143,7 @@ discard block | ||
| 143 | 143 | 'IsDefault' => 'Default', | 
| 144 | 144 | 'Email' => 'Email' | 
| 145 | 145 | ); | 
| 146 | -                    $table = '<table class="versions"><thead><tr><th>' . implode('</th><th>', $columns) . '</th></tr></thead><tbody>'; | |
| 146 | +                    $table = '<table class="versions"><thead><tr><th>'.implode('</th><th>', $columns).'</th></tr></thead><tbody>'; | |
| 147 | 147 | $version = $this->Version - 1; | 
| 148 | 148 |                      while ($version > 0) { | 
| 149 | 149 |                          $versionDO = Versioned::get_version('Distributor', $this->ID, $version--); | 
| @@ -151,7 +151,7 @@ discard block | ||
| 151 | 151 |                          foreach ($columns as $column => $title) { | 
| 152 | 152 | $values[] = $versionDO->$column; | 
| 153 | 153 | } | 
| 154 | -                        $table .= '<tr><td>' . implode('</td><td>', $values) . '</td></tr>'; | |
| 154 | +                        $table .= '<tr><td>'.implode('</td><td>', $values).'</td></tr>'; | |
| 155 | 155 | } | 
| 156 | 156 | $table .= '</tbody></table>'; | 
| 157 | 157 | $table .= "<style type=\"text/css\"> | 
| @@ -234,7 +234,7 @@ discard block | ||
| 234 | 234 | } | 
| 235 | 235 |          if ($this->PrimaryCountryID > 0 && EcommerceCountry::get()->byID(intval($this->PrimaryCountryID))) { | 
| 236 | 236 | $primaryCountry = $this->PrimaryCountry(); | 
| 237 | -            if (! $this->Countries()->byID($this->PrimaryCountryID)) { | |
| 237 | +            if (!$this->Countries()->byID($this->PrimaryCountryID)) { | |
| 238 | 238 | $this->Countries()->add($primaryCountry); | 
| 239 | 239 | } | 
| 240 | 240 |          } else { | 
| @@ -253,7 +253,7 @@ discard block | ||
| 253 | 253 | public function onAfterWrite() | 
| 254 | 254 |      { | 
| 255 | 255 | parent::onAfterWrite(); | 
| 256 | -        if (! self::$_ran_after_write) { | |
| 256 | +        if (!self::$_ran_after_write) { | |
| 257 | 257 | self::$_ran_after_write = true; | 
| 258 | 258 | $this->setupUser(); | 
| 259 | 259 | } | 
| @@ -371,7 +371,7 @@ discard block | ||
| 371 | 371 | $member = Member::create($filter); | 
| 372 | 372 | //$thisMember->SetPassword = substr(session_id, 0, 8); | 
| 373 | 373 | } | 
| 374 | -            $member->FirstName = trim(_t('Distributor.SINGULAR_NAME', 'Distributor') . _t('Distributor.FOR', ' for ')); | |
| 374 | +            $member->FirstName = trim(_t('Distributor.SINGULAR_NAME', 'Distributor')._t('Distributor.FOR', ' for ')); | |
| 375 | 375 | $member->Surname = $this->Name; | 
| 376 | 376 | $member->DistributorID = $this->ID; | 
| 377 | 377 | $member->write(); | 
| @@ -8,7 +8,7 @@ | ||
| 8 | 8 | } | 
| 9 | 9 | public function canView($member = null) | 
| 10 | 10 |      { | 
| 11 | -        if (! $this->owner->ID) { | |
| 11 | +        if (!$this->owner->ID) { | |
| 12 | 12 | return true; | 
| 13 | 13 |          } elseif ($member && $member->DistributorID) { | 
| 14 | 14 |              if ($order = $this->owner->Order()) { | 
| @@ -163,9 +163,9 @@ | ||
| 163 | 163 | } | 
| 164 | 164 | |
| 165 | 165 | /** | 
| 166 | - * checks if the country has a distributor | |
| 167 | - * and returns the primary country for the distributor. | |
| 168 | - * If not, returns the defaulf country. | |
| 166 | + * checks if the country has a distributor | |
| 167 | + * and returns the primary country for the distributor. | |
| 168 | + * If not, returns the defaulf country. | |
| 169 | 169 | * | 
| 170 | 170 | * @return EcommerceCountry | 
| 171 | 171 | * | 
| @@ -88,7 +88,7 @@ discard block | ||
| 88 | 88 | 'Root.FAQPage', | 
| 89 | 89 | new LiteralField( | 
| 90 | 90 | "FAQPageExplanation", | 
| 91 | -                        "<p class=\"message warning\">FAQ information can only be added to the main country for a ". _t('Distributor.SINGULAR_NAME', 'Distributor') ."</p>" | |
| 91 | +                        "<p class=\"message warning\">FAQ information can only be added to the main country for a "._t('Distributor.SINGULAR_NAME', 'Distributor')."</p>" | |
| 92 | 92 | ) | 
| 93 | 93 | ); | 
| 94 | 94 | } | 
| @@ -200,7 +200,7 @@ discard block | ||
| 200 | 200 | $order = ShoppingCart::current_order(); | 
| 201 | 201 | |
| 202 | 202 | //get country from EcommerceCountry | 
| 203 | -        if (! $country) { | |
| 203 | +        if (!$country) { | |
| 204 | 204 | $country = EcommerceCountry::get_country(); | 
| 205 | 205 | } | 
| 206 | 206 | |
| @@ -240,9 +240,9 @@ discard block | ||
| 240 | 240 | public static function get_backup_country() | 
| 241 | 241 |      { | 
| 242 | 242 |          $obj = EcommerceCountry::get()->filter(array("IsBackupCountry" => true))->first(); | 
| 243 | -        if (! $obj) { | |
| 243 | +        if (!$obj) { | |
| 244 | 244 |              $obj = EcommerceCountry::get()->filter(array("Code" => EcommerceConfig::get('EcommerceCountry', 'default_country_code')))->first(); | 
| 245 | -            if (! $obj) { | |
| 245 | +            if (!$obj) { | |
| 246 | 246 | $obj = EcommerceCountry::get()->first(); | 
| 247 | 247 | } | 
| 248 | 248 | } |