72 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace WapplerSystems\Meilisearch\Mvc\Controller;
 | 
						|
 | 
						|
/*
 | 
						|
 * 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\SearchResultSet;
 | 
						|
use WapplerSystems\Meilisearch\System\Configuration\TypoScriptConfiguration;
 | 
						|
use TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class MeilisearchControllerContext
 | 
						|
 *
 | 
						|
 * @author Frans Saris <frans@beech.it>
 | 
						|
 * @author Timo Hund <timo.hund@dkd.de>
 | 
						|
 */
 | 
						|
class MeilisearchControllerContext extends ControllerContext
 | 
						|
{
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var TypoScriptConfiguration
 | 
						|
     */
 | 
						|
    protected $typoScriptConfiguration;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var SearchResultSet
 | 
						|
     */
 | 
						|
    protected $searchResultSet;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param TypoScriptConfiguration $typoScriptConfiguration
 | 
						|
     */
 | 
						|
    public function setTypoScriptConfiguration(TypoScriptConfiguration $typoScriptConfiguration)
 | 
						|
    {
 | 
						|
        $this->typoScriptConfiguration = $typoScriptConfiguration;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return TypoScriptConfiguration
 | 
						|
     */
 | 
						|
    public function getTypoScriptConfiguration()
 | 
						|
    {
 | 
						|
        return $this->typoScriptConfiguration;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param SearchResultSet $searchResultSet
 | 
						|
     */
 | 
						|
    public function setSearchResultSet(SearchResultSet $searchResultSet)
 | 
						|
    {
 | 
						|
        $this->searchResultSet = $searchResultSet;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return SearchResultSet
 | 
						|
     */
 | 
						|
    public function getSearchResultSet()
 | 
						|
    {
 | 
						|
        return $this->searchResultSet;
 | 
						|
    }
 | 
						|
}
 |