Esempio n. 1
0
 protected function get_upload_name($key)
 {
     $id = substr($key, 32);
     if (!isset(self::$upload_cache[$id])) {
         self::$upload_cache[$id] = $this->db->get_full_row('art_upload', $id);
     }
     return isset(self::$upload_cache[$id]['name']) ? self::$upload_cache[$id]['name'] : '';
 }