enhancePostContent/src/Filter/EpcFilterAcronym.php

72 lines
2.2 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 acronym 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 EpcFilterAcronym extends EpcFilter
2022-12-21 21:27:20 +00:00
{
protected string $id = 'acronym';
protected function initProperties(): array
2022-12-21 21:27:20 +00:00
{
return [
2023-04-21 22:21:30 +00:00
'priority' => 700,
'name' => __('Acronym'),
'description' => __('Explain some acronyms. First term of the list is the acornym and second term the explanation.'),
'has_list' => true,
'ignore' => ['pre','code','acronym'],
'class' => ['acronym.epc-acronym'],
'replace' => '<acronym class="epc-acronym" title="%s">%s</acronym>',
'widget' => '<acronym title="%s">%s</acronym>',
];
}
2022-12-21 21:27:20 +00:00
protected function initSettings(): array
{
return [
2023-04-21 22:21:30 +00:00
'style' => ['font-weight: bold;'],
'notag' => ['a','acronym','abbr','dfn','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
);
}
}
}