2013-07-14 22:15:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Smarty plugin
|
|
|
|
*
|
2014-06-06 02:40:04 +00:00
|
|
|
* @package Smarty
|
2013-07-14 22:15:45 +00:00
|
|
|
* @subpackage PluginsModifierCompiler
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Smarty count_sentences modifier plugin
|
2017-11-11 07:11:33 +01:00
|
|
|
* Type: modifier
|
2013-07-14 22:15:45 +00:00
|
|
|
* Name: count_sentences
|
|
|
|
* Purpose: count the number of sentences in a text
|
|
|
|
*
|
2014-06-06 02:40:04 +00:00
|
|
|
* @link http://www.smarty.net/manual/en/language.modifier.count.paragraphs.php
|
2013-07-14 22:15:45 +00:00
|
|
|
* count_sentences (Smarty online manual)
|
2014-06-06 02:40:04 +00:00
|
|
|
* @author Uwe Tews
|
|
|
|
*
|
2013-07-14 22:15:45 +00:00
|
|
|
* @param array $params parameters
|
2014-06-06 02:40:04 +00:00
|
|
|
*
|
2013-07-14 22:15:45 +00:00
|
|
|
* @return string with compiled code
|
|
|
|
*/
|
2014-06-06 02:40:04 +00:00
|
|
|
function smarty_modifiercompiler_count_sentences($params)
|
2013-07-14 22:15:45 +00:00
|
|
|
{
|
|
|
|
// find periods, question marks, exclamation marks with a word before but not after.
|
2016-02-09 01:27:15 +01:00
|
|
|
return 'preg_match_all("#\w[\.\?\!](\W|$)#S' . Smarty::$_UTF8_MODIFIER . '", ' . $params[ 0 ] . ', $tmp)';
|
2013-07-14 22:15:45 +00:00
|
|
|
}
|