<?php 
/** 
 * gTemplate Plugins 
 * 
 * @package    gTemplate 
 * @subpackage Plugins 
 */ 
 
/** 
 * gTemplate count_sentences modifier plugin 
 * 
 * Type:     modifier<br> 
 * Name:     count_sentences 
 * Purpose:  count the number of sentences in a text 
 *  
 * @version 1.0 
 * @author Tamas David (G-Lex) <glex at mittudomain.info> 
 * @link https://github.com/glex86/g-template-php G-Template Engine on Github 
 * 
 * @internal Some source codes are taken from Smarty 
 * @internal author Monte Ohrt <monte at ohrt dot com> 
 * @internal link http://smarty.net Smarty 
 */ 
function tpl_modifier_count_sentences($string) 
{ 
    // find periods with a word before but not after. 
    return preg_match_all('/[^\s]\.(?!\w)/', $string, $match); 
} 
 
 
 |