Пример #1
0
 public static function garbage_colector()
 {
     if ($cache_list = admin_session_state::getFilteredList()) {
         foreach ($cache_list as $cache) {
             if (trim($cache->get('url')) == "") {
                 $cache->delete();
             }
         }
     }
     return true;
 }