| | Copyright: copyright (C) 2004 by Mike de Boer | | Description: zOOm Image Gallery, a multi-gallery component for | | Mambo based on RSGallery by Ronald Smit. It's the most | | feature-rich gallery component for Mambo! | | Filename: uninstall.zoom.php | | Version: 2.1.4 | | | ----------------------------------------------------------------------- **/ function com_uninstall(){ if( $zoom_agree != 1 ){ ?>

Do you want to delete zOOm Media Gallery along with your uploaded media?

"; echo "The directory \"images/zoom\" has to be deleted manually!"; } } function delzoom( $dir ) { $dh=opendir( $dir ); while ( $file=readdir( $dh ) ) { if( $file != '.' && $file != '..' ) { $fullpath = $dir . '/' . $file; if( !is_dir( $fullpath ) ) { unlink( $fullpath ); } else { deldir( $fullpath ); } } } closedir($dh); if(rmdir($dir)) { return $del_zoom = 1; } else { return $del_zoom = 0; } } } ?>