// +----------------------------------------------------------------------+ // /** * Replace XML tags with echo '<' .'?xml'; * * @package HTML_Template_Flexy * */ class HTML_Template_Flexy_Compiler_Regex_Xml { /** * Standard Set Engine * * * @param object HTML_Template_Flexy the main engine * @access private */ function _set_engine(&$engine) { } /* * replace the xml tags * * @param string The template * @access public */ function pre_replace_xml ($input) { $input = str_replace("?>","'; ?>\n",$input); $input = str_replace("",$input); return $input; } } ?>