Hierarchy fixup
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / smarty / node_methodz / modifier.indent.php
diff --git a/wwwroot/inc/smarty/node_methodz/modifier.indent.php b/wwwroot/inc/smarty/node_methodz/modifier.indent.php
new file mode 100644 (file)
index 0000000..552c3e1
--- /dev/null
@@ -0,0 +1,27 @@
+<?php
+/**
+ * Smarty plugin
+ * @package Smarty
+ * @subpackage plugins
+ */
+
+
+/**
+ * Smarty indent modifier plugin
+ *
+ * Type:     modifier<br>
+ * Name:     indent<br>
+ * Purpose:  indent lines of text
+ * @link http://smarty.php.net/manual/en/language.modifier.indent.php
+ *          indent (Smarty online manual)
+ * @param string
+ * @param integer
+ * @param string
+ * @return string
+ */
+function smarty_modifier_indent($string,$chars=4,$char=" ")
+{
+       return preg_replace('!^!m',str_repeat($char,$chars),$string);
+}
+
+?>
This page took 0.11872 seconds and 4 git commands to generate.