* Name: count_words
* Purpose: count the number of words in a text * @link http://smarty.php.net/manual/en/language.modifier.count.words.php * count_words (Smarty online manual) * @author Monte Ohrt * @param string * @return integer */ function smarty_modifier_count_words($string) { return str_word_count($string); } ?>