Exemplo n.º 1
0
 function getMedium($mid, $ret_type = 'object')
 {
     $mid = intval($mid);
     $medium = new zmgMedium(zmgDatabase::getDBO());
     $medium->load($mid);
     if ($ret_type == "json") {
         return $medium->toJSON();
     } else {
         if ($ret_type == "xml") {
             return $medium->toXML();
         }
     }
     return $medium;
 }