enhancePostContent/_public.php

40 lines
1.0 KiB
PHP
Raw Normal View History

2021-08-23 23:55:52 +00:00
<?php
2021-09-02 18:35:25 +00:00
/**
* @brief enhancePostContent, a plugin for Dotclear 2
2021-11-01 09:33:43 +00:00
*
2021-09-02 18:35:25 +00:00
* @package Dotclear
* @subpackage Plugin
2021-11-01 09:33:43 +00:00
*
2021-09-02 18:35:25 +00:00
* @author Jean-Christian Denis and Contributors
2021-11-01 09:33:43 +00:00
*
2021-09-02 18:35:25 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-08-23 23:55:52 +00:00
if (!defined('DC_RC_PATH')) {
return null;
2021-08-23 23:55:52 +00:00
}
2022-11-13 20:30:48 +00:00
require __DIR__ . '/_widgets.php';
2021-08-23 23:55:52 +00:00
2022-11-13 20:30:48 +00:00
dcCore::app()->blog->settings->addNamespace('enhancePostContent');
2021-08-23 23:55:52 +00:00
2022-11-30 23:41:34 +00:00
if (!dcCore::app()->blog->settings->enhancePostContent->enhancePostContent_active) {
return null;
2021-08-23 23:55:52 +00:00
}
2022-11-30 23:41:34 +00:00
// Add filters CSS to page header
dcCore::app()->addBehavior('publicHeadContent', function() {
echo dcUtils::cssLoad(dcCore::app()->blog->url . dcCore::app()->url->getURLFor('epccss'));
});
// Filter template blocks content
dcCore::app()->addBehavior('publicBeforeContentFilterV2', function($tag, $args) {
$filters = libEPC::getFilters();
foreach ($filters as $id => $filter) {
if (!libEPC::testContext($tag, $args, $filter)) {
continue;
}
2022-11-30 23:41:34 +00:00
$filter->publicContent($tag, $args);
}
2022-11-30 23:41:34 +00:00
});