Changed names of the template plugin classes
authorMatthias Schmidt <gravatronics@live.com>
Fri, 12 Aug 2011 19:51:11 +0000 (21:51 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Fri, 12 Aug 2011 19:51:11 +0000 (21:51 +0200)
commit349976a8fabe40a8e732526ea4d3e6c88cd70f61
treec9db3338d390dc0e3bac18281912d5615502b5e5
parent75afb100e53a118736cdec8a9c77d2dc947dd4b6
Changed names of the template plugin classes

During my tests, I found out that some template plugins don't work
anymore. I added a todo each time so you can fix that and replaced the
return value with an empty string so that at least no exception is
thrown anymore. I myself fixed a bug in the staticlang compiler (caused:
"Class 'WCF' not found in …").
59 files changed:
wcfsetup/install/files/lib/system/template/IBlockTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/ICompilerTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/IFunctionTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/IModifierTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/IPrefilterTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/ITemplatePluginBlock.class.php [deleted file]
wcfsetup/install/files/lib/system/template/ITemplatePluginCompiler.class.php [deleted file]
wcfsetup/install/files/lib/system/template/ITemplatePluginFunction.class.php [deleted file]
wcfsetup/install/files/lib/system/template/ITemplatePluginModifier.class.php [deleted file]
wcfsetup/install/files/lib/system/template/ITemplatePluginPrefilter.class.php [deleted file]
wcfsetup/install/files/lib/system/template/TemplateEngine.class.php
wcfsetup/install/files/lib/system/template/TemplateScriptingCompiler.class.php
wcfsetup/install/files/lib/system/template/plugin/AppendCompilerTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/ArrayfromlistModifierTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/AssignCompilerTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/ConcatModifierTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/CounterFunctionTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/CycleFunctionTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/DateModifierTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/DatediffModifierTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/EncodejsModifierTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/EventPrefilterTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/FetchCompilerTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/FilesizeBinaryModifierTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/FilesizeModifierTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/HascontentPrefilterTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/HtmlcheckboxesFunctionTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/HtmloptionsFunctionTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/IconCompilerTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/IconPrefilterTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/ImplodeCompilerTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/LangCompilerTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/LangPrefilterTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/LinkBlockTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/PagesFunctionTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/PlainTimeModifierTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/PrependCompilerTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/SmallpagesFunctionTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/StaticlangTemplatePluginCompiler.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginBlockLink.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginCompilerAppend.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginCompilerAssign.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginCompilerFetch.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginCompilerIcon.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginCompilerImplode.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginCompilerLang.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginCompilerPrepend.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginCompilerStaticlang.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginFunctionCounter.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginFunctionCycle.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginFunctionHtmlcheckboxes.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginFunctionHtmloptions.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginFunctionPages.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginFunctionSmallpages.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginModifierArrayfromlist.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginModifierConcat.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TemplatePluginModifierDate.class.php [deleted file]
wcfsetup/install/files/lib/system/template/plugin/TimeModifierTemplatePlugin.class.php [new file with mode: 0644]
wcfsetup/install/files/lib/system/template/plugin/TruncateModifierTemplatePlugin.class.php [new file with mode: 0644]