Example #1
0
 function unsetImg($img)
 {
     $path = IMG_LOCAL_PATH . "eventos/" . $this->_event_id . "/" . $img;
     if (!unlink($path)) {
         $msg = "Error al borrar el archivo. Contacte al administrador";
     } else {
         $msg = "Borrado exitoso!";
     }
     Creatur::cosRedirect('index2.php?com=eventos&do=view&eid=' . $this->_event_id, $msg);
 }
Example #2
0
 function unsetImg($img)
 {
     $path = IMG_LOCAL_PATH . $img;
     if (!unlink($path)) {
         $msg = "Error al borrar el archivo. Contacte al administrador";
     } else {
         $msg = "Borrado exitoso!";
     }
     Creatur::cosRedirect('filebrowser.php', $msg);
 }