WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
<?php/** * * @category modules * @package output_filter * @copyright Manuela v.d.Decken <manuela@isteam.de> * @author Manuela v.d.Decken <manuela@isteam.de> * @link http://WebsiteBaker.org/ * @license http://www.gnu.org/licenses/gpl.html * @platform WebsiteBaker 2.8.3-SP4 and higher * @requirements PHP 5.3.6 and higher * *//* ****************************************************************** *//** * execute the frontend output filter * @param string $sContent actual content * @return string modified content */ function executeFrontendOutputFilter($sContent) { // if (!function_exists('OutputFilterApi')) { // include __DIR__.'/OutputFilterApi.php'; // } return OutputFilterApi( array( 'WbLink', 'ReplaceSysvar', 'CssToHead', /* ****************************************************************** *//* *** from here insert ordered requests of individual filters *** *//* *** *** *//**/ 'ScriptVars', 'LoadOnFly', 'Jquery', 'SnippetJs', 'FrontendJs', 'Droplets', 'Email', 'OpF',/* *** *** *//* *** end of individual filters *** *//* ****************************************************************** */ 'WbLink', 'ReplaceSysvar', 'RelUrl', ), $sContent ); }
// 'CssToHead',