当前位置: 首页>>代码示例>>PHP>>正文


PHP Element\LoopResultRow类代码示例

本文整理汇总了PHP中Thelia\Core\Template\Element\LoopResultRow的典型用法代码示例。如果您正苦于以下问题:PHP LoopResultRow类的具体用法?PHP LoopResultRow怎么用?PHP LoopResultRow使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了LoopResultRow类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: parseResults

 public function parseResults(LoopResult $loopResult)
 {
     $this->container->get('thelia.condition.factory');
     if (null !== ($order = OrderQuery::create()->findPk($this->getOrder()))) {
         $oneDayInSeconds = 86400;
         /** @var \Thelia\Model\OrderCoupon $orderCoupon */
         foreach ($loopResult->getResultDataCollection() as $orderCoupon) {
             $loopResultRow = new LoopResultRow($orderCoupon);
             $now = time();
             $datediff = $orderCoupon->getExpirationDate()->getTimestamp() - $now;
             $daysLeftBeforeExpiration = floor($datediff / $oneDayInSeconds);
             $freeShippingForCountriesIds = [];
             /** @var OrderCouponCountry $couponCountry */
             foreach ($orderCoupon->getFreeShippingForCountries() as $couponCountry) {
                 $freeShippingForCountriesIds[] = $couponCountry->getCountryId();
             }
             $freeShippingForModulesIds = [];
             /** @var OrderCouponModule $couponModule */
             foreach ($orderCoupon->getFreeShippingForModules() as $couponModule) {
                 $freeShippingForModulesIds[] = $couponModule->getModuleId();
             }
             $loopResultRow->set("ID", $orderCoupon->getId())->set("CODE", $orderCoupon->getCode())->set("DISCOUNT_AMOUNT", $orderCoupon->getAmount())->set("TITLE", $orderCoupon->getTitle())->set("SHORT_DESCRIPTION", $orderCoupon->getShortDescription())->set("DESCRIPTION", $orderCoupon->getDescription())->set("EXPIRATION_DATE", $orderCoupon->getExpirationDate($order->getLangId()))->set("IS_CUMULATIVE", $orderCoupon->getIsCumulative())->set("IS_REMOVING_POSTAGE", $orderCoupon->getIsRemovingPostage())->set("IS_AVAILABLE_ON_SPECIAL_OFFERS", $orderCoupon->getIsAvailableOnSpecialOffers())->set("DAY_LEFT_BEFORE_EXPIRATION", $daysLeftBeforeExpiration)->set("FREE_SHIPPING_FOR_COUNTRIES_LIST", implode(',', $freeShippingForCountriesIds))->set("FREE_SHIPPING_FOR_MODULES_LIST", implode(',', $freeShippingForModulesIds))->set("PER_CUSTOMER_USAGE_COUNT", $orderCoupon->getPerCustomerUsageCount())->set("IS_USAGE_CANCELED", $orderCoupon->getUsageCanceled());
             $this->addOutputFields($loopResultRow, $orderCoupon);
             $loopResult->addRow($loopResultRow);
         }
     }
     return $loopResult;
 }
开发者ID:vigourouxjulien,项目名称:thelia,代码行数:28,代码来源:OrderCoupon.php

示例2: parseResults

 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $item) {
         // var_dump($item); die();
         $loopResultRow = new LoopResultRow();
         if ((bool) $this->getDisplayLink() == true) {
             $tweet = $item->text;
             // Screen name link
             $pattern = '@(https?://([-\\w\\.]+)+(/([\\w/_\\.]*(\\?\\S+)?(#\\S+)?)?)?)@';
             $replacement = '<a href="$1">$1</a>';
             $tweet = preg_replace($pattern, $replacement, $tweet);
             // HTTP(S) link
             $pattern = '/@(\\w+)/i';
             $replacement = '<a href="https://www.twitter.com/$1">@$1</a>';
             $tweet = preg_replace($pattern, $replacement, $tweet);
             // Hashtag link
             $pattern = '/\\s+#(\\w+)/';
             $replacement = ' <a href="http://search.twitter.com/search?q=%23$1">#$1</a>';
             $tweet = preg_replace($pattern, $replacement, $tweet);
             $loopResultRow->set("TEXT", preg_replace($pattern, $replacement, $tweet));
         } else {
             $loopResultRow->set("TEXT", $item->text);
         }
         $datetime = new \DateTime($item->created_at);
         $datetime->setTimezone(new \DateTimeZone('Europe/Zurich'));
         // echo $datetime->format('U');
         // echo $item->created_at;
         // die(strtotime($item->created_at));
         $loopResultRow->set("CREATED_AT", $datetime->format('U'));
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
开发者ID:nicolasleon,项目名称:Twitter,代码行数:33,代码来源:TwitterLoop.php

示例3: parseComplexResults

 public function parseComplexResults(LoopResult $loopResult)
 {
     $taxCalculator = new Calculator();
     $taxCountry = $this->container->get('thelia.taxEngine')->getDeliveryCountry();
     /** @var \Thelia\Core\Security\SecurityContext $securityContext */
     $securityContext = $this->container->get('thelia.securityContext');
     /** @var \Thelia\Model\Product $product */
     foreach ($loopResult->getResultDataCollection() as $product) {
         $loopResultRow = new LoopResultRow($product);
         $price = $product->getRealLowestPrice();
         if ($securityContext->hasCustomerUser() && $securityContext->getCustomerUser()->getDiscount() > 0) {
             $price = $price * (1 - $securityContext->getCustomerUser()->getDiscount() / 100);
         }
         try {
             $taxedPrice = round($taxCalculator->load($product, $taxCountry)->getTaxedPrice($price), 2);
         } catch (TaxEngineException $e) {
             $taxedPrice = null;
         }
         // Find previous and next product, in the default category.
         $default_category_id = $product->getVirtualColumn('DefaultCategoryId');
         $loopResultRow->set("BEST_PRICE", $price)->set("BEST_PRICE_TAX", $taxedPrice - $price)->set("BEST_TAXED_PRICE", $taxedPrice)->set("IS_PROMO", $product->getVirtualColumn('main_product_is_promo'))->set("IS_NEW", $product->getVirtualColumn('main_product_is_new'));
         $loopResult->addRow($this->associateValues($loopResultRow, $product, $default_category_id));
     }
     return $loopResult;
 }
开发者ID:zorn-v,项目名称:optimize-thelia-module,代码行数:25,代码来源:Product.php

示例4: parseResults

 /**
  * @param LoopResult $loopResult
  *
  * @return LoopResult
  */
 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $menuItem) {
         $loopResultRow = new LoopResultRow($menuItem);
         //     $title=$menuItem->getVirtualColumn('i18n_TITLE');
         $type = 'category';
         switch ($menuItem->getTypobj()) {
             case 0:
                 /*					$category = CategoryI18nQuery::create()->findOneById($menuItem->getObjet());
                 					$category->setLocale('fr_FR');
                             		if(!$title)$title=$category->getTitle();*/
                 $type = 'category';
                 break;
             case 1:
                 $type = 'product';
                 break;
             case 2:
                 $type = 'folder';
                 break;
             case 3:
                 $type = 'content';
                 break;
         }
         $loopResultRow->set('ID', $menuItem->getId())->set('OBJET', $menuItem->getObjet())->set('TYPE', $type);
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
开发者ID:AnthonyMeedle,项目名称:thelia-v2-module-Menu,代码行数:33,代码来源:MenuItemLoop.php

示例5: parseResults

 public function parseResults(LoopResult $loopResult)
 {
     $country = $this->getCurrentCountry();
     $state = $this->getCurrentState();
     $cart = $this->request->getSession()->getSessionCart($this->dispatcher);
     $virtual = $cart->isVirtual();
     /** @var Module $deliveryModule */
     foreach ($loopResult->getResultDataCollection() as $deliveryModule) {
         $areaDeliveryModule = AreaDeliveryModuleQuery::create()->findByCountryAndModule($country, $deliveryModule, $state);
         if (null === $areaDeliveryModule && false === $virtual) {
             continue;
         }
         /** @var DeliveryModuleInterface $moduleInstance */
         $moduleInstance = $deliveryModule->getDeliveryModuleInstance($this->container);
         if (true === $virtual && false === $moduleInstance->handleVirtualProductDelivery() && false === $this->getBackendContext()) {
             continue;
         }
         $loopResultRow = new LoopResultRow($deliveryModule);
         try {
             // Check if module is valid, by calling isValidDelivery(),
             // or catching a DeliveryException.
             if ($moduleInstance->isValidDelivery($country)) {
                 $postage = OrderPostage::loadFromPostage($moduleInstance->getPostage($country));
                 $loopResultRow->set('ID', $deliveryModule->getId())->set('CODE', $deliveryModule->getCode())->set('TITLE', $deliveryModule->getVirtualColumn('i18n_TITLE'))->set('CHAPO', $deliveryModule->getVirtualColumn('i18n_CHAPO'))->set('DESCRIPTION', $deliveryModule->getVirtualColumn('i18n_DESCRIPTION'))->set('POSTSCRIPTUM', $deliveryModule->getVirtualColumn('i18n_POSTSCRIPTUM'))->set('POSTAGE', $postage->getAmount())->set('POSTAGE_TAX', $postage->getAmountTax())->set('POSTAGE_UNTAXED', $postage->getAmount() - $postage->getAmountTax())->set('POSTAGE_TAX_RULE_TITLE', $postage->getTaxRuleTitle());
                 $this->addOutputFields($loopResultRow, $deliveryModule);
                 $loopResult->addRow($loopResultRow);
             }
         } catch (DeliveryException $ex) {
             // Module is not available
         }
     }
     return $loopResult;
 }
开发者ID:zorn-v,项目名称:thelia,代码行数:33,代码来源:Delivery.php

示例6: parseResults

 public function parseResults(LoopResult $loopResult)
 {
     $taxCountry = $this->container->get('thelia.taxEngine')->getDeliveryCountry();
     $locale = $this->request->getSession()->getLang()->getLocale();
     $checkAvailability = ConfigQuery::checkAvailableStock();
     $defaultAvailability = intval(ConfigQuery::read('default-available-stock', 100));
     /** @var CartItemModel $cartItem */
     foreach ($loopResult->getResultDataCollection() as $cartItem) {
         $product = $cartItem->getProduct(null, $locale);
         $productSaleElement = $cartItem->getProductSaleElements();
         $loopResultRow = new LoopResultRow();
         $loopResultRow->set("ITEM_ID", $cartItem->getId());
         $loopResultRow->set("TITLE", $product->getTitle());
         $loopResultRow->set("REF", $product->getRef());
         $loopResultRow->set("QUANTITY", $cartItem->getQuantity());
         $loopResultRow->set("PRODUCT_ID", $product->getId());
         $loopResultRow->set("PRODUCT_URL", $product->getUrl($this->request->getSession()->getLang()->getLocale()));
         if (!$checkAvailability || $product->getVirtual() === 1) {
             $loopResultRow->set("STOCK", $defaultAvailability);
         } else {
             $loopResultRow->set("STOCK", $productSaleElement->getQuantity());
         }
         $loopResultRow->set("PRICE", $cartItem->getPrice())->set("PROMO_PRICE", $cartItem->getPromoPrice())->set("TAXED_PRICE", $cartItem->getTaxedPrice($taxCountry))->set("PROMO_TAXED_PRICE", $cartItem->getTaxedPromoPrice($taxCountry))->set("IS_PROMO", $cartItem->getPromo() === 1 ? 1 : 0);
         $loopResultRow->set("TOTAL_PRICE", $cartItem->getPrice() * $cartItem->getQuantity())->set("TOTAL_PROMO_PRICE", $cartItem->getPromoPrice() * $cartItem->getQuantity())->set("TOTAL_TAXED_PRICE", $cartItem->getTotalTaxedPrice($taxCountry))->set("TOTAL_PROMO_TAXED_PRICE", $cartItem->getTotalTaxedPromoPrice($taxCountry));
         $loopResultRow->set("PRODUCT_SALE_ELEMENTS_ID", $productSaleElement->getId());
         $loopResultRow->set("PRODUCT_SALE_ELEMENTS_REF", $productSaleElement->getRef());
         $this->addOutputFields($loopResultRow, $cartItem);
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
开发者ID:margery,项目名称:thelia,代码行数:31,代码来源:Cart.php

示例7: parseResults

 /**
  * @param LoopResult $loopResult
  *
  * @return LoopResult
  */
 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $id) {
         $loopResultRow = new LoopResultRow();
         $loopResult->addRow($loopResultRow->set('MODULE_ID', $id));
     }
     return $loopResult;
 }
开发者ID:bcbrr,项目名称:LocalPickup,代码行数:13,代码来源:LocalPickupId.php

示例8: parseResults

 /**
  * @param LoopResult $loopResult
  *
  * @return LoopResult
  */
 public function parseResults(LoopResult $loopResult)
 {
     $address = $loopResult->getResultDataCollection();
     $loopResultRow = new LoopResultRow($address);
     $loopResultRow->set("ID", $address['Id'])->set("LABEL", $address['Label'])->set("CUSTOMER", $address['CustomerId'])->set("TITLE", $address['TitleId'])->set("COMPANY", $address['Company'])->set("FIRSTNAME", $address['Firstname'])->set("LASTNAME", $address['Lastname'])->set("ADDRESS1", $address['Address1'])->set("ADDRESS2", $address['Address2'])->set("ADDRESS3", $address['Address3'])->set("ZIPCODE", $address['Zipcode'])->set("CITY", $address['City'])->set("COUNTRY", $address['CountryId'])->set("PHONE", $address['Phone'])->set("CELLPHONE", $address['Cellphone'])->set("DEFAULT", $address['IsDefault']);
     $loopResult->addRow($loopResultRow);
     return $loopResult;
 }
开发者ID:bcbrr,项目名称:LocalPickup,代码行数:13,代码来源:LocalAddress.php

示例9: parseResults

 public function parseResults(LoopResult $loopResult)
 {
     $item = $loopResult->getResultDataCollection();
     $loopResultRow = new LoopResultRow();
     $loopResultRow->set('ORDER_COMMENT', $item['comment']);
     $loopResult->addRow($loopResultRow);
     return $loopResult;
 }
开发者ID:InformatiqueProg,项目名称:OrderComment,代码行数:8,代码来源:SessionOrderCommentLoop.php

示例10: parseResults

 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $orderProductTax) {
         $loopResultRow = new LoopResultRow($orderProductTax);
         $loopResultRow->set("ID", $orderProductTax->getId())->set("TITLE", $orderProductTax->getTitle())->set("DESCRIPTION", $orderProductTax->getDescription())->set("AMOUNT", $orderProductTax->getAmount())->set("PROMO_AMOUNT", $orderProductTax->getPromoAmount());
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
开发者ID:alex63530,项目名称:thelia,代码行数:9,代码来源:OrderProductTax.php

示例11: parseResults

 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $orderAttributeCombination) {
         $loopResultRow = new LoopResultRow($orderAttributeCombination);
         $loopResultRow->set("ATTRIBUTE_TITLE", $orderAttributeCombination->getAttributeTitle())->set("ATTRIBUTE_CHAPO", $orderAttributeCombination->getAttributeChapo())->set("ATTRIBUTE_DESCRIPTION", $orderAttributeCombination->getAttributeDescription())->set("ATTRIBUTE_POSTSCRIPTUM", $orderAttributeCombination->getAttributePostscriptum())->set("ATTRIBUTE_AVAILABILITY_TITLE", $orderAttributeCombination->getAttributeAvTitle())->set("ATTRIBUTE_AVAILABILITY_CHAPO", $orderAttributeCombination->getAttributeAvChapo())->set("ATTRIBUTE_AVAILABILITY_DESCRIPTION", $orderAttributeCombination->getAttributeAvDescription())->set("ATTRIBUTE_AVAILABILITY_POSTSCRIPTUM", $orderAttributeCombination->getAttributeAvPostscriptum());
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
开发者ID:alex63530,项目名称:thelia,代码行数:9,代码来源:OrderProductAttributeCombination.php

示例12: parseResults

 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $profile) {
         $loopResultRow = new LoopResultRow($profile);
         $loopResultRow->set("ID", $profile->getId())->set("IS_TRANSLATED", $profile->getVirtualColumn('IS_TRANSLATED'))->set("LOCALE", $this->locale)->set("CODE", $profile->getCode())->set("TITLE", $profile->getVirtualColumn('i18n_TITLE'))->set("CHAPO", $profile->getVirtualColumn('i18n_CHAPO'))->set("DESCRIPTION", $profile->getVirtualColumn('i18n_DESCRIPTION'))->set("POSTSCRIPTUM", $profile->getVirtualColumn('i18n_POSTSCRIPTUM'));
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
开发者ID:alex63530,项目名称:thelia,代码行数:9,代码来源:Profile.php

示例13: parseResults

 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $result) {
         $loopResultRow = new LoopResultRow($result);
         $loopResultRow->set("ID", $result->getId())->set("NAME", $result->getName())->set("IS_TRANSLATED", $result->getVirtualColumn('IS_TRANSLATED'))->set("LOCALE", $this->locale)->set("TITLE", $result->getVirtualColumn('i18n_TITLE'))->set("SUBJECT", $result->getVirtualColumn('i18n_SUBJECT'))->set("TEXT_MESSAGE", $result->getVirtualColumn('i18n_TEXT_MESSAGE'))->set("HTML_MESSAGE", $result->getVirtualColumn('i18n_HTML_MESSAGE'))->set("SECURED", $result->getSecured());
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
开发者ID:alex63530,项目名称:thelia,代码行数:9,代码来源:Message.php

示例14: parseResults

 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $template) {
         $loopResultRow = new LoopResultRow($template);
         $loopResultRow->set("ID", $template->getId())->set("IS_TRANSLATED", $template->getVirtualColumn('IS_TRANSLATED'))->set("LOCALE", $this->locale)->set("NAME", $template->getVirtualColumn('i18n_NAME'));
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
开发者ID:alex63530,项目名称:thelia,代码行数:9,代码来源:ProductTemplate.php

示例15: parseResults

 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $item) {
         $loopResultRow = new LoopResultRow();
         $loopResultRow->set("URL", $item->get_permalink())->set("TITLE", $item->get_title())->set("AUTHOR", $item->get_author())->set("DESCRIPTION", $item->get_description())->set("DATE", $item->get_date('U'));
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
开发者ID:alex63530,项目名称:thelia,代码行数:9,代码来源:Feed.php


注:本文中的Thelia\Core\Template\Element\LoopResultRow类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。