follow-up to r67820 and r67819: interface function newPartNodeArray for creating...
authorDaniel Kinzler <daniel@users.mediawiki.org>
Thu, 10 Jun 2010 15:18:43 +0000 (15:18 +0000)
committerDaniel Kinzler <daniel@users.mediawiki.org>
Thu, 10 Jun 2010 15:18:43 +0000 (15:18 +0000)
includes/parser/Preprocessor.php

index 9c417d2..d8c3d85 100644 (file)
@@ -13,6 +13,9 @@ interface Preprocessor {
        /** Create a new custom frame for programmatic use of parameter replacement as used in some extensions */
        function newCustomFrame( $args );
 
+       /** Create a new custom node for programmatic use of parameter replacement as used in some extensions */
+       function newPartNodeArray( $values );
+
        /** Preprocess text to a PPNode */
        function preprocessToObj( $text, $flags = 0 );
 }