예제 #1
0
 /**
  *
  * get contents of the css table
  */
 public static function getCaptionsContentArray($handle = false)
 {
     $db = new RevSliderDB();
     $result = $db->fetch(RevSliderGlobals::$table_css);
     $contentCSS = RevSliderCssParser::parseDbArrayToArray($result, $handle);
     return $contentCSS;
 }
예제 #2
0
 /**
  *
  * get contents of the css table
  */
 public static function getCaptionsContentArray($handle = false)
 {
     if (empty(self::$css)) {
         self::fillCSS();
     }
     $result = self::$css;
     $contentCSS = RevSliderCssParser::parseDbArrayToArray($result, $handle);
     return $contentCSS;
 }