354 lines
17 KiB
PHP
Executable File
354 lines
17 KiB
PHP
Executable File
<?php
|
|
//
|
|
// +----------------------------------------------------------------------+
|
|
// |zen-cart Open Source E-commerce |
|
|
// +----------------------------------------------------------------------+
|
|
// | Copyright (c) 2003 The zen-cart developers |
|
|
// | |
|
|
// | http://www.zen-cart.com/index.php |
|
|
// | |
|
|
// | Portions Copyright (c) 2003 osCommerce |
|
|
// +----------------------------------------------------------------------+
|
|
// | This source file is subject to version 2.0 of the GPL license, |
|
|
// | that is bundled with this package in the file LICENSE, and is |
|
|
// | available through the world-wide-web at the following url: |
|
|
// | http://www.zen-cart.com/license/2_0.txt. |
|
|
// | If you did not receive a copy of the zen-cart license and are unable |
|
|
// | to obtain it through the world-wide-web, please send a note to |
|
|
// | license@zen-cart.com so we can mail you a copy immediately. |
|
|
// +----------------------------------------------------------------------+
|
|
// $Id: modules.php 2710 2005-12-27 18:19:58Z ajeh $
|
|
//
|
|
require('includes/application_top.php');
|
|
|
|
$set = (isset($_GET['set']) ? $_GET['set'] : '');
|
|
|
|
if (zen_not_null($set)) {
|
|
switch ($set) {
|
|
case 'shipping':
|
|
$module_type = 'shipping';
|
|
$module_directory = DIR_FS_CATALOG_MODULES . 'shipping/';
|
|
$module_key = 'MODULE_SHIPPING_INSTALLED';
|
|
define('HEADING_TITLE', HEADING_TITLE_MODULES_SHIPPING);
|
|
$shipping_errors = '';
|
|
if (zen_get_configuration_key_value('SHIPPING_ORIGIN_ZIP') == 'NONE' or zen_get_configuration_key_value('SHIPPING_ORIGIN_ZIP') == '') {
|
|
$shipping_errors .= '<br />' . ERROR_SHIPPING_ORIGIN_ZIP;
|
|
}
|
|
if (zen_get_configuration_key_value('ORDER_WEIGHT_ZERO_STATUS') == '1' and !defined('MODULE_SHIPPING_FREESHIPPER_STATUS')) {
|
|
$shipping_errors .= '<br />' . ERROR_ORDER_WEIGHT_ZERO_STATUS;
|
|
}
|
|
if (defined('MODULE_SHIPPING_USPS_STATUS') and (MODULE_SHIPPING_USPS_USERID=='NONE' or MODULE_SHIPPING_USPS_PASSWORD == 'NONE' or MODULE_SHIPPING_USPS_SERVER == 'test')) {
|
|
$shipping_errors .= '<br />' . ERROR_USPS_STATUS;
|
|
}
|
|
if ($shipping_errors != '') {
|
|
$messageStack->add(ERROR_SHIPPING_CONFIGURATION . $shipping_errors, 'caution');
|
|
}
|
|
break;
|
|
case 'ordertotal':
|
|
$module_type = 'order_total';
|
|
$module_directory = DIR_FS_CATALOG_MODULES . 'order_total/';
|
|
$module_key = 'MODULE_ORDER_TOTAL_INSTALLED';
|
|
define('HEADING_TITLE', HEADING_TITLE_MODULES_ORDER_TOTAL);
|
|
break;
|
|
case 'payment':
|
|
default:
|
|
$module_type = 'payment';
|
|
$module_directory = DIR_FS_CATALOG_MODULES . 'payment/';
|
|
$module_key = 'MODULE_PAYMENT_INSTALLED';
|
|
define('HEADING_TITLE', HEADING_TITLE_MODULES_PAYMENT);
|
|
break;
|
|
}
|
|
}
|
|
|
|
$action = (isset($_GET['action']) ? $_GET['action'] : '');
|
|
|
|
if (zen_not_null($action)) {
|
|
switch ($action) {
|
|
case 'save':
|
|
while (list($key, $value) = each($_POST['configuration'])) {
|
|
// BOF: UPS USPS
|
|
if( is_array( $value ) ){
|
|
$value = implode( ", ", $value);
|
|
$value = ereg_replace (", --none--", "", $value);
|
|
}
|
|
// EOF: UPS USPS
|
|
$db->Execute("update " . TABLE_CONFIGURATION . "
|
|
set configuration_value = '" . $value . "'
|
|
where configuration_key = '" . $key . "'");
|
|
}
|
|
$configuration_query = 'select configuration_key as cfgkey, configuration_value as cfgvalue
|
|
from ' . TABLE_CONFIGURATION;
|
|
|
|
$configuration = $db->Execute($configuration_query);
|
|
|
|
zen_redirect(zen_href_link(FILENAME_MODULES, 'set=' . $set . ($_GET['module'] != '' ? '&module=' . $_GET['module'] : ''), 'NONSSL'));
|
|
break;
|
|
case 'install':
|
|
case 'remove':
|
|
$file_extension = substr($PHP_SELF, strrpos($PHP_SELF, '.'));
|
|
$class = basename($_GET['module']);
|
|
if (file_exists($module_directory . $class . $file_extension)) {
|
|
$configuration_query = 'select configuration_key as cfgkey, configuration_value as cfgvalue
|
|
from ' . TABLE_CONFIGURATION;
|
|
|
|
$configuration = $db->Execute($configuration_query);
|
|
include($module_directory . $class . $file_extension);
|
|
$module = new $class;
|
|
if ($action == 'install') {
|
|
$module->install();
|
|
} elseif ($action == 'remove') {
|
|
$module->remove();
|
|
}
|
|
}
|
|
|
|
if ($action == 'install') {
|
|
// zen_href_link(FILENAME_MODULES, 'set=' . $set . (isset($_GET['module']) ? '&module=' . $_GET['module'] : '') . '&action=edit');
|
|
zen_redirect(zen_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $class . '&action=edit', 'NONSSL'));
|
|
} else {
|
|
zen_redirect(zen_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $class, 'NONSSL'));
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
?>
|
|
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html <?php echo HTML_PARAMS; ?>>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
|
|
<title><?php echo TITLE; ?></title>
|
|
<link rel="stylesheet" type="text/css" href="includes/stylesheet.css">
|
|
<link rel="stylesheet" type="text/css" href="includes/cssjsmenuhover.css" media="all" id="hoverJS">
|
|
<script language="javascript" src="includes/menu.js"></script>
|
|
<script language="javascript" src="includes/general.js"></script>
|
|
<script type="text/javascript">
|
|
<!--
|
|
function init()
|
|
{
|
|
cssjsmenu('navbar');
|
|
if (document.getElementById)
|
|
{
|
|
var kill = document.getElementById('hoverJS');
|
|
kill.disabled = true;
|
|
}
|
|
}
|
|
// -->
|
|
</script>
|
|
</head>
|
|
<body onload="init()">
|
|
<!-- header //-->
|
|
<?php require(DIR_WS_INCLUDES . 'header.php'); ?>
|
|
<!-- header_eof //-->
|
|
|
|
<!-- body //-->
|
|
<table border="0" width="100%" cellspacing="2" cellpadding="2">
|
|
<tr>
|
|
<!-- body_text //-->
|
|
<td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2">
|
|
<tr>
|
|
<td width="100%"><table border="0" width="100%" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>
|
|
<td class="pageHeading" align="right"><?php echo zen_draw_separator('pixel_trans.gif', HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>
|
|
</tr>
|
|
</table></td>
|
|
</tr>
|
|
<tr>
|
|
<td><table border="0" width="100%" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2">
|
|
<tr class="dataTableHeadingRow">
|
|
<td class="dataTableHeadingContent"><?php echo TABLE_HEADING_MODULES; ?></td>
|
|
<td class="dataTableHeadingContent"> </td>
|
|
<td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_SORT_ORDER; ?></td>
|
|
<?php
|
|
if ($set == 'payment') {
|
|
?>
|
|
<td class="dataTableHeadingContent" align="center" width="100"><?php echo TABLE_HEADING_ORDERS_STATUS; ?></td>
|
|
<?php } ?>
|
|
<td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_ACTION; ?> </td>
|
|
</tr>
|
|
<?php
|
|
$file_extension = substr($PHP_SELF, strrpos($PHP_SELF, '.'));
|
|
$directory_array = array();
|
|
if ($dir = @dir($module_directory)) {
|
|
while ($file = $dir->read()) {
|
|
if (!is_dir($module_directory . $file)) {
|
|
if (substr($file, strrpos($file, '.')) == $file_extension) {
|
|
$directory_array[] = $file;
|
|
}
|
|
}
|
|
}
|
|
sort($directory_array);
|
|
$dir->close();
|
|
}
|
|
|
|
$installed_modules = array();
|
|
for ($i=0, $n=sizeof($directory_array); $i<$n; $i++) {
|
|
$file = $directory_array[$i];
|
|
include(DIR_FS_CATALOG_LANGUAGES . $_SESSION['language'] . '/modules/' . $module_type . '/' . $file);
|
|
include($module_directory . $file);
|
|
$class = substr($file, 0, strrpos($file, '.'));
|
|
if (zen_class_exists($class)) {
|
|
$module = new $class;
|
|
if ($module->check() > 0) {
|
|
if ($module->sort_order > 0) {
|
|
$installed_modules[$module->sort_order] = $file;
|
|
} else {
|
|
$installed_modules[] = $file;
|
|
}
|
|
}
|
|
if ((!isset($_GET['module']) || (isset($_GET['module']) && ($_GET['module'] == $class))) && !isset($mInfo)) {
|
|
$module_info = array('code' => $module->code,
|
|
'title' => $module->title,
|
|
'description' => $module->description,
|
|
'status' => $module->check());
|
|
$module_keys = $module->keys();
|
|
$keys_extra = array();
|
|
for ($j=0, $k=sizeof($module_keys); $j<$k; $j++) {
|
|
$key_value = $db->Execute("select configuration_title, configuration_value, configuration_key,
|
|
configuration_description, use_function, set_function
|
|
from " . TABLE_CONFIGURATION . "
|
|
where configuration_key = '" . $module_keys[$j] . "'");
|
|
|
|
$keys_extra[$module_keys[$j]]['title'] = $key_value->fields['configuration_title'];
|
|
$keys_extra[$module_keys[$j]]['value'] = $key_value->fields['configuration_value'];
|
|
$keys_extra[$module_keys[$j]]['description'] = $key_value->fields['configuration_description'];
|
|
$keys_extra[$module_keys[$j]]['use_function'] = $key_value->fields['use_function'];
|
|
$keys_extra[$module_keys[$j]]['set_function'] = $key_value->fields['set_function'];
|
|
}
|
|
$module_info['keys'] = $keys_extra;
|
|
$mInfo = new objectInfo($module_info);
|
|
}
|
|
if (isset($mInfo) && is_object($mInfo) && ($class == $mInfo->code) ) {
|
|
if ($module->check() > 0) {
|
|
echo ' <tr id="defaultSelected" class="dataTableRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . zen_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $class . '&action=edit', 'NONSSL') . '\'">' . "\n";
|
|
} else {
|
|
echo ' <tr id="defaultSelected" class="dataTableRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)">' . "\n";
|
|
}
|
|
} else {
|
|
echo ' <tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . zen_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $class, 'NONSSL') . '\'">' . "\n";
|
|
}
|
|
?>
|
|
<td class="dataTableContent"><?php echo $module->title; ?></td>
|
|
<td class="dataTableContent"><?php echo $module->code; ?></td>
|
|
<td class="dataTableContent" align="right"><?php if (is_numeric($module->sort_order)) echo $module->sort_order; ?></td>
|
|
<?php
|
|
if ($set == 'payment') {
|
|
$orders_status_name = $db->Execute("select orders_status_id, orders_status_name from " . TABLE_ORDERS_STATUS . " where orders_status_id='" . $module->order_status . "' and language_id='" . $_SESSION['languages_id'] . "'");
|
|
?>
|
|
<td class="dataTableContent" align="left"> <?php echo (is_numeric($module->sort_order) ? (($orders_status_name->fields['orders_status_id'] < 1) ? TEXT_DEFAULT : $orders_status_name->fields['orders_status_name']) : ''); ?> </td>
|
|
<?php } ?>
|
|
<td class="dataTableContent" align="right"><?php if (isset($mInfo) && is_object($mInfo) && ($class == $mInfo->code) ) { echo zen_image(DIR_WS_IMAGES . 'icon_arrow_right.gif'); } else { echo '<a href="' . zen_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $class, 'NONSSL') . '">' . zen_image(DIR_WS_IMAGES . 'icon_info.gif', IMAGE_ICON_INFO) . '</a>'; } ?> </td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
}
|
|
ksort($installed_modules);
|
|
$check = $db->Execute("select configuration_value
|
|
from " . TABLE_CONFIGURATION . "
|
|
where configuration_key = '" . $module_key . "'");
|
|
|
|
if ($check->RecordCount() > 0) {
|
|
if ($check->fields['configuration_value'] != implode(';', $installed_modules)) {
|
|
$db->Execute("update " . TABLE_CONFIGURATION . "
|
|
set configuration_value = '" . implode(';', $installed_modules) . "', last_modified = now()
|
|
where configuration_key = '" . $module_key . "'");
|
|
}
|
|
} else {
|
|
$db->Execute("insert into " . TABLE_CONFIGURATION . "
|
|
(configuration_title, configuration_key, configuration_value,
|
|
configuration_description, configuration_group_id, sort_order, date_added)
|
|
values ('Installed Modules', '" . $module_key . "', '" . implode(';', $installed_modules) . "',
|
|
'This is automatically updated. No need to edit.', '6', '0', now())");
|
|
}
|
|
?>
|
|
<tr>
|
|
<td colspan="3" class="smallText"><?php echo TEXT_MODULE_DIRECTORY . ' ' . $module_directory; ?></td>
|
|
</tr>
|
|
</table></td>
|
|
<?php
|
|
$heading = array();
|
|
$contents = array();
|
|
switch ($action) {
|
|
case 'edit':
|
|
$keys = '';
|
|
reset($mInfo->keys);
|
|
while (list($key, $value) = each($mInfo->keys)) {
|
|
$keys .= '<b>' . $value['title'] . '</b><br>' . $value['description'] . '<br>';
|
|
if ($value['set_function']) {
|
|
eval('$keys .= ' . $value['set_function'] . "'" . $value['value'] . "', '" . $key . "');");
|
|
} else {
|
|
$keys .= zen_draw_input_field('configuration[' . $key . ']', $value['value']);
|
|
}
|
|
$keys .= '<br><br>';
|
|
}
|
|
$keys = substr($keys, 0, strrpos($keys, '<br><br>'));
|
|
$heading[] = array('text' => '<b>' . $mInfo->title . '</b>');
|
|
$contents = array('form' => zen_draw_form('modules', FILENAME_MODULES, 'set=' . $set . ($_GET['module'] != '' ? '&module=' . $_GET['module'] : '') . '&action=save', 'post', '', true));
|
|
if (ADMIN_CONFIGURATION_KEY_ON == 1) {
|
|
$contents[] = array('text' => '<strong>Key: ' . $mInfo->code . '</strong><br />');
|
|
}
|
|
$contents[] = array('text' => $keys);
|
|
$contents[] = array('align' => 'center', 'text' => '<br>' . zen_image_submit('button_update.gif', IMAGE_UPDATE) . ' <a href="' . zen_href_link(FILENAME_MODULES, 'set=' . $set . ($_GET['module'] != '' ? '&module=' . $_GET['module'] : ''), 'NONSSL') . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
|
|
break;
|
|
default:
|
|
$heading[] = array('text' => '<b>' . $mInfo->title . '</b>');
|
|
|
|
if ($mInfo->status == '1') {
|
|
$keys = '';
|
|
reset($mInfo->keys);
|
|
while (list(, $value) = each($mInfo->keys)) {
|
|
$keys .= '<b>' . $value['title'] . '</b><br>';
|
|
if ($value['use_function']) {
|
|
$use_function = $value['use_function'];
|
|
if (ereg('->', $use_function)) {
|
|
$class_method = explode('->', $use_function);
|
|
if (!is_object(${$class_method[0]})) {
|
|
include(DIR_WS_CLASSES . $class_method[0] . '.php');
|
|
${$class_method[0]} = new $class_method[0]();
|
|
}
|
|
$keys .= zen_call_function($class_method[1], $value['value'], ${$class_method[0]});
|
|
} else {
|
|
$keys .= zen_call_function($use_function, $value['value']);
|
|
}
|
|
} else {
|
|
$keys .= $value['value'];
|
|
}
|
|
$keys .= '<br><br>';
|
|
}
|
|
|
|
if (ADMIN_CONFIGURATION_KEY_ON == 1) {
|
|
$contents[] = array('text' => '<strong>Key: ' . $mInfo->code . '</strong><br />');
|
|
}
|
|
$keys = substr($keys, 0, strrpos($keys, '<br><br>'));
|
|
$contents[] = array('align' => 'center', 'text' => '<a href="' . zen_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $mInfo->code . '&action=remove', 'NONSSL') . '">' . zen_image_button('button_module_remove.gif', IMAGE_MODULE_REMOVE) . '</a> <a href="' . zen_href_link(FILENAME_MODULES, 'set=' . $set . (isset($_GET['module']) ? '&module=' . $_GET['module'] : '') . '&action=edit', 'NONSSL') . '">' . zen_image_button('button_edit.gif', IMAGE_EDIT) . '</a>');
|
|
$contents[] = array('text' => '<br>' . $mInfo->description);
|
|
$contents[] = array('text' => '<br>' . $keys);
|
|
} else {
|
|
$contents[] = array('align' => 'center', 'text' => '<a href="' . zen_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $mInfo->code . '&action=install', 'NONSSL') . '">' . zen_image_button('button_module_install.gif', IMAGE_MODULE_INSTALL) . '</a>');
|
|
$contents[] = array('text' => '<br>' . $mInfo->description);
|
|
}
|
|
break;
|
|
}
|
|
if ( (zen_not_null($heading)) && (zen_not_null($contents)) ) {
|
|
echo ' <td width="25%" valign="top">' . "\n";
|
|
$box = new box;
|
|
echo $box->infoBox($heading, $contents);
|
|
echo ' </td>' . "\n";
|
|
}
|
|
?>
|
|
</tr>
|
|
</table></td>
|
|
</tr>
|
|
</table></td>
|
|
<!-- body_text_eof //-->
|
|
</tr>
|
|
</table>
|
|
<!-- body_eof //-->
|
|
<!-- footer //-->
|
|
<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
|
|
<!-- footer_eof //-->
|
|
<br>
|
|
</body>
|
|
</html>
|
|
<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
|