fusionpbx/resources/templates/engine/smarty/plugins/modifiercompiler.strip.php

31 lines
798 B
PHP
Raw Normal View History

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 strip modifier plugin
2018-11-07 08:18:14 +01:00
* Type: modifier
* Name: strip
2013-11-09 21:02:56 +01:00
* Purpose: Replace all repeated spaces, newlines, tabs
2018-11-07 08:18:14 +01:00
* with a single space or supplied replacement string.
* Example: {$var|strip} {$var|strip:"&nbsp;"}
2013-11-09 21:02:56 +01:00
* Date: September 25th, 2002
*
2018-11-07 08:18:14 +01:00
* @link http://www.smarty.net/manual/en/language.modifier.strip.php strip (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_strip($params)
2013-11-09 21:02:56 +01:00
{
2018-11-07 08:18:14 +01:00
if (!isset($params[ 1 ])) {
$params[ 1 ] = "' '";
2013-11-09 21:02:56 +01:00
}
return "preg_replace('!\s+!" . Smarty::$_UTF8_MODIFIER . "', {$params[1]},{$params[0]})";
}