diff options
Diffstat (limited to 'MLEB/Babel/BabelStatic.class.php')
-rw-r--r-- | MLEB/Babel/BabelStatic.class.php | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/MLEB/Babel/BabelStatic.class.php b/MLEB/Babel/BabelStatic.class.php deleted file mode 100644 index 5fd0b21d..00000000 --- a/MLEB/Babel/BabelStatic.class.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php -/** - * Static functions for extension. - * - * @file - * @author Robert Leverington - * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later - */ - -/** - * Static functions for Babel extension. - */ -class BabelStatic { - /** - * Registers the parser function hook. - * - * @param $parser Parser - * - * @return Boolean: True. - */ - public static function onParserFirstCallInit( $parser ) { - $parser->setFunctionHook( 'babel', array( 'Babel', 'Render' ) ); - - return true; - } -} |