Пример #1
0
 /**
  * Pass given text through the filter and return result.
  *
  * @see Filter::filter()
  * @param string $text
  * @return string $text
  */
 public function filter(Text $text)
 {
     $this->_mark = '!';
     $this->_format = '<img src="%s"%s alt="%s" />';
     return parent::filter($text);
 }