Overview

Namespaces

  • Apptus
    • ESales
      • Connector
        • Report
        • Time
    • Util
      • Cache
  • PHP
  • Overview
  • Namespace
  • Class
  • Tree
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 
<?php
namespace Apptus\ESales\Connector;

/**
 * Represents a result having the FacetList format.
 */

class FacetList  implements Result, \IteratorAggregate, \Countable
{
    private $array = array();

    /**
     *
     * FacetList constructor.
     */
    public function __construct(){

    }

    /**
     * Add Facet (either FacetRange or Values)
     *
     * @param Facet $facet
     */
    public function addFacet(Facet $facet) {
        array_push($this->array, $facet);
    }

    /**
     * Gets Facets
     *
     * @return array
     */
    public function getFacets() {
        return $this->array;
    }

    /**
     * Returns Iterator for Facets
     *
     * @return \ArrayIterator
     */
    public function getIterator() {
        return new \ArrayIterator($this->array);
    }

    /**
     * Gets length of array
     *
     * @return integer
     */
    public final function count() {
        return count($this->array);
    }

    /**
     * Shows if there are facets present
     *
     * @return bool
     */
    public function isEmpty() {
        return $this->count() == 0;
    }

    /**
     * Gets the type of the result
     *
     * @return ResultType
     */
    public function  getType()
    {
        return ResultType::FACET_LIST;
    }
}
Apptus ESales Connector PHP API documentation generated by ApiGen