enhancePostContent/src/Filter/EpcFilterCitation.php

73 lines
2.1 KiB
PHP
Raw 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;
use ArrayObject;
2023-04-09 08:17:36 +00:00
use Dotclear\Plugin\enhancePostContent\Epc;
use Dotclear\Plugin\enhancePostContent\EpcFilter;
use Dotclear\Plugin\widgets\WidgetsElement;
2022-12-21 21:27:20 +00:00
2023-10-11 19:02:43 +00:00
/**
* @brief enhancePostContent citaion 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 EpcFilterCitation extends EpcFilter
2022-12-21 21:27:20 +00:00
{
protected string $id = 'citation';
protected function initProperties(): array
2022-12-21 21:27:20 +00:00
{
return [
2023-04-21 22:21:30 +00:00
'priority' => 600,
'name' => __('Citation'),
'description' => __('Highlight citation of people. First term of the list is the citation and second term the author.'),
'has_list' => true,
'ignore' => ['pre','code','cite'],
'class' => ['cite.epc-cite'],
'replace' => '<cite class="epc-cite" title="%s">%s</cite>',
'widget' => '<cite title="%s">%s</cite>',
];
}
2022-12-21 21:27:20 +00:00
protected function initSettings(): array
{
return [
2023-04-21 22:21:30 +00:00
'nocase' => true,
'style' => ['font-style: italic;'],
'notag' => ['a','h1','h2','h3'],
'template' => ['EntryContent'],
'page' => ['post.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
{
while ($this->records()->fetch()) {
2023-04-09 08:17:36 +00:00
$args[0] = Epc::replaceString(
$this->records()->f('epc_key'),
sprintf($this->replace, __($this->records()->f('epc_value')), '\\1'),
2022-12-21 21:27:20 +00:00
$args[0],
$this
);
}
}
public function widgetList(string $content, WidgetsElement $w, ArrayObject $list): void
2022-12-21 21:27:20 +00:00
{
while ($this->records()->fetch()) {
2023-04-09 08:17:36 +00:00
$list[] = Epc::matchString(
$this->records()->f('epc_key'),
sprintf($this->widget, __($this->records()->f('epc_value')), '\\1'),
2022-12-21 21:27:20 +00:00
$content,
$this
);
}
}
}