Example #1
0
 private static function LoadCarouselData()
 {
     self::$carousel_data = DB::WoW()->select("SELECT `id`, `slide_position`, `image`, `title_%s` AS `title`, `desc_%s` AS `desc`, `url` FROM `DBPREFIX_carousel` WHERE `active` = 1 ORDER BY `id` DESC LIMIT 6", WoW_Locale::GetLocale(), WoW_Locale::GetLocale());
     $count = count(self::$carousel_data);
     for ($i = 0; $i < $count; $i++) {
         self::$carousel_data[$i] = (object) self::$carousel_data[$i];
     }
 }