186 lines
7.0 KiB
PHP
186 lines
7.0 KiB
PHP
<?php
|
|
/*
|
|
+--------------------------------------------------------------------------
|
|
| CubeCart 4
|
|
| ========================================
|
|
| CubeCart is a registered trade mark of Devellion Limited
|
|
| Copyright Devellion Limited 2006. All rights reserved.
|
|
| Devellion Limited,
|
|
| 5 Bridge Street,
|
|
| Bishops Stortford,
|
|
| HERTFORDSHIRE.
|
|
| CM23 2JU
|
|
| UNITED KINGDOM
|
|
| http://www.devellion.com
|
|
| UK Private Limited Company No. 5323904
|
|
| ========================================
|
|
| Web: http://www.cubecart.com
|
|
| Email: info (at) cubecart (dot) com
|
|
| License Type: CubeCart is NOT Open Source Software and Limitations Apply
|
|
| Licence Info: http://www.cubecart.com/site/faq/license.php
|
|
+--------------------------------------------------------------------------
|
|
| thumbnails.inc.php
|
|
| ========================================
|
|
| Manage Thumbnails
|
|
+--------------------------------------------------------------------------
|
|
*/
|
|
|
|
if(!defined('CC_INI_SET')){ die("Access Denied"); }
|
|
|
|
permission("maintenance","read", true);
|
|
$lang = getLang("admin".CC_DS."admin_filemanager.inc.php");
|
|
|
|
if (isset($_POST['rebuild'])) {
|
|
|
|
if (is_array($_POST['thumbName'])) {
|
|
|
|
$newThumb = array();
|
|
require("classes".CC_DS."gd".CC_DS."gd.inc.php");
|
|
|
|
// recalculate upload folder size
|
|
$newConfig['uploadSize'] = $config['uploadSize'];
|
|
|
|
foreach ($_POST['thumbName'] as $thumbName){
|
|
|
|
// unlink original ready for rebuild
|
|
$thumbPath = imgPath($thumbName, true, "root");
|
|
$masterPath = imgPath($thumbName, false, "root");
|
|
|
|
if (file_exists($thumbPath)) {
|
|
$newConfig['uploadSize'] -= @filesize($thumbPath);
|
|
@unlink($thumbPath);
|
|
$newThumb[$thumbName] = false;
|
|
}
|
|
|
|
if ($_POST['action'] == 'rebuild') {
|
|
$img = new gd($masterPath);
|
|
$img->size_auto($config['gdthumbSize']);
|
|
$img->save($thumbPath);
|
|
$newConfig['uploadSize'] += @filesize($thumbPath);
|
|
$newThumb[$thumbName] = true;
|
|
}
|
|
|
|
## Save uploadSize in DB
|
|
writeDbConf($newConfig, 'config', $config, false);
|
|
$msg = "<p class='infoText'>".$lang['admin']['filemanager_thumbs_rebuilt']."</p>";
|
|
}
|
|
} else {
|
|
$msg = "<p class='warnText'>".$lang['admin']['filemanager_thumbs_none_selected']."</p>";
|
|
}
|
|
|
|
}
|
|
|
|
require($glob['adminFolder'].CC_DS."includes".CC_DS."header.inc.php");
|
|
|
|
?>
|
|
<p class="pageTitle"><?php echo $lang['admin']['filemanager_thumbs_builder_title']; ?></p>
|
|
<?php
|
|
|
|
if (isset($msg)) {
|
|
echo msg($msg);
|
|
}
|
|
if (!$config['gdversion']) {
|
|
## error message - please set GD Version
|
|
echo '<p class="warnText">Please set your <a href="?_g=settings/index#gd_settings">GD version</a> before using this function</p>';
|
|
} else {
|
|
$page = (isset($_GET['page']) && $_GET['page']>0) ? $_GET['page'] : null;
|
|
$thumbsPerPage = 100;
|
|
|
|
$dirArray = walkDir(CC_ROOT_DIR.CC_DS.'images'.CC_DS.'uploads', true, $thumbsPerPage, $page, false, $int = 0);
|
|
$pagination = paginate($dirArray['max'], $thumbsPerPage, $page, 'page', 'txtLink', 10);
|
|
|
|
?>
|
|
<p class="copyText"><?php echo $pagination; ?></p>
|
|
|
|
<form method="post" action="<?php echo $glob['adminFile']; ?>?_g=maintenance/thumbnails&page=<?php echo $_GET['page']; ?>" enctype="multipart/form-data" name="thumbs">
|
|
<table width="100%" border="0" cellspacing="1" cellpadding="3" class="mainTable">
|
|
<tr>
|
|
<td width="10" class="tdTitle"> </td>
|
|
<td class="tdTitle"><?php echo $lang['admin']['filemanager_thumbs_mast_img'];?> <?php echo $lang['admin']['filemanager_img_click_prev']; ?></td>
|
|
<td align="center" class="tdTitle"><?php echo $lang['admin']['filemanager_thumbs_thumb'];?></td>
|
|
<td align="center" class="tdTitle"><?php echo $lang['admin']['filemanager_size']; ?></td>
|
|
</tr>
|
|
|
|
<?php
|
|
$i = 0;
|
|
if (is_array($dirArray)) {
|
|
foreach($dirArray as $file) {
|
|
|
|
$masterfile_rootPath = imgPath($file, false, 'root');
|
|
$masterfile_rootRel = imgPath($file, false, 'rel');
|
|
$thumb_rootPath = imgPath($file, true, 'root');
|
|
$thumb_rootRel = imgPath($file, true, 'rel');
|
|
|
|
if (file_exists($masterfile_rootPath)){
|
|
$size = @getimagesize($masterfile_rootPath);
|
|
}
|
|
|
|
if (checkImgExt(strtolower($file)) && !eregi("thumb_",$file)){
|
|
$i++;
|
|
$cellColor = "";
|
|
$cellColor = cellColor($i);
|
|
$thumbName = "thumb_".$file;
|
|
?>
|
|
<tr>
|
|
<td width="10" align="center" class="<?php echo $cellColor; ?>"><input type="checkbox" id="thumbName" value="<?php echo $masterfile_rootRel; ?>" name="thumbName[]" /></td>
|
|
<td class="<?php echo $cellColor; ?>">
|
|
<?php
|
|
if(isset($newThumb[$masterfile_rootRel]) && $newThumb[$masterfile_rootRel]==1){
|
|
|
|
echo "<span class=\"txtGreen\" style=\"float: right;\">".$lang['admin']['filemanager_thumbs_created']." ></span>";
|
|
|
|
} elseif(isset($newThumb[$masterfile_rootRel]) && $newThumb[$masterfile_rootRel]==0) {
|
|
|
|
echo "<span class=\"txtRed\" style=\"float: right;\">".$lang['admin']['filemanager_thumbs_deleted']." ></span>";
|
|
|
|
}
|
|
?>
|
|
|
|
<a href="javascript:;" onclick="openPopUp('<?php echo $glob['adminFile'];?>?_g=filemanager/preview&file=<?php echo $masterfile_rootRel."&x=".$size[0]."&y=".$size[1]; ?>','filemanager',<?php echo $size[0]+12; ?>,<?php echo $size[1]+12; ?>)" class="txtDir"><?php echo $masterfile_rootRel; ?></a><br />
|
|
</td>
|
|
<td align="center" class="<?php echo $cellColor; ?>">
|
|
|
|
<?php
|
|
if(file_exists($thumb_rootPath)) { ?>
|
|
<a href="javascript:;" onclick="openPopUp('<?php echo $glob['adminFile'];?>?_g=filemanager/preview&file=<?php echo $masterfile_rootRel."&x=".$size[0]."&y=".$size[1]; ?>','filemanager',<?php echo $size[0]+12; ?>,<?php echo $size[1]+12; ?>)" class="txtDir"><img src="<?php echo $thumb_rootRel; ?>" border="0" /></a>
|
|
<?php
|
|
$size = format_size(@filesize($thumb_rootPath));
|
|
unset($thumb);
|
|
}
|
|
else
|
|
{
|
|
$size = "-";
|
|
?>
|
|
<span class="copyText"><?php echo $lang['admin']['filemanager_no_thumb']; ?></span>
|
|
<?php } ?>
|
|
</td>
|
|
<td align="center" class="<?php echo $cellColor; ?>">
|
|
<span class="copyText"><?php echo $size; ?></span></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
if($i==0){
|
|
?>
|
|
<tr>
|
|
<td colspan="3" class="tdText"><?php echo $lang['admin']['filemanager_no_images_added'];?></td>
|
|
</tr>
|
|
<?php } else { ?>
|
|
<tr>
|
|
<td colspan="4" class="tdText">
|
|
<img src="<?php echo $glob['adminFolder']; ?>/images/selectAll.gif" alt="" width="16" height="11" /> <a href="javascript:checkAll('thumbName','true');" class="txtLink"><?php echo $lang['admin']['filemanager_thumbs_check_all']; ?></a> / <a href="javascript:checkAll('thumbName','false');" class="txtLink"><?php echo $lang['admin']['filemanager_thumbs_uncheck']; ?></a>
|
|
<input name="rebuild" type="hidden" value="1" />
|
|
<select name="action" size="1" class="textbox" onchange="submitDoc('thumbs');">
|
|
<option value=""><?php echo $lang['admin']['filemanager_thumbs_with_sel'];?></option>
|
|
<option value="rebuild"><?php echo $lang['admin']['filemanager_thumbs_rebuild'];?></option>
|
|
<option value="delete"><?php echo $lang['admin']['filemanager_thumbs_delete'];?></option>
|
|
</select></td>
|
|
</tr>
|
|
<?php } ?>
|
|
</table>
|
|
<p class="copyText"><?php echo $pagination; ?></p>
|
|
</form>
|
|
<?php } ?>
|