124 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace WapplerSystems\Meilisearch\Domain\Search\ResultSet\Facets\RangeBased\NumericRange;
 | 
						|
 | 
						|
/*
 | 
						|
 * This file is part of the TYPO3 CMS project.
 | 
						|
 *
 | 
						|
 * It is free software; you can redistribute it and/or modify it under
 | 
						|
 * the terms of the GNU General Public License, either version 2
 | 
						|
 * of the License, or any later version.
 | 
						|
 *
 | 
						|
 * For the full copyright and license information, please read the
 | 
						|
 * LICENSE.txt file that was distributed with this source code.
 | 
						|
 *
 | 
						|
 * The TYPO3 project - inspiring people to share!
 | 
						|
*/
 | 
						|
 | 
						|
use WapplerSystems\Meilisearch\Domain\Search\ResultSet\Facets\RangeBased\AbstractRangeFacetItem;
 | 
						|
 | 
						|
/**
 | 
						|
 * Value object that represent an option of a numric range facet.
 | 
						|
 *
 | 
						|
 * @author Frans Saris <frans@beech.it>
 | 
						|
 * @author Timo Hund <timo.hund@dkd.de>
 | 
						|
 */
 | 
						|
class NumericRange extends AbstractRangeFacetItem
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var float
 | 
						|
     */
 | 
						|
    protected $startRequested;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var float
 | 
						|
     */
 | 
						|
    protected $endRequested;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var float
 | 
						|
     */
 | 
						|
    protected $startInResponse;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var float
 | 
						|
     */
 | 
						|
    protected $endInResponse;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param NumericRangeFacet $facet
 | 
						|
     * @param float|null $startRequested
 | 
						|
     * @param float|null $endRequested
 | 
						|
     * @param float|null $startInResponse
 | 
						|
     * @param float|null $endInResponse
 | 
						|
     * @param string $gap
 | 
						|
     * @param int $documentCount
 | 
						|
     * @param array $rangeCounts
 | 
						|
     * @param bool $selected
 | 
						|
     */
 | 
						|
    public function __construct(NumericRangeFacet $facet, $startRequested = null, $endRequested = null, $startInResponse = null, $endInResponse = null, $gap = '', $documentCount = 0, $rangeCounts, $selected = false)
 | 
						|
    {
 | 
						|
        $this->startInResponse = $startInResponse;
 | 
						|
        $this->endInResponse = $endInResponse;
 | 
						|
        $this->startRequested = $startRequested;
 | 
						|
        $this->endRequested = $endRequested;
 | 
						|
        $this->rangeCounts = $rangeCounts;
 | 
						|
        $this->gap = $gap;
 | 
						|
 | 
						|
        $label = '';
 | 
						|
        if ($startRequested !== null && $endRequested !== null) {
 | 
						|
            $label = $this->getRangeString();
 | 
						|
        }
 | 
						|
 | 
						|
 | 
						|
        parent::__construct($facet, $label, $documentCount, $selected);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    protected function getRangeString()
 | 
						|
    {
 | 
						|
        return $this->startRequested . '-' . $this->endRequested;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Retrieves the end date that was requested by the user for this facet.
 | 
						|
     *
 | 
						|
     * @return float
 | 
						|
     */
 | 
						|
    public function getEndRequested()
 | 
						|
    {
 | 
						|
        return $this->endRequested;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Retrieves the start date that was requested by the used for the facet.
 | 
						|
     *
 | 
						|
     * @return float
 | 
						|
     */
 | 
						|
    public function getStartRequested()
 | 
						|
    {
 | 
						|
        return $this->startRequested;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Retrieves the end date that was received from meilisearch for this facet.
 | 
						|
     *
 | 
						|
     * @return float
 | 
						|
     */
 | 
						|
    public function getEndInResponse()
 | 
						|
    {
 | 
						|
        return $this->endInResponse;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Retrieves the start date that was received from meilisearch for this facet.
 | 
						|
     *
 | 
						|
     * @return float
 | 
						|
     */
 | 
						|
    public function getStartInResponse()
 | 
						|
    {
 | 
						|
        return $this->startInResponse;
 | 
						|
    }
 | 
						|
}
 |