69 lines
2.0 KiB
PHP
69 lines
2.0 KiB
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;
|
|
use Psr\Http\Message\UriInterface;
|
|
use Symfony\Component\DependencyInjection\Attribute\Autoconfigure;
|
|
|
|
/**
|
|
* Renders the search box for the record listing and the element browser.
|
|
*
|
|
* @internal
|
|
*/
|
|
#[Autoconfigure(public: true, shared: false)]
|
|
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, UriInterface|string|null $formUrl = null): 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');
|
|
}
|
|
}
|