You are here

OrderItemPromotionOfferInterface.php in Commerce Core 8.2

File

modules/promotion/src/Plugin/Commerce/PromotionOffer/OrderItemPromotionOfferInterface.php
View source
<?php

namespace Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer;


/**
 * Defines the interface for order item offers.
 *
 * Order item offers have conditions, which are used to determine which
 * order items should be passed to the offer.
 */
interface OrderItemPromotionOfferInterface extends PromotionOfferInterface {

  /**
   * Gets the conditions.
   *
   * @return \Drupal\commerce\Plugin\Commerce\Condition\ConditionInterface[]
   *   The conditions.
   */
  public function getConditions();

  /**
   * Sets the conditions.
   *
   * @param \Drupal\commerce\Plugin\Commerce\Condition\ConditionInterface[] $conditions
   *   The conditions.
   *
   * @return $this
   */
  public function setConditions(array $conditions);

  /**
   * Gets the condition operator.
   *
   * @return string
   *   The condition operator. Possible values: AND, OR.
   */
  public function getConditionOperator();

}

Interfaces

Namesort descending Description
OrderItemPromotionOfferInterface Defines the interface for order item offers.