예제 #1
0
 public function getFileName()
 {
     if (isset(self::$tta_base_shortcode) && 'vc_tta_pageable' === self::$tta_base_shortcode->getShortcode()) {
         return 'vc_tta_pageable_section';
     } else {
         return 'vc_tta_section';
     }
 }
예제 #2
0
파일: vc-tta-tabs.php 프로젝트: hikaram/wee
 public function getTtaGeneralClasses()
 {
     $classes = parent::getTtaGeneralClasses();
     if (!empty($this->atts['no_fill_content_area'])) {
         $classes .= ' vc_tta-o-no-fill';
     }
     if (isset($this->atts['tab_position'])) {
         $classes .= ' ' . $this->getTemplateVariable('tab_position');
     }
     $classes .= ' ' . $this->getParamAlignment($this->atts, $this->content);
     return $classes;
 }