Removed ArrayFromList template modifier
authorAlexander Ebert <ebert@woltlab.com>
Fri, 30 Nov 2012 11:32:41 +0000 (12:32 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Fri, 30 Nov 2012 11:32:41 +0000 (12:32 +0100)
wcfsetup/install/files/lib/system/template/plugin/ArrayfromlistModifierTemplatePlugin.class.php [deleted file]

diff --git a/wcfsetup/install/files/lib/system/template/plugin/ArrayfromlistModifierTemplatePlugin.class.php b/wcfsetup/install/files/lib/system/template/plugin/ArrayfromlistModifierTemplatePlugin.class.php
deleted file mode 100644 (file)
index d0782c1..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-namespace wcf\system\template\plugin;
-use wcf\system\template\TemplateEngine;
-
-/**
- * The 'arrayfromlist' modifier generates an associative array out of a key-value list.
- * The list has key-value pairs separated by : with each pair on an own line:
- * 
- * Example list:
- *     key1:value1
- *     key2:value2
- *     ...
- * 
- * Usage:
- *     {$list|arrayfromlist}
- * 
- * @todo       rename to 'ArrayFromListModifierTemplatePlugin'
- * 
- * @author     Marcel Werk
- * @copyright  2001-2012 WoltLab GmbH
- * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package    com.woltlab.wcf
- * @subpackage system.template.plugin
- * @category   Community Framework
- */
-class ArrayfromlistModifierTemplatePlugin implements IModifierTemplatePlugin {
-       /**
-        * @see wcf\system\template\IModifierTemplatePlugin::execute()
-        */
-       public function execute($tagArgs, TemplateEngine $tplObj) {
-               // TODO: implement
-               return '';
-       }
-}