| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-backend/Classes/View/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3/cms-backend/Classes/View/RecordSearchBoxComponent.php |
<?php
declare(strict_types=1);
/*
* 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!
*/
namespace TYPO3\CMS\Backend\View;
use Psr\Http\Message\ServerRequestInterface;
/**
* Renders the search box for the record listing and the element browser.
*
* @internal
*/
class RecordSearchBoxComponent
{
protected array $allowedSearchLevels = [];
protected string $searchWord = '';
protected int $searchLevel = 0;
public function __construct(protected readonly BackendViewFactory $backendViewFactory) {}
public function setSearchWord(string $searchWord): self
{
$this->searchWord = $searchWord;
return $this;
}
public function setSearchLevel(int $searchLevel): self
{
$this->searchLevel = $searchLevel;
return $this;
}
public function setAllowedSearchLevels(array $allowedSearchLevels): self
{
$this->allowedSearchLevels = $allowedSearchLevels;
return $this;
}
public function render(ServerRequestInterface $request, string $formUrl = ''): string
{
$view = $this->backendViewFactory->create($request, ['typo3/cms-backend']);
return $view
->assignMultiple([
'formUrl' => $formUrl,
'availableSearchLevels' => $this->allowedSearchLevels,
'selectedSearchLevel' => $this->searchLevel,
'searchString' => $this->searchWord,
])
->render('RecordSearchBox');
}
}