Beispiel #1
0
 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;
 }
Beispiel #2
0
 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;
 }
 /**
  * @param LoopResult $loopResult
  *
  * @return LoopResult
  */
 public function parseResults(LoopResult $loopResult)
 {
     /** @var CustomerBirthDate $customerBirthDate */
     foreach ($loopResult->getResultDataCollection() as $customerBirthDate) {
         $loopResultRow = new LoopResultRow($customerBirthDate);
         $loopResultRow->set("CUSTOMER_ID", $customerBirthDate->getId());
         $loopResultRow->set("BIRTHDATE", $customerBirthDate->getBirthDate('Y-m-d'));
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
 public function parseResults(LoopResult $loopResult)
 {
     /** @var Category $data */
     foreach ($loopResult->getResultDataCollection() as $data) {
         $loopResultRow = new LoopResultRow();
         $loopResultRow->set("THELIA_CATEGORY_ID", $data->getId());
         $loopResultRow->set("THELIA_CATEGORY_TITLE", $data->getVirtualColumn('i18n_TITLE'));
         $loopResultRow->set("GOOGLE_CATEGORY", $data->getVirtualColumn('google_category'));
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
 /**
  * @param LoopResult $loopResult
  *
  * @return LoopResult
  */
 public function parseResults(LoopResult $loopResult)
 {
     /** @var OrderAddressSocolissimo $orderAddressSocolissimo */
     foreach ($loopResult->getResultDataCollection() as $orderAddressSocolissimo) {
         $row = new LoopResultRow();
         $row->set('ID', $orderAddressSocolissimo->getId());
         $row->set('CODE', $orderAddressSocolissimo->getCode());
         $row->set('TYPE', $orderAddressSocolissimo->getType());
         $loopResult->addRow($row);
     }
     return $loopResult;
 }
 /**
  * @param LoopResult $loopResult
  *
  * @return LoopResult
  */
 public function parseResults(LoopResult $loopResult)
 {
     /** @var GoogleshoppingAccount $account */
     foreach ($loopResult->getResultDataCollection() as $account) {
         $loopResultRow = new LoopResultRow();
         $loopResultRow->set("ID", $account->getId());
         $loopResultRow->set("MERCHANT_ID", $account->getMerchantId());
         $loopResultRow->set("DEFAULT_COUNTRY_ID", $account->getDefaultCountryId());
         $loopResultRow->set("DEFAULT_CURRENCY_ID", $account->getDefaultCurrencyId());
         $loopResultRow->set("IS_DEFAULT", $account->getIsDefault());
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
Beispiel #7
0
 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $resource) {
         $loopResultRow = new LoopResultRow($resource);
         $loopResultRow->set("ID", $resource->getId())->set("IS_TRANSLATED", $resource->getVirtualColumn('IS_TRANSLATED'))->set("LOCALE", $this->locale)->set("CODE", $resource->getCode())->set("TITLE", $resource->getVirtualColumn('i18n_TITLE'))->set("CHAPO", $resource->getVirtualColumn('i18n_CHAPO'))->set("DESCRIPTION", $resource->getVirtualColumn('i18n_DESCRIPTION'))->set("POSTSCRIPTUM", $resource->getVirtualColumn('i18n_POSTSCRIPTUM'));
         if (null !== $this->getProfile()) {
             $accessValue = $resource->getVirtualColumn('access');
             $manager = new AccessManager($accessValue);
             $loopResultRow->set("VIEWABLE", $manager->can(AccessManager::VIEW) ? 1 : 0)->set("CREATABLE", $manager->can(AccessManager::CREATE) ? 1 : 0)->set("UPDATABLE", $manager->can(AccessManager::UPDATE) ? 1 : 0)->set("DELETABLE", $manager->can(AccessManager::DELETE) ? 1 : 0);
         }
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
 /**
  * @param LoopResult $loopResult
  *
  * @return LoopResult
  */
 public function parseResults(LoopResult $loopResult)
 {
     /*
      * Check if loop is used with TransferPayment module
      */
     /** @var $row \TransferPayment\Model\TransferPaymentConfig */
     foreach ($loopResult->getResultDataCollection() as $row) {
         $loopResultRow = new LoopResultRow();
         $loopResultRow->set("KEY", $row->getName());
         $loopResultRow->set("VALUE", $row->getValue());
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $location) {
         $loopResultRow = new LoopResultRow($location);
         $loopResultRow->set("ID", $location->getID())->set("COMPANY", $location->getCompany())->set("FIRSTNAME", $location->getFirstname())->set("LASTNAME", $location->getLastname())->set("LAT", $location->getLat())->set("LNG", $location->getLng())->set("ADRESSE1", $location->getAddress1())->set("ADRESSE2", $location->getAddress2())->set("ADRESSE3", $location->getAddress3())->set("ZIPCODE", $location->getZipcode())->set("CITY", $location->getCity())->set("COUNTRY", $location->getCountryId())->set("VISIBLE", $location->getVisible() ? "1" : "0");
         if ($this->getBackend_context() || $this->getWithPrevNextInfo()) {
             // Find previous and next sale location
             $previous = SalesLocationsQuery::create()->filterById($location->getId(), Criteria::LESS_THAN)->orderById(Criteria::DESC)->findOne();
             $next = SalesLocationsQuery::create()->filterById($location->getId(), Criteria::GREATER_THAN)->orderById(Criteria::ASC)->findOne();
             $loopResultRow->set("HAS_PREVIOUS", $previous != null ? 1 : 0)->set("HAS_NEXT", $next != null ? 1 : 0)->set("PREVIOUS", $previous != null ? $previous->getId() : -1)->set("NEXT", $next != null ? $next->getId() : -1);
         }
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
 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;
 }
 /**
  * @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;
 }
Beispiel #12
0
 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;
 }
Beispiel #13
0
 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;
 }
Beispiel #14
0
 /**
  * @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;
 }
 public function parseResults(LoopResult $loopResult)
 {
     $item = $loopResult->getResultDataCollection();
     $loopResultRow = new LoopResultRow();
     $loopResultRow->set('ORDER_COMMENT', $item['comment']);
     $loopResult->addRow($loopResultRow);
     return $loopResult;
 }
Beispiel #16
0
 /**
  * @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;
 }
Beispiel #17
0
 public function addRow(LoopResultRow $row)
 {
     if (true === $this->versioned) {
         foreach ($this->getVersionOutputs() as $output) {
             $row->set($output[0], $row->model->{$output}[1]());
         }
     }
     if (true === $this->timestamped) {
         foreach ($this->getTimestampOutputs() as $output) {
             $row->set($output[0], $row->model->{$output}[1]());
         }
     }
     if (true === $this->countable) {
         $row->set('LOOP_COUNT', 1 + $this->getCount());
         $row->set('LOOP_TOTAL', $this->getResultDataCollectionCount());
     }
     $this->collection[] = $row;
 }
 /**
  * @param LoopResult $loopResult
  *
  * @return LoopResult
  */
 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $menu) {
         $loopResultRow = new LoopResultRow($menu);
         $loopResultRow->set('ID', $menu->getId())->set('TITLE', $menu->getVirtualColumn('i18n_TITLE'))->set('DESCRIPTION', $menu->getVirtualColumn('i18n_DESCRIPTION'))->set('VISIBLE', $menu->getVisible());
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
Beispiel #19
0
 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;
 }
 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $maxWeight => $price) {
         $loopResultRow = new LoopResultRow();
         $loopResultRow->set("MAX_WEIGHT", $maxWeight)->set("PRICE", $price);
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $ref => $code) {
         $loopResultRow = new LoopResultRow();
         $loopResultRow->set("URL", sprintf(self::BASE_URL, $code));
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
Beispiel #22
0
 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;
 }
 public function parseResults(LoopResult $loopResult)
 {
     if ($loopResult->getResultDataCollectionCount() > 0) {
         $loopResultRow = new LoopResultRow();
         $loopResultRow->set('AMOUNT_USED', $this->request->getSession()->get('creditAccount.amount', 0));
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
 /**
  * @param LoopResult $loopResult
  *
  * @return LoopResult
  */
 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $delivery) {
         $loopResultRow = new LoopResultRow();
         $loopResultRow->set("DELIVERY_TYPE", $delivery["deliveryType"])->set("DELIVERY_START_DATE", $delivery["deliveryStartDate"])->set("DATE_MIN", $delivery["deliveryMin"])->set("DATE_MAX", $delivery["deliveryMax"]);
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
 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;
 }
Beispiel #26
0
 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $featureValue) {
         $loopResultRow = new LoopResultRow($featureValue);
         $loopResultRow->set("ID", $featureValue->getId())->set("PRODUCT", $featureValue->getProductId())->set("FEATURE_AV_ID", $featureValue->getFeatureAvId())->set("FREE_TEXT_VALUE", $featureValue->getFreeTextValue())->set("IS_FREE_TEXT", is_null($featureValue->getFeatureAvId()) ? 1 : 0)->set("IS_FEATURE_AV", is_null($featureValue->getFeatureAvId()) ? 0 : 1)->set("LOCALE", $this->locale)->set("TITLE", $featureValue->getVirtualColumn(FeatureAvTableMap::TABLE_NAME . '_i18n_TITLE'))->set("CHAPO", $featureValue->getVirtualColumn(FeatureAvTableMap::TABLE_NAME . '_i18n_CHAPO'))->set("DESCRIPTION", $featureValue->getVirtualColumn(FeatureAvTableMap::TABLE_NAME . '_i18n_DESCRIPTION'))->set("POSTSCRIPTUM", $featureValue->getVirtualColumn(FeatureAvTableMap::TABLE_NAME . '_i18n_POSTSCRIPTUM'))->set("POSITION", $featureValue->getPosition());
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
Beispiel #27
0
 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $arr) {
         $loopResultRow = new LoopResultRow();
         $loopResultRow->set("ERRMES", $arr["ERRMES"])->set("ERRFILE", $arr["ERRFILE"]);
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
 /**
  * @param LoopResult $loopResult
  *
  * @return LoopResult
  */
 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $category) {
         $loopResultRow = new LoopResultRow($category);
         $loopResultRow->set("ID", $category->getId())->set("TITLE", $category->getVirtualColumn("i18n_TITLE"))->set("POSITION", $category->getPosition());
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }
Beispiel #29
0
 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;
 }
Beispiel #30
0
 public function parseResults(LoopResult $loopResult)
 {
     foreach ($loopResult->getResultDataCollection() as $admin) {
         $loopResultRow = new LoopResultRow($admin);
         $loopResultRow->set("ID", $admin->getId())->set("PROFILE", $admin->getProfileId())->set("FIRSTNAME", $admin->getFirstname())->set("LASTNAME", $admin->getLastname())->set("LOGIN", $admin->getLogin())->set("LOCALE", $admin->getLocale());
         $loopResult->addRow($loopResultRow);
     }
     return $loopResult;
 }