Example #1
0
 /**
  * @return HtmlTag
  */
 protected function _produceHtml()
 {
     $icon = parent::_produceHtml();
     $icon->addClass('fa', 'fa-fw', 'f-icon', $this->_icon);
     return $icon;
 }
Example #2
0
 /**
  * @return HtmlTag
  */
 protected function _produceHtml()
 {
     $icon = parent::_produceHtml();
     $icon->addClass('flag', 'flag-' . $this->_country)->setAttribute('title', static::$countries[$this->_country]);
     return $icon;
 }
Example #3
0
 /**
  * @return HtmlTag
  */
 protected function _produceHtml()
 {
     $icon = parent::_produceHtml();
     $icon->addClass('lineIcon', 'lineIcon-' . $this->_icon);
     return $icon;
 }
Example #4
0
 /**
  * @return HtmlTag
  */
 protected function _produceHtml()
 {
     $icon = parent::_produceHtml();
     $icon->addClass('f-browser-' . $this->_size . '-' . $this->_browser);
     return $icon;
 }