| Current Path : /home/jlgagfroyt/www/plugins/system/modals/src/ |
| Current File : /home/jlgagfroyt/www/plugins/system/modals/src/Clean.php |
<?php
/**
* @package Modals
* @version 11.11.1
*
* @author Peter van Westen <info@regularlabs.com>
* @link http://regularlabs.com
* @copyright Copyright © 2022 Regular Labs All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
namespace RegularLabs\Plugin\System\Modals;
defined('_JEXEC') or die;
use RegularLabs\Library\Protect as RL_Protect;
class Clean
{
/**
* Just in case you can't figure the method name out: this cleans the left-over junk
*/
public static function cleanFinalHtmlOutput(&$html)
{
[$tag_start, $tag_end] = Params::getTagCharacters();
Protect::unprotectTags($html);
RL_Protect::removeFromHtmlTagContent($html, Params::getTags(true));
RL_Protect::removeInlineComments($html, 'Modals');
RL_Protect::removePluginTags($html,
Params::getTagWords(),
$tag_start,
$tag_end
);
}
}