57 lines
1.5 KiB
PHP
57 lines
1.5 KiB
PHP
<?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
|
|
*/
|
|
if (!defined('DC_RC_PATH')) {
|
|
return null;
|
|
}
|
|
|
|
class epcFilterReplace extends epcFilter
|
|
{
|
|
protected function init(): string
|
|
{
|
|
$this->setProperties([
|
|
'priority' => 200,
|
|
'name' => __('Replace'),
|
|
'help' => __('Replace some text. First term of the list is the text to replace and second term the replacement.'),
|
|
'has_list' => true,
|
|
'htmltag' => '',
|
|
'class' => ['span.epc-replace'],
|
|
'replace' => '<span class="epc-replace">%s</span>',
|
|
]);
|
|
|
|
$this->setSettings([
|
|
'nocase' => true,
|
|
'plural' => true,
|
|
'style' => ['font-style: italic;'],
|
|
'notag' => 'h1,h2,h3',
|
|
'tplValues' => ['EntryContent'],
|
|
'pubPages' => ['post.html'],
|
|
]);
|
|
|
|
return 'replace';
|
|
}
|
|
|
|
public function publicContent($tag, $args)
|
|
{
|
|
while ($this->records()->fetch()) {
|
|
$args[0] = enhancePostContent::replaceString(
|
|
$this->records()->epc_key,
|
|
sprintf($this->replace, $this->records()->epc_value, '\\2'),
|
|
$args[0],
|
|
$this
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|