Example #1
0
 public static function getAdCategory()
 {
     $options = '';
     if (!Cache::has('ad_category')) {
         $options = AdCategory::get(array('id', 'name', 'slug'));
         Cache::put('ad_category', $options, CLF_CACHE);
     } else {
         $options = Cache::get('ad_category');
     }
     return $options;
 }