12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Catalog Rule Combine Condition data model
- */
- namespace Magento\CatalogRule\Model\Rule\Condition;
- class Combine extends \Magento\Rule\Model\Condition\Combine
- {
- /**
- * @var \Magento\CatalogRule\Model\Rule\Condition\ProductFactory
- */
- protected $_productFactory;
- /**
- * @param \Magento\Rule\Model\Condition\Context $context
- * @param \Magento\CatalogRule\Model\Rule\Condition\ProductFactory $conditionFactory
- * @param array $data
- */
- public function __construct(
- \Magento\Rule\Model\Condition\Context $context,
- \Magento\CatalogRule\Model\Rule\Condition\ProductFactory $conditionFactory,
- array $data = []
- ) {
- $this->_productFactory = $conditionFactory;
- parent::__construct($context, $data);
- $this->setType(\Magento\CatalogRule\Model\Rule\Condition\Combine::class);
- }
- /**
- * @return array
- */
- public function getNewChildSelectOptions()
- {
- $productAttributes = $this->_productFactory->create()->loadAttributeOptions()->getAttributeOption();
- $attributes = [];
- foreach ($productAttributes as $code => $label) {
- $attributes[] = [
- 'value' => 'Magento\CatalogRule\Model\Rule\Condition\Product|' . $code,
- 'label' => $label,
- ];
- }
- $conditions = parent::getNewChildSelectOptions();
- $conditions = array_merge_recursive(
- $conditions,
- [
- [
- 'value' => \Magento\CatalogRule\Model\Rule\Condition\Combine::class,
- 'label' => __('Conditions Combination'),
- ],
- ['label' => __('Product Attribute'), 'value' => $attributes]
- ]
- );
- return $conditions;
- }
- /**
- * @param array $productCollection
- * @return $this
- */
- public function collectValidatedAttributes($productCollection)
- {
- foreach ($this->getConditions() as $condition) {
- /** @var Product|Combine $condition */
- $condition->collectValidatedAttributes($productCollection);
- }
- return $this;
- }
- }
|