Example #1
0
 /**
  * @see String::truncate()
  *
  * @param string $text String to truncate.
  * @param integer $length Length of returned string, including ellipsis.
  * @param array $options An array of html attributes and options.
  * @return string Trimmed string.
  * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/text.html#TextHelper::truncate
  */
 public function truncate($text, $length = 100, $options = array())
 {
     return $this->_engine->truncate($text, $length, $options);
 }