From: Alexander Ebert Date: Thu, 20 Dec 2012 15:08:32 +0000 (+0100) Subject: Removed {staticlang} template plugin X-Git-Tag: 2.0.0_Beta_1~690^2~1 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=023e3a96d27d42666e329b2eabdc39228ecfeeae;p=GitHub%2FWoltLab%2FWCF.git Removed {staticlang} template plugin --- diff --git a/wcfsetup/install/files/lib/system/template/plugin/StaticlangTemplatePluginCompiler.class.php b/wcfsetup/install/files/lib/system/template/plugin/StaticlangTemplatePluginCompiler.class.php deleted file mode 100644 index b716484b5f..0000000000 --- a/wcfsetup/install/files/lib/system/template/plugin/StaticlangTemplatePluginCompiler.class.php +++ /dev/null @@ -1,35 +0,0 @@ - - * @package com.woltlab.wcf - * @subpackage system.template.plugin - * @category Community Framework - */ -class StaticlangCompilerTemplatePlugin implements ICompilerTemplatePlugin { - /** - * @see wcf\system\template\ICompilerTemplatePlugin::executeStart() - */ - public function executeStart($tagArgs, TemplateScriptingCompiler $compiler) { - $compiler->pushTag('staticlang'); - - return ""; - } - - /** - * @see wcf\system\template\ICompilerTemplatePlugin::executeEnd() - */ - public function executeEnd(TemplateScriptingCompiler $compiler) { - $compiler->popTag('staticlang'); - return "get(ob_get_clean()); ?>"; - } -}