enhancePostContent/src/Filter/EpcFilterSearch.php

65 lines
1.6 KiB
PHP
Raw Permalink Normal View History

2022-12-21 21:27:20 +00:00
<?php
2023-10-11 19:02:43 +00:00
2023-04-09 08:17:36 +00:00
declare(strict_types=1);
namespace Dotclear\Plugin\enhancePostContent\Filter;
2022-12-21 21:27:20 +00:00
2023-10-07 22:35:35 +00:00
use Dotclear\App;
2023-04-09 08:17:36 +00:00
use Dotclear\Plugin\enhancePostContent\Epc;
use Dotclear\Plugin\enhancePostContent\EpcFilter;
2023-10-11 19:02:43 +00:00
/**
* @brief enhancePostContent search filter.
* @ingroup enhancePostContent
*
* @author Jean-Christian Denis
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2023-04-09 08:17:36 +00:00
class EpcFilterSearch extends EpcFilter
2022-12-21 21:27:20 +00:00
{
protected string $id = 'search';
protected function initProperties(): array
2022-12-21 21:27:20 +00:00
{
return [
2023-04-21 22:21:30 +00:00
'priority' => 100,
'name' => __('Search'),
'description' => __('Highlight searched words.'),
'ignore' => [],
'class' => ['span.epc-search'],
'replace' => '<span class="epc-search" title="' . __('Search') . '">%s</span>',
];
}
2022-12-21 21:27:20 +00:00
protected function initSettings(): array
{
return [
2022-12-21 21:27:20 +00:00
'nocase' => true,
'plural' => true,
'style' => ['color: #FFCC66;'],
2023-04-21 22:21:30 +00:00
'notag' => ['h1','h2','h3'],
2022-12-21 21:27:20 +00:00
'tplValues' => ['EntryContent'],
2023-04-21 22:21:30 +00:00
'page' => ['search.html'],
];
2022-12-21 21:27:20 +00:00
}
2023-04-09 08:17:36 +00:00
public function publicContent(string $tag, array $args): void
2022-12-21 21:27:20 +00:00
{
2023-10-07 22:35:35 +00:00
if (empty(App::frontend()->search)) {
2023-04-09 08:17:36 +00:00
return;
2022-12-21 21:27:20 +00:00
}
2023-10-07 22:35:35 +00:00
$searchs = explode(' ', App::frontend()->search);
2022-12-21 21:27:20 +00:00
foreach ($searchs as $k => $v) {
2023-04-09 08:17:36 +00:00
$args[0] = Epc::replaceString(
2022-12-21 21:27:20 +00:00
$v,
sprintf($this->replace, '\\1'),
$args[0],
$this
);
}
}
}