63 lines
2.4 KiB
PHP
63 lines
2.4 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
|
|
+--------------------------------------------------------------------------
|
|
| randomProduct.inc.php
|
|
| ========================================
|
|
| Random Product Box
|
|
+--------------------------------------------------------------------------
|
|
*/
|
|
|
|
if (!defined('CC_INI_SET')) die("Access Denied");
|
|
|
|
$lang = getLang("includes".CC_DS."boxes".CC_DS."randomProd.inc.php");
|
|
$seed = mt_rand(1, 10000);
|
|
|
|
$whereClause = (isset($_GET['catId'])) ? "AND I.cat_id=".$db->mySQLSafe($_GET['catId'])." AND I.cat_id > 0 AND C.hide != '1'" : "AND I.cat_id > 0";
|
|
$sql = sprintf("SELECT I.name, I.image, I.productId FROM %1\$sCubeCart_inventory AS I LEFT JOIN %1\$sCubeCart_category AS C ON I.cat_id = C.cat_id WHERE I.disabled != '1' AND C.hide != '1' %2\$s ORDER BY RAND(%3\$d) LIMIT 1", $glob['dbprefix'], $whereClause, $seed);
|
|
$randProd = $db->select($sql);
|
|
|
|
if ($randProd) {
|
|
if (($val = prodAltLang($randProd[0]['productId'])) == true) {
|
|
$randProd[0]['name'] = $val['name'];
|
|
}
|
|
|
|
$box_content = new XTemplate ("boxes".CC_DS."randomProd.tpl");
|
|
|
|
$box_content->assign("LANG_RANDOM_PRODUCT",$lang['randomProd']['featured_prod']);
|
|
$box_content->assign("PRODUCT_ID",$randProd[0]['productId']);
|
|
$box_content->assign("PRODUCT_NAME",validHTML($randProd[0]['name']));
|
|
|
|
$thumbRootPath = imgPath($randProd[0]['image'],$thumb=1,$path="root");
|
|
$thumbRelPath = imgPath($randProd[0]['image'],$thumb=1,$path="rel");
|
|
|
|
if (file_exists($thumbRootPath) && !empty($randProd[0]['image'])) {
|
|
$box_content->assign("IMG_SRC", $thumbRelPath);
|
|
} else {
|
|
$box_content->assign("IMG_SRC", "skins/". SKIN_FOLDER . "/styleImages/thumb_nophoto.gif");
|
|
}
|
|
|
|
$box_content->parse("random_prod");
|
|
$box_content = $box_content->text("random_prod");
|
|
|
|
} else {
|
|
$box_content = '';
|
|
}
|
|
?>
|