fusionpbx/resources/templates/engine/smarty/plugins/modifiercompiler.count_sent...

27 lines
745 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 count_sentences modifier plugin
2018-11-07 08:18:14 +01:00
* Type: modifier
2013-11-09 21:02:56 +01:00
* Name: count_sentences
* Purpose: count the number of sentences in a text
*
2018-11-07 08:18:14 +01:00
* @link http://www.smarty.net/manual/en/language.modifier.count.paragraphs.php
2013-11-09 21:02:56 +01:00
* count_sentences (Smarty online manual)
* @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_count_sentences($params)
2013-11-09 21:02:56 +01:00
{
// find periods, question marks, exclamation marks with a word before but not after.
2018-11-07 08:18:14 +01:00
return 'preg_match_all("#\w[\.\?\!](\W|$)#S' . Smarty::$_UTF8_MODIFIER . '", ' . $params[ 0 ] . ', $tmp)';
2013-11-09 21:02:56 +01:00
}