removed mods directory from the ATutor codebase
[atutor.git] / mods / phpdoc2 / PhpDocumentor / phpDocumentor / Smarty-2.6.0 / libs / plugins / modifier.spacify.php
diff --git a/mods/phpdoc2/PhpDocumentor/phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.spacify.php b/mods/phpdoc2/PhpDocumentor/phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.spacify.php
deleted file mode 100644 (file)
index bcc5f94..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php\r
-/**\r
- * Smarty plugin\r
- * @package Smarty\r
- * @subpackage plugins\r
- */\r
-\r
-\r
-/**\r
- * Smarty spacify modifier plugin\r
- *\r
- * Type:     modifier<br>\r
- * Name:     spacify<br>\r
- * Purpose:  add spaces between characters in a string\r
- * @link http://smarty.php.net/manual/en/language.modifier.spacify.php\r
- *          spacify (Smarty online manual)\r
- * @param string\r
- * @param string\r
- * @return string\r
- */\r
-function smarty_modifier_spacify($string, $spacify_char = ' ')\r
-{\r
-    return implode($spacify_char,\r
-                   preg_split('//', $string, -1, PREG_SPLIT_NO_EMPTY));\r
-}\r
-\r
-/* vim: set expandtab: */\r
-\r
-?>\r