From fdb116128cbaba25d09139b22bd12875dfc9105d Mon Sep 17 00:00:00 2001 From: Daniel Kinzler Date: Thu, 10 Jun 2010 15:18:43 +0000 Subject: [PATCH] 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 --- includes/parser/Preprocessor.php | 3 +++ 1 file changed, 3 insertions(+) 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 ); } -- 2.20.1