]> git.mxchange.org Git - core.git/blobdiff - framework/main/interfaces/template/class_CompileableTemplate.php
Continued:
[core.git] / framework / main / interfaces / template / class_CompileableTemplate.php
index 0c6636a18f7667a4fab3098b903145bd2c14d7e4..82ab8927e2993ea67da6654b4571d3ad8a8cebbf 100644 (file)
@@ -159,15 +159,6 @@ interface CompileableTemplate extends FrameworkInterface {
         */
        function renameVariable (string $oldName, string $newName);
 
-       /**
-        * Renders the given XML content
-        *
-        * @param       $content        Valid XML content or if not set the current loaded raw content
-        * @return      void
-        * @throws      XmlParserException      If an XML error was found
-        */
-       function renderXmlContent (string $content = NULL);
-
        /**
         * Enables or disables language support
         *
@@ -183,29 +174,6 @@ interface CompileableTemplate extends FrameworkInterface {
         */
        function isLanguageSupportEnabled ();
 
-       /**
-        * Enables or disables XML compacting
-        *
-        * @param       $xmlCompacting  New XML compacting setting
-        * @return      void
-        */
-       function enableXmlCompacting (bool $xmlCompacting = true);
-
-       /**
-        * Checks whether XML compacting is enabled
-        *
-        * @return      $xmlCompacting  Whether XML compacting is enabled or disabled
-        */
-       function isXmlCompactingEnabled ();
-
-       /**
-        * Removes all comments, tabs and new-line charcters to compact the content
-        *
-        * @param       $uncompactedContent             The uncompacted content
-        * @return      $compactedContent               The compacted content
-        */
-       function compactContent (string $uncompactedContent);
-
        /**
         * Getter for given variable group
         *