git-svn-id: https://192.168.0.254/svn/Proyectos.MatritumCantat_Web/trunk@2 8e3496fd-7892-4c45-be36-0ff06e9dacc6
62 lines
2.4 KiB
PHP
62 lines
2.4 KiB
PHP
<?php
|
|
//zOOm Gallery//
|
|
/**
|
|
-----------------------------------------------------------------------
|
|
| zOOm Image Gallery! by Mike de Boer - a multi-gallery component |
|
|
-----------------------------------------------------------------------
|
|
|
|
-----------------------------------------------------------------------
|
|
| |
|
|
| Date: October, 2004 |
|
|
| Author: Mike de Boer, <http://www.mikedeboer.nl> |
|
|
| 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 ){ ?>
|
|
<form action="uninstall.zoom.php" method="post" name="form" id="form">
|
|
<table border="0" cellspacing="0" cellpadding="0" background="<?php $mosConfig_live_site; ?>'/components/com_zoom/images/zoom_logo_faded.gif" style="background-repeat:no-repeat; background-position:top right;" width="75%">
|
|
<p><input type="checkbox" name="zoom_agree" value="1" />Do you want to delete zOOm Media Gallery along with your uploaded media?</p>
|
|
<p><input type="submit" name="uninstall_zoom" value="Un-install zOOm" /></p>
|
|
</table>
|
|
</form>
|
|
<?php
|
|
}else{
|
|
delzoom( '../images/zoom' );
|
|
if( $del_zoom == 1 ) {
|
|
echo "zOOm Media Gallery un-installed succesfully.";
|
|
}else{
|
|
echo "zOOm Media Gallery could not be un-installed completely.<br />";
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
?>
|