From: Daniel Kinzler Date: Thu, 10 Jun 2010 15:18:43 +0000 (+0000) Subject: follow-up to r67820 and r67819: interface function newPartNodeArray for creating... X-Git-Tag: 1.31.0-rc.0~36549 X-Git-Url: http://git.cyclocoop.org/%22.%24image2.%22?a=commitdiff_plain;h=fdb116128cbaba25d09139b22bd12875dfc9105d;p=lhc%2Fweb%2Fwiklou.git follow-up to r67820 and r67819: interface function newPartNodeArray for creating a new custom node for programmatic use of parameter replacement as used in some extensions --- diff --git a/includes/parser/Preprocessor.php b/includes/parser/Preprocessor.php index 9c417d23f9..d8c3d851c8 100644 --- a/includes/parser/Preprocessor.php +++ b/includes/parser/Preprocessor.php @@ -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 ); }