Beispiel #1
0
 /**
  * @return string
  */
 protected function _getLinkAttributes()
 {
     $attrs = array();
     if ($this->_getHelper()->canShowNewWindow()) {
         $attrs[] = 'target="_blank"';
     }
     if ($this->_banner->getTitle()) {
         $attrs[] = 'title="' . $this->htmlEscape($this->_banner->getTitle()) . '"';
     }
     return implode(' ', $attrs);
 }