config() public static méthode

The 'config' static function isn't avaialbe on Extensions.
public static config ( ) : Config_ForClass
Résultat Config_ForClass configuration object
 /**
  * @param string $template
  * @param string $subject
  *
  * @return Email
  */
 private function buildEmail($template, $subject)
 {
     $from = ShopConfig::config()->email_from ? ShopConfig::config()->email_from : Email::config()->admin_email;
     $to = $this->order->getLatestEmail();
     $checkoutpage = CheckoutPage::get()->first();
     $completemessage = $checkoutpage ? $checkoutpage->PurchaseComplete : '';
     $email = Email::create();
     $email->setTemplate($template);
     $email->setFrom($from);
     $email->setTo($to);
     $email->setSubject($subject);
     $email->populateTemplate(array('PurchaseCompleteMessage' => $completemessage, 'Order' => $this->order, 'BaseURL' => Director::absoluteBaseURL()));
     return $email;
 }
 /**
  * Send a mail of the order to the client (and another to the admin).
  *
  * @param $template - the class name of the email you wish to send
  * @param $subject - subject of the email
  * @param $copyToAdmin - true by default, whether it should send a copy to the admin
  */
 public function sendEmail($template, $subject, $copyToAdmin = true)
 {
     $from = ShopConfig::config()->email_from ? ShopConfig::config()->email_from : Email::config()->admin_email;
     $to = $this->order->getLatestEmail();
     $checkoutpage = CheckoutPage::get()->first();
     $completemessage = $checkoutpage ? $checkoutpage->PurchaseComplete : "";
     $email = new Email();
     $email->setTemplate($template);
     $email->setFrom($from);
     $email->setTo($to);
     $email->setSubject($subject);
     if ($copyToAdmin) {
         $email->setBcc(Email::config()->admin_email);
     }
     $email->populateTemplate(array('PurchaseCompleteMessage' => $completemessage, 'Order' => $this->order, 'BaseURL' => Director::absoluteBaseURL()));
     return $email->send();
 }
 /**
  * Calculates the value of the fedex shipping modifier. If the order information has changed or is not present in the session a call is made to the api to request the rates.
  * @return {float} Cost of the shipping
  */
 public function value($subtotal = 0)
 {
     if ($this->Order()->Items()->count() == 0) {
         return 0;
     }
     $orderItems = implode(',', $this->Order()->Items()->column('ID'));
     $orderItemsCount = implode(',', $this->Order()->Items()->column('Quantity'));
     $shippingAddress = array();
     $shippingAddressStr = '';
     if ($this->Order()) {
         if ($this->Order()->ShippingAddress && $this->Order()->ShippingAddress->exists()) {
             $destination = $this->Order()->ShippingAddress;
             $shippingAddress = array('StreetLines' => array($destination->Address), 'City' => $destination->City, 'StateOrProvinceCode' => $destination->State, 'PostalCode' => $destination->PostalCode, 'CountryCode' => $destination->Country);
             $addrLine2 = $destination->AddressLine2;
             $shippingAddressStr = $shippingAddress;
             $shippingAddressStr['StreetLines'] = implode(' ', $shippingAddressStr['StreetLines']);
             $shippingAddressStr = implode(',', $shippingAddressStr);
         } else {
             if ($this->Order()->Member()->DefaultShippingAddress() && $this->Order()->Member()->DefaultShippingAddress()->exists()) {
                 $destination = $this->Order()->Member()->DefaultShippingAddress();
                 $shippingAddress = array('StreetLines' => array($destination->Address), 'City' => $destination->City, 'StateOrProvinceCode' => $destination->State, 'PostalCode' => $destination->PostalCode, 'CountryCode' => $destination->Country);
                 $addrLine2 = $destination->AddressLine2;
                 $shippingAddressStr = $shippingAddress;
                 $shippingAddressStr['StreetLines'] = implode(' ', $shippingAddressStr['StreetLines']);
                 $shippingAddressStr = implode(',', $shippingAddressStr);
             }
         }
     }
     if ($this->Amount > 0 && $orderItems . '|' . $orderItemsCount . '|' . $shippingAddressStr == Session::get('FedExShipping_' . $this->Order()->ID . '.orderhash')) {
         return $this->Amount;
     }
     //Store the default charge in case something goes wrong
     $this->Amount = self::config()->default_charge;
     if (!isset($destination)) {
         return $this->Amount;
     }
     $packageItems = array();
     foreach ($this->Order()->Items() as $item) {
         if ($item instanceof Product_OrderItem) {
             $packageItems[] = new ComplexType\RequestedPackageLineItem(array('Weight' => new ComplexType\Weight(array('Units' => new SimpleType\WeightUnits(SimpleType\WeightUnits::_KG), 'Value' => $item->Product()->Weight)), 'Dimensions' => new ComplexType\Dimensions(array('Length' => $item->Product()->Depth, 'Width' => $item->Product()->Width, 'Height' => $item->Product()->Height, 'Units' => new SimpleType\LinearUnits(SimpleType\LinearUnits::_CM))), 'GroupPackageCount' => $item->Quantity));
         }
     }
     $rateRequest = $this->getRateRequestAPI();
     //RequestedShipment
     $rateRequest->setRequestedShipment(new ComplexType\RequestedShipment(array('DropoffType' => new SimpleType\DropoffType(SimpleType\DropoffType::_REGULAR_PICKUP), 'ShipTimestamp' => date('c'), 'Shipper' => new ComplexType\Party(array('Address' => new ComplexType\Address($this->getOriginAddress()))), 'Recipient' => new ComplexType\Party(array('Address' => new ComplexType\Address($shippingAddress))), 'PreferredCurrency' => ShopConfig::config()->base_currency, 'RateRequestType' => new SimpleType\RateRequestType(SimpleType\RateRequestType::_LIST), 'PackageCount' => $this->Order()->Items()->count(), 'RequestedPackageLineItems' => $packageItems)));
     //Allow extensions to modify the
     $this->extend('updateRateRequest', $rateRequest);
     //Initialize the request
     $validateShipmentRequest = new RateService\Request();
     if (!$this->config()->test_mode) {
         $validateShipmentRequest->getSoapClient()->__setLocation('https://ws.fedex.com:443/web-services/rate');
     }
     //Call the api and look through the response
     $response = $validateShipmentRequest->getGetRatesReply($rateRequest);
     if (property_exists($response, 'RateReplyDetails') && count($response->RateReplyDetails) > 0) {
         foreach ($response->RateReplyDetails as $rates) {
             if ($rates->ServiceType == self::config()->service_type) {
                 foreach ($rates->RatedShipmentDetails as $rate) {
                     if (property_exists($rate, 'TotalNetCharge')) {
                         $charge = $rate->TotalNetCharge;
                         if ($charge->Currency != ShopConfig::get_base_currency() && property_exists($rate, 'CurrencyExchangeRate')) {
                             $charge->Amount = (1 - $rate->CurrencyExchangeRate->Rate + 1) * $charge->Amount;
                         }
                         $this->Amount = $charge->Amount;
                     }
                 }
             }
         }
     }
     Session::set('FedExShipping_' . $this->Order()->ID . '.orderhash', $orderItems . '|' . $orderItemsCount . '|' . $shippingAddressStr);
     return $this->Amount;
 }
Exemple #4
0
 /**
  * Send a mail of the order to the client (and another to the admin).
  *
  * @param $emailClass - the class name of the email you wish to send
  * @param $copyToAdmin - true by default, whether it should send a copy to the admin
  */
 public function sendEmail($emailClass, $copyToAdmin = true)
 {
     $from = ShopConfig::config()->email_from ? ShopConfig::config()->email_from : Email::config()->admin_email;
     $to = $this->order->getLatestEmail();
     $subject = sprintf(_t("Order.EMAILSUBJECT", "Shop Sale Information #%d"), $this->order->Reference);
     $checkoutpage = CheckoutPage::get()->first();
     $completemessage = $checkoutpage ? $checkoutpage->PurchaseComplete : "";
     $email = new $emailClass();
     $email->setFrom($from);
     $email->setTo($to);
     $email->setSubject($subject);
     if ($copyToAdmin) {
         $email->setBcc(Email::config()->admin_email);
     }
     $email->populateTemplate(array('PurchaseCompleteMessage' => $completemessage, 'Order' => $this->order, 'BaseURL' => Director::absoluteBaseURL()));
     return $email->send();
 }
 /**
  * Field for editing a {@link ExchangeRate}.
  *
  * @return FieldSet
  */
 public function getCMSFields()
 {
     $baseCurrency = ShopConfig::config()->base_currency;
     return new FieldList(TextField::create('Title')->setDescription('E.g. New Zealand'), TextField::create('Currency', _t('ExchangeRate.CURRENCY', ' Currency'))->setDescription('3 letter currency code - <a href="http://en.wikipedia.org/wiki/ISO_4217#Active_codes" target="_blank">available codes</a>'), TextField::create('CurrencySymbol', _t('ExchangeRate.SYMBOL', 'Symbol'))->setDescription('Symbol to use for this currency'), NumericField::create('Rate', _t('ExchangeRate.RATE', 'Rate'))->setDescription("Rate to convert from {$baseCurrency}"), DropdownField::create('Status', 'Status', array("0" => "Inactive", "1" => "Active"))->setDescription("This will determine if the user can browse using this currency."));
 }