Exemplo n.º 1
0
 /**
  * @return string
  */
 public function getContainerClass()
 {
     $class = 'ccm-custom-style-';
     $txt = Core::make('helper/text');
     $class .= strtolower($txt->filterNonAlphaNum($this->arHandle));
     if (is_object($this->set)) {
         $return = $this->set->getClass($this->theme);
         if ($return) {
             $class .= ' ' . $return;
         }
     }
     return $class;
 }
 /**
  * {@inheritDoc}
  */
 public function getClass($theme = NULL)
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getClass', array($theme));
     return parent::getClass($theme);
 }