class JobItemCart

Represents a job item cart.

Hierarchy

Expanded class hierarchy of JobItemCart

Related topics

1 string reference to 'JobItemCart'
1 service uses JobItemCart

File

src/JobItemCart.php, line 12

Namespace

Drupal\tmgmt
View source
class JobItemCart {

  /**
   * Array key to store the contents of $this->cart into the $_SESSION variable.
   *
   * @var string
   */
  protected $session_key = 'tmgmt_cart';

  /**
   * An array to hold and manipulate the contents of the job item cart.
   *
   * @var array
   */
  protected $cart;

  /**
   * Set up a new JobItemCart instance.
   *
   * Will load the cart from the session or initialize a new one if nothing has
   * been stored yet.
   */
  public function __construct() {
    if (!isset($_SESSION[$this->session_key])) {
      $_SESSION[$this->session_key] = array();
    }
    $this->cart =& $_SESSION[$this->session_key];
  }

  /**
   * Adds existing job items into the cart.
   *
   * @param \Drupal\tmgmt\JobItemInterface[] $items
   *   Job items to be added.
   */
  public function addExistingJobItems(array $items) {
    foreach ($items as $item) {
      if (!$this
        ->isSourceItemAdded($item
        ->getPlugin(), $item
        ->getItemType(), $item
        ->getItemId())) {
        $this->cart[] = $item
          ->id();
      }
    }
  }

  /**
   * Creates a job item and adds it into the cart.
   *
   * @param string $plugin
   *   The source plugin.
   * @param string $item_type
   *   The source item type.
   * @param $item_id
   *   The source item id.
   *
   * @return JobItem|null
   *   Added job item. If the item exists NULL is returned.
   */
  public function addJobItem($plugin, $item_type, $item_id) {
    if ($this
      ->isSourceItemAdded($plugin, $item_type, $item_id)) {
      return NULL;
    }
    $job_item = tmgmt_job_item_create($plugin, $item_type, $item_id);
    $job_item
      ->save();
    $this->cart[] = $job_item
      ->id();
    return $job_item;
  }

  /**
   * Checks if the source item has been added into the cart.
   *
   * @param string $plugin
   *   The source plugin.
   * @param string $item_type
   *   The source type.
   * @param int $source_id
   *   The source id.
   *
   * @return bool
   *   If the source item is in the cart.
   */
  public function isSourceItemAdded($plugin, $item_type, $source_id) {
    foreach ($this
      ->getJobItemsFromCart() as $job_item) {
      if ($job_item
        ->getItemId() == $source_id && $job_item
        ->getItemType() == $item_type && $job_item
        ->getPlugin() == $plugin) {
        return TRUE;
      }
    }
    return FALSE;
  }

  /**
   * Remove job items from the cart.
   *
   * @param array $job_item_ids
   *   Job items to be removed.
   */
  public function removeJobItems(array $job_item_ids) {
    $this->cart = array_diff($this->cart, $job_item_ids);
  }

  /**
   * Gets job items in the cart.
   *
   * @return \Drupal\tmgmt\JobItemInterface[] $items
   *   Job items in the cart.
   */
  public function getJobItemsFromCart() {
    return JobItem::loadMultiple($this->cart);
  }

  /**
   * Gets count of items in the cart.
   *
   * @return int
   *   Number of items in the cart.
   */
  public function count() {
    return count($this->cart);
  }

  /**
   * Remove all contents from the cart.
   */
  public function emptyCart() {
    $this->cart = array();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
JobItemCart::$cart protected property An array to hold and manipulate the contents of the job item cart.
JobItemCart::$session_key protected property Array key to store the contents of $this->cart into the $_SESSION variable.
JobItemCart::addExistingJobItems public function Adds existing job items into the cart.
JobItemCart::addJobItem public function Creates a job item and adds it into the cart.
JobItemCart::count public function Gets count of items in the cart.
JobItemCart::emptyCart public function Remove all contents from the cart.
JobItemCart::getJobItemsFromCart public function Gets job items in the cart.
JobItemCart::isSourceItemAdded public function Checks if the source item has been added into the cart.
JobItemCart::removeJobItems public function Remove job items from the cart.
JobItemCart::__construct public function Set up a new JobItemCart instance.