Пример #1
0
 /**
  * Return the Wrapper Attributes
  * @return array
  */
 public function wrapperAttributes()
 {
     $attr = parent::wrapperAttributes();
     $attr['class'][] = 'zbase-ui-' . $this->_type;
     $attr['id'] = 'zbase-ui-tabs-' . $this->getHtmlId();
     return $attr;
 }
Пример #2
0
 /**
  * Return the Wrapper Attributes
  * @return array
  */
 public function wrapperAttributes()
 {
     $attr = parent::wrapperAttributes();
     $attr['class'][] = 'zbase-ui-' . $this->_type;
     return $attr;
 }
Пример #3
0
 /**
  * Return the Wrapper Attributes
  * @return array
  */
 public function wrapperAttributes()
 {
     $attr = parent::wrapperAttributes();
     $attr['class'][] = 'zbase-ui-' . $this->_type;
     $attr['class'][] = 'tab-pane';
     $attr['class'][] = 'fade';
     if ($this->isActive()) {
         $attr['class'][] = 'active';
         $attr['class'][] = 'in';
     }
     $attr['id'] = $this->getHtmlId();
     return $attr;
 }