/**
  * Show ellipses after the text to indicate truncation.
  * @access private
  */
 protected function _truncate()
 {
     parent::_truncate();
     $this->_add_text_to_output('...');
 }
Пример #2
0
 /**
  * Show ellipses after the text to indicate truncation.
  * The ellipses are shown before the tag stack is dumped to ensure deep nesting.
  * @access private
  */
 protected function _truncate()
 {
     $this->_add_text_to_output('...' . $this->_link());
     parent::_truncate();
 }