server/onyx/modules/templates/smarty/plugins/modifiercompiler.count_paragraphs.php

28 lines
668 B
PHP
Raw Normal View History

2013-10-09 13:40:23 +00:00
<?php
/**
* Smarty plugin
*
2015-01-14 10:28:47 +00:00
* @package Smarty
2013-10-09 13:40:23 +00:00
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty count_paragraphs modifier plugin
* Type: modifier<br>
* Name: count_paragraphs<br>
* Purpose: count the number of paragraphs in a text
*
2015-01-14 10:28:47 +00:00
* @link http://www.smarty.net/manual/en/language.modifier.count.paragraphs.php
2013-10-09 13:40:23 +00:00
* count_paragraphs (Smarty online manual)
2015-01-14 10:28:47 +00:00
* @author Uwe Tews
*
2013-10-09 13:40:23 +00:00
* @param array $params parameters
2015-01-14 10:28:47 +00:00
*
2013-10-09 13:40:23 +00:00
* @return string with compiled code
*/
2015-01-14 10:28:47 +00:00
function smarty_modifiercompiler_count_paragraphs($params)
2013-10-09 13:40:23 +00:00
{
// count \r or \n characters
return '(preg_match_all(\'#[\r\n]+#\', ' . $params[0] . ', $tmp)+1)';
}