enhancePostContent/src/Filter/EpcFilterTag.php

82 lines
2.4 KiB
PHP
Raw Normal View History

2022-12-21 21:27:20 +00:00
<?php
/**
* @brief enhancePostContent, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Jean-Christian Denis and Contributors
*
* @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
declare(strict_types=1);
namespace Dotclear\Plugin\enhancePostContent\Filter;
use dcCore;
use Dotclear\Plugin\enhancePostContent\Epc;
use Dotclear\Plugin\enhancePostContent\EpcFilter;
use Dotclear\Plugin\widgets\WidgetsElement;
2022-12-21 21:27:20 +00:00
2023-04-09 08:17:36 +00:00
class EpcFilterTag extends EpcFilter
2022-12-21 21:27:20 +00:00
{
protected function init(): string
{
$this->setProperties([
'priority' => 900,
'name' => __('Tag'),
'help' => __('Highlight tags of your blog.'),
'htmltag' => 'a',
'class' => ['a.epc-tag'],
'replace' => '<a class="epc-tag" href="%s" title="' . __('Tag') . '">%s</a>',
'widget' => '<a href="%s" title="' . __('Tag') . '">%s</a>',
]);
$this->setSettings([
'style' => ['text-decoration: none; border-bottom: 3px double #CCCCCC;'],
'notag' => 'a,h1,h2,h3',
'tplValues' => ['EntryContent'],
'pubPages' => ['post.html'],
]);
return 'tag';
}
2023-04-09 08:17:36 +00:00
public function publicContent(string $tag, array $args): void
2022-12-21 21:27:20 +00:00
{
if (!dcCore::app()->plugins->moduleExists('tags')) {
2023-04-09 08:17:36 +00:00
return;
2022-12-21 21:27:20 +00:00
}
$metas = dcCore::app()->meta->getMetadata(['meta_type' => 'tag']);
while ($metas->fetch()) {
2023-04-09 08:17:36 +00:00
$args[0] = Epc::replaceString(
2022-12-21 21:27:20 +00:00
$metas->meta_id,
sprintf($this->replace, dcCore::app()->blog->url . dcCore::app()->url->getBase('tag') . '/' . $metas->meta_id, '\\1'),
$args[0],
$this
);
}
}
2023-04-09 08:17:36 +00:00
public function widgetList(string $content, WidgetsElement $w, array &$list): void
2022-12-21 21:27:20 +00:00
{
if (!dcCore::app()->plugins->moduleExists('tags')) {
2023-04-09 08:17:36 +00:00
return;
2022-12-21 21:27:20 +00:00
}
$metas = dcCore::app()->meta->getMetadata(['meta_type' => 'tag']);
while ($metas->fetch()) {
2023-04-09 08:17:36 +00:00
$list[] = Epc::matchString(
2022-12-21 21:27:20 +00:00
$metas->meta_id,
sprintf($this->widget, dcCore::app()->blog->url . dcCore::app()->url->getBase('tag') . '/' . $metas->meta_id, '\\1'),
$content,
$this
);
}
}
}