Files
bobsleighphotos.com/production/modules/status.inc.php
2017-03-02 20:30:40 -06:00

58 lines
1.9 KiB
PHP

<?php
/*
+--------------------------------------------------------------------------
| CubeCart 4
| ========================================
| CubeCart is a 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
+--------------------------------------------------------------------------
| status.php
| ========================================
| Manage Module State
+--------------------------------------------------------------------------
*/
if(!defined('CC_INI_SET')){ die("Access Denied"); }
if (isset($_POST['module'])) {
$query = sprintf("SELECT * FROM ".$glob['dbprefix']."CubeCart_Modules WHERE module = %s AND folder = %s", $db->mySQLSafe($module), $db->mySQLSafe($moduleName));
$moduleState = $db->select($query);
$data['status'] = $db->mySQLSafe($_POST['module']['status']);
$data['default'] = $db->mySQLSafe($_POST['module']['default']);
if($moduleType['default']==1){
$resetData['default'] = 0;
$where = "module = ".$db->mySQLSafe($module);
$update = $db->update($glob['dbprefix']."CubeCart_Modules", $resetData, $where);
}
if($moduleState == true){
$where = "module = ".$db->mySQLSafe($module)." AND folder = ".$db->mySQLSafe($moduleName);
$update = $db->update($glob['dbprefix']."CubeCart_Modules", $data, $where);
} else {
$data['folder'] = $db->mySQLSafe($moduleName);
$data['module'] = $db->mySQLSafe($module);
$insert = $db->insert($glob['dbprefix']."CubeCart_Modules", $data);
}
}
?>