101 lines
2.5 KiB
PHP
101 lines
2.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;
|
|
}
|
|
|
|
require dirname(__FILE__) . '/_widgets.php';
|
|
|
|
$core->blog->settings->addNamespace('enhancePostContent');
|
|
|
|
if ($core->blog->settings->enhancePostContent->enhancePostContent_active) {
|
|
|
|
$core->addBehavior(
|
|
'publicHeadContent',
|
|
['publicEnhancePostContent', 'publicHeadContent']
|
|
);
|
|
$core->addBehavior(
|
|
'publicBeforeContentFilter',
|
|
['publicEnhancePostContent', 'publicContentFilter']
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @ingroup DC_PLUGIN_ENHANCEPOSTCONTENT
|
|
* @brief Filter posts content - public methods.
|
|
* @since 2.6
|
|
*/
|
|
class publicEnhancePostContent
|
|
{
|
|
/**
|
|
* Add filters CSS to page header
|
|
*
|
|
* @param dcCore $core dcCore instance
|
|
*/
|
|
public static function publicHeadContent(dcCore $core)
|
|
{
|
|
echo dcUtils::cssLoad($core->blog->url . $core->url->getURLFor('epccss'));
|
|
}
|
|
|
|
public static function css($args)
|
|
{
|
|
$css = [];
|
|
$filters = libEPC::getFilters();
|
|
|
|
foreach($filters as $id => $filter) {
|
|
if ('' != $filter->class || '' != $filter->style) {
|
|
continue;
|
|
}
|
|
|
|
$res = '';
|
|
foreach($filter->class as $k => $class) {
|
|
$styles = $filter->style;
|
|
$style = html::escapeHTML(trim($styles[$k]));
|
|
if ('' != $style) {
|
|
$res .= $class . " {" . $style . "} ";
|
|
}
|
|
}
|
|
|
|
if (!empty($res)) {
|
|
$css[] =
|
|
"/* CSS for enhancePostContent " . $id . " */ \n" . $res . "\n";
|
|
}
|
|
}
|
|
|
|
header('Content-Type: text/css; charset=UTF-8');
|
|
|
|
echo implode("\n", $css);
|
|
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Filter template blocks content
|
|
*
|
|
* @param dcCore $core dcCore instance
|
|
* @param string $tag Tempalte block name
|
|
* @param array $args Tempalte Block arguments
|
|
*/
|
|
public static function publicContentFilter(dcCore $core, $tag, $args)
|
|
{
|
|
$filters = libEPC::getFilters();
|
|
|
|
foreach($filters as $id => $filter) {
|
|
if (!libEPC::testContext($tag, $args, $filter)) {
|
|
continue;
|
|
}
|
|
$filter->publicContent($tag, $args);
|
|
}
|
|
}
|
|
} |