2013-11-09 21:02:56 +01:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Smarty plugin
|
2018-11-07 08:18:14 +01:00
|
|
|
*
|
|
|
|
|
* @package Smarty
|
2013-11-09 21:02:56 +01:00
|
|
|
* @subpackage PluginsModifierCompiler
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* Smarty indent modifier plugin
|
2018-11-07 08:18:14 +01:00
|
|
|
* Type: modifier
|
|
|
|
|
* Name: indent
|
2013-11-09 21:02:56 +01:00
|
|
|
* Purpose: indent lines of text
|
|
|
|
|
*
|
2023-05-08 17:50:42 +02:00
|
|
|
* @link https://www.smarty.net/manual/en/language.modifier.indent.php indent (Smarty online manual)
|
2013-11-09 21:02:56 +01:00
|
|
|
* @author Uwe Tews
|
2018-11-07 08:18:14 +01:00
|
|
|
*
|
2013-11-09 21:02:56 +01:00
|
|
|
* @param array $params parameters
|
2018-11-07 08:18:14 +01:00
|
|
|
*
|
2013-11-09 21:02:56 +01:00
|
|
|
* @return string with compiled code
|
|
|
|
|
*/
|
2018-11-07 08:18:14 +01:00
|
|
|
function smarty_modifiercompiler_indent($params)
|
2013-11-09 21:02:56 +01:00
|
|
|
{
|
2018-11-07 08:18:14 +01:00
|
|
|
if (!isset($params[ 1 ])) {
|
|
|
|
|
$params[ 1 ] = 4;
|
2013-11-09 21:02:56 +01:00
|
|
|
}
|
2018-11-07 08:18:14 +01:00
|
|
|
if (!isset($params[ 2 ])) {
|
|
|
|
|
$params[ 2 ] = "' '";
|
2013-11-09 21:02:56 +01:00
|
|
|
}
|
2018-11-07 08:18:14 +01:00
|
|
|
return 'preg_replace(\'!^!m\',str_repeat(' . $params[ 2 ] . ',' . $params[ 1 ] . '),' . $params[ 0 ] . ')';
|
2013-11-09 21:02:56 +01:00
|
|
|
}
|