示例#1
0
 /**
  * 
  * output the slider by slider id
  */
 public static function outputSlider($sliderID, $isJSInBody = false)
 {
     $output = new UniteHCarOutput();
     if ($isJSInBody == true) {
         $output->setJsInBody();
     }
     $output->outputSlider($sliderID);
 }
示例#2
0
 /**
  * 
  * get css of some slider
  */
 public function getcss()
 {
     $output = new UniteHCarOutput();
     $output->outputCss();
     exit;
 }