344 lines
20 KiB
PHP
Executable File
344 lines
20 KiB
PHP
Executable File
<?php
|
|
//
|
|
// +----------------------------------------------------------------------+
|
|
// |zen-cart Open Source E-commerce |
|
|
// +----------------------------------------------------------------------+
|
|
// | Copyright (c) 2004 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: record_company.php 1969 2005-09-13 06:57:21Z drbyte $
|
|
//
|
|
|
|
require('includes/application_top.php');
|
|
|
|
$action = (isset($_GET['action']) ? $_GET['action'] : '');
|
|
|
|
if (zen_not_null($action)) {
|
|
switch ($action) {
|
|
case 'insert':
|
|
case 'save':
|
|
if (isset($_GET['mID'])) $record_company_id = zen_db_prepare_input($_GET['mID']);
|
|
$record_company_name = zen_db_prepare_input($_POST['record_company_name']);
|
|
|
|
$sql_data_array = array('record_company_name' => $record_company_name);
|
|
|
|
if ($action == 'insert') {
|
|
$insert_sql_data = array('date_added' => 'now()');
|
|
|
|
$sql_data_array = array_merge($sql_data_array, $insert_sql_data);
|
|
|
|
zen_db_perform(TABLE_RECORD_COMPANY, $sql_data_array);
|
|
$record_company_id = zen_db_insert_id();
|
|
} elseif ($action == 'save') {
|
|
$update_sql_data = array('last_modified' => 'now()');
|
|
|
|
$sql_data_array = array_merge($sql_data_array, $update_sql_data);
|
|
|
|
zen_db_perform(TABLE_RECORD_COMPANY, $sql_data_array, 'update', "record_company_id = '" . (int)$record_company_id . "'");
|
|
}
|
|
|
|
$record_company_image = new upload('record_company_image');
|
|
$record_company_image->set_destination(DIR_FS_CATALOG_IMAGES . $_POST['img_dir']);
|
|
if ( $record_company_image->parse() && $record_company_image->save()) {
|
|
// remove image from database if none
|
|
if ($record_company_image->filename != 'none') {
|
|
// remove image from database if none
|
|
$db->Execute("update " . TABLE_RECORD_COMPANY . "
|
|
set record_company_image = '" . $_POST['img_dir'] . $record_company_image->filename . "'
|
|
where record_company_id = '" . (int)$record_company_id . "'");
|
|
} else {
|
|
$db->Execute("update " . TABLE_RECORD_COMPANY . "
|
|
set record_company_image = ''
|
|
where record_company_id = '" . (int)$record_company_id . "'");
|
|
}
|
|
}
|
|
|
|
$languages = zen_get_languages();
|
|
for ($i=0, $n=sizeof($languages); $i<$n; $i++) {
|
|
$record_company_url_array = $_POST['record_company_url'];
|
|
$language_id = $languages[$i]['id'];
|
|
|
|
$sql_data_array = array('record_company_url' => zen_db_prepare_input($record_company_url_array[$language_id]));
|
|
|
|
if ($action == 'insert') {
|
|
$insert_sql_data = array('record_company_id' => $record_company_id,
|
|
'languages_id' => $language_id);
|
|
|
|
$sql_data_array = array_merge($sql_data_array, $insert_sql_data);
|
|
|
|
zen_db_perform(TABLE_RECORD_COMPANY_INFO, $sql_data_array);
|
|
} elseif ($action == 'save') {
|
|
zen_db_perform(TABLE_RECORD_COMPANY_INFO, $sql_data_array, 'update', "record_company_id = '" . (int)$record_company_id . "' and languages_id = '" . (int)$language_id . "'");
|
|
}
|
|
}
|
|
|
|
zen_redirect(zen_href_link(FILENAME_RECORD_COMPANY, (isset($_GET['page']) ? 'page=' . $_GET['page'] . '&' : '') . 'mID=' . $record_company_id));
|
|
break;
|
|
case 'deleteconfirm':
|
|
// demo active test
|
|
if (zen_admin_demo()) {
|
|
$_GET['action']= '';
|
|
$messageStack->add_session(ERROR_ADMIN_DEMO, 'caution');
|
|
zen_redirect(zen_href_link(FILENAME_RECORD_COMPANY, 'page=' . $_GET['page']));
|
|
}
|
|
$record_company_id = zen_db_prepare_input($_GET['mID']);
|
|
|
|
if (isset($_POST['delete_image']) && ($_POST['delete_image'] == 'on')) {
|
|
$record_company = $db->Execute("select record_company_image
|
|
from " . TABLE_RECORD_COMPANY . "
|
|
where record_company_id = '" . (int)$record_company_id . "'");
|
|
|
|
$image_location = DIR_FS_CATALOG_IMAGES . $record_company->fields['record_company_image'];
|
|
|
|
if (file_exists($image_location)) @unlink($image_location);
|
|
}
|
|
|
|
$db->Execute("delete from " . TABLE_RECORD_COMPANY . "
|
|
where record_company_id = '" . (int)$record_company_id . "'");
|
|
$db->Execute("delete from " . TABLE_RECORD_COMPANY_INFO . "
|
|
where record_company_id = '" . (int)$record_company_id . "'");
|
|
|
|
if (isset($_POST['delete_products']) && ($_POST['delete_products'] == 'on')) {
|
|
$products = $db->Execute("select products_id
|
|
from " . TABLE_PRODUCTS_MUSIC_EXTRA . "
|
|
where record_company_id = '" . (int)$record_company_id . "'");
|
|
|
|
while (!$products->EOF) {
|
|
zen_remove_product($products->fields['products_id']);
|
|
$products->MoveNext();
|
|
}
|
|
} else {
|
|
$db->Execute("update " . TABLE_PRODUCT_MUSIC_EXTRA . "
|
|
set record_company_id = ''
|
|
where record_company_id = '" . (int)$record_company_id . "'");
|
|
}
|
|
|
|
zen_redirect(zen_href_link(FILENAME_RECORD_COMPANY, 'page=' . $_GET['page']));
|
|
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_RECORD_COMPANY; ?></td>
|
|
<td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_ACTION; ?> </td>
|
|
</tr>
|
|
<?php
|
|
$record_company_query_raw = "select * from " . TABLE_RECORD_COMPANY . " order by record_company_name";
|
|
$record_company_split = new splitPageResults($_GET['page'], MAX_DISPLAY_SEARCH_RESULTS, $record_company_query_raw, $record_company_query_numrows);
|
|
$record_company = $db->Execute($record_company_query_raw);
|
|
|
|
while (!$record_company->EOF) {
|
|
|
|
if ((!isset($_GET['mID']) || (isset($_GET['mID']) && ($_GET['mID'] == $record_company->fields['record_company_id']))) && !isset($aInfo) && (substr($action, 0, 3) != 'new')) {
|
|
$record_company_products = $db->Execute("select count(*) as products_count
|
|
from " . TABLE_PRODUCT_MUSIC_EXTRA . "
|
|
where record_company_id = '" . (int)$record_company->fields['record_company_id'] . "'");
|
|
|
|
$aInfo_array = array_merge($record_company->fields, $record_company_products->fields);
|
|
$aInfo = new objectInfo($aInfo_array);
|
|
}
|
|
|
|
if (isset($aInfo) && is_object($aInfo) && ($record_company->fields['record_company_id'] == $aInfo->record_company_id)) {
|
|
echo ' <tr id="defaultSelected" class="dataTableRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . zen_href_link(FILENAME_RECORD_COMPANY, 'page=' . $_GET['page'] . '&mID=' . $record_company->fields['record_company_id'] . '&action=edit') . '\'">' . "\n";
|
|
} else {
|
|
echo ' <tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . zen_href_link(FILENAME_RECORD_COMPANY, 'page=' . $_GET['page'] . '&mID=' . $record_company->fields['record_company_id'] . '&action=edit') . '\'">' . "\n";
|
|
}
|
|
?>
|
|
<td class="dataTableContent"><?php echo $record_company->fields['record_company_name']; ?></td>
|
|
<td class="dataTableContent" align="right">
|
|
<?php echo '<a href="' . zen_href_link(FILENAME_RECORD_COMPANY, 'page=' . $_GET['page'] . '&mID=' . $record_company->fields['record_company_id'] . '&action=edit') . '">' . zen_image(DIR_WS_IMAGES . 'icon_edit.gif', ICON_EDIT) . '</a>'; ?>
|
|
<?php echo '<a href="' . zen_href_link(FILENAME_RECORD_COMPANY, 'page=' . $_GET['page'] . '&mID=' . $record_company->fields['record_company_id'] . '&action=delete') . '">' . zen_image(DIR_WS_IMAGES . 'icon_delete.gif', ICON_DELETE) . '</a>'; ?>
|
|
<?php if (isset($aInfo) && is_object($aInfo) && ($record_company->fields['record_company_id'] == $aInfo->record_company_id)) { echo zen_image(DIR_WS_IMAGES . 'icon_arrow_right.gif', ''); } else { echo '<a href="' . zen_href_link(FILENAME_RECORD_COMPANY, zen_get_all_get_params(array('mID')) . 'mID=' . $record_company->fields['record_company_id']) . '">' . zen_image(DIR_WS_IMAGES . 'icon_info.gif', IMAGE_ICON_INFO) . '</a>'; } ?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
$record_company->MoveNext();
|
|
}
|
|
?>
|
|
<tr>
|
|
<td colspan="2"><table border="0" width="100%" cellspacing="0" cellpadding="2">
|
|
<tr>
|
|
<td class="smallText" valign="top"><?php echo $record_company_split->display_count($record_company_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, $_GET['page'], TEXT_DISPLAY_NUMBER_OF_RECORD_COMPANIES); ?></td>
|
|
<td class="smallText" align="right"><?php echo $record_company_split->display_links($record_company_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, MAX_DISPLAY_PAGE_LINKS, $_GET['page']); ?></td>
|
|
</tr>
|
|
</table></td>
|
|
</tr>
|
|
<?php
|
|
if (empty($action)) {
|
|
?>
|
|
<tr>
|
|
<td align="right" colspan="2" class="smallText"><?php echo '<a href="' . zen_href_link(FILENAME_RECORD_COMPANY, 'page=' . $_GET['page'] . '&mID=' . $aInfo->record_company_id . '&action=new') . '">' . zen_image_button('button_insert.gif', IMAGE_INSERT) . '</a>'; ?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table></td>
|
|
<?php
|
|
$heading = array();
|
|
$contents = array();
|
|
|
|
switch ($action) {
|
|
case 'new':
|
|
$heading[] = array('text' => '<b>' . TEXT_HEADING_NEW_RECORD_COMPANY . '</b>');
|
|
|
|
$contents = array('form' => zen_draw_form('record_company', FILENAME_RECORD_COMPANY, 'action=insert', 'post', 'enctype="multipart/form-data"'));
|
|
$contents[] = array('text' => TEXT_NEW_INTRO);
|
|
$contents[] = array('text' => '<br>' . TEXT_RECORD_COMPANY_NAME . '<br>' . zen_draw_input_field('record_company_name', '', zen_set_field_length(TABLE_RECORD_COMPANY, 'record_company_name')));
|
|
$contents[] = array('text' => '<br>' . TEXT_RECORD_COMPANY_IMAGE . '<br>' . zen_draw_file_field('record_company_image'));
|
|
$dir = @dir(DIR_FS_CATALOG_IMAGES);
|
|
$dir_info[] = array('id' => '', 'text' => "Main Directory");
|
|
while ($file = $dir->read()) {
|
|
if (is_dir(DIR_FS_CATALOG_IMAGES . $file) && strtoupper($file) != 'CVS' && $file != "." && $file != "..") {
|
|
$dir_info[] = array('id' => $file . '/', 'text' => $file);
|
|
}
|
|
}
|
|
|
|
$default_directory = 'record_company/';
|
|
|
|
$contents[] = array('text' => '<BR />' . TEXT_RECORD_COMPANY_IMAGE_DIR . zen_draw_pull_down_menu('img_dir', $dir_info, $default_directory));
|
|
|
|
$record_company_inputs_string = '';
|
|
$languages = zen_get_languages();
|
|
for ($i=0, $n=sizeof($languages); $i<$n; $i++) {
|
|
$record_company_inputs_string .= '<br>' . zen_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . zen_draw_input_field('record_company_url[' . $languages[$i]['id'] . ']', '', zen_set_field_length(TABLE_RECORD_COMPANY_INFO, 'record_company_url') );
|
|
}
|
|
|
|
$contents[] = array('text' => '<br>' . TEXT_RECORD_COMPANY_URL . $record_company_inputs_string);
|
|
$contents[] = array('align' => 'center', 'text' => '<br>' . zen_image_submit('button_save.gif', IMAGE_SAVE) . ' <a href="' . zen_href_link(FILENAME_RECORD_COMPANY, 'page=' . $_GET['page'] . '&mID=' . $_GET['mID']) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
|
|
break;
|
|
case 'edit':
|
|
$heading[] = array('text' => '<b>' . TEXT_HEADING_EDIT_RECORD_COMPANY . '</b>');
|
|
|
|
$contents = array('form' => zen_draw_form('record_company', FILENAME_RECORD_COMPANY, 'page=' . $_GET['page'] . '&mID=' . $aInfo->record_company_id . '&action=save', 'post', 'enctype="multipart/form-data"'));
|
|
$contents[] = array('text' => TEXT_EDIT_INTRO);
|
|
$contents[] = array('text' => '<br />' . TEXT_RECORD_COMPANY_NAME . '<br>' . zen_draw_input_field('record_company_name', $aInfo->record_company_name, zen_set_field_length(TABLE_RECORD_COMPANY, 'record_company_name')));
|
|
$contents[] = array('text' => '<br />' . TEXT_RECORD_COMPANY_IMAGE . '<br>' . zen_draw_file_field('record_company_image') . '<br />' . $aInfo->record_company_image);
|
|
$dir = @dir(DIR_FS_CATALOG_IMAGES);
|
|
$dir_info[] = array('id' => '', 'text' => "Main Directory");
|
|
while ($file = $dir->read()) {
|
|
if (is_dir(DIR_FS_CATALOG_IMAGES . $file) && strtoupper($file) != 'CVS' && $file != "." && $file != "..") {
|
|
$dir_info[] = array('id' => $file . '/', 'text' => $file);
|
|
}
|
|
}
|
|
$default_directory = substr( $aInfo->record_company_image, 0,strpos( $aInfo->record_company_image, '/')+1);
|
|
$contents[] = array('text' => '<BR />' . TEXT_RECORD_COMPANY_IMAGE_DIR . zen_draw_pull_down_menu('img_dir', $dir_info, $default_directory));
|
|
$contents[] = array('text' => '<br />' . zen_info_image($aInfo->record_company_image, $aInfo->record_company_name));
|
|
$record_company_inputs_string = '';
|
|
$languages = zen_get_languages();
|
|
for ($i=0, $n=sizeof($languages); $i<$n; $i++) {
|
|
$record_company_inputs_string .= '<br>' . zen_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . zen_draw_input_field('record_company_url[' . $languages[$i]['id'] . ']', zen_get_record_company_url($aInfo->record_company_id, $languages[$i]['id']), zen_set_field_length(TABLE_RECORD_COMPANY_INFO, 'record_company_url'));
|
|
}
|
|
|
|
$contents[] = array('text' => '<br>' . TEXT_RECORD_COMPANY_URL . $record_company_inputs_string);
|
|
$contents[] = array('align' => 'center', 'text' => '<br>' . zen_image_submit('button_save.gif', IMAGE_SAVE) . ' <a href="' . zen_href_link(FILENAME_RECORD_COMPANY, 'page=' . $_GET['page'] . '&mID=' . $aInfo->record_company_id) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
|
|
break;
|
|
case 'delete':
|
|
$heading[] = array('text' => '<b>' . TEXT_HEADING_DELETE_RECORD_COMPANY . '</b>');
|
|
|
|
$contents = array('form' => zen_draw_form('record_company', FILENAME_RECORD_COMPANY, 'page=' . $_GET['page'] . '&mID=' . $aInfo->record_company_id . '&action=deleteconfirm'));
|
|
$contents[] = array('text' => TEXT_DELETE_INTRO);
|
|
$contents[] = array('text' => '<br><b>' . $aInfo->record_company_name . '</b>');
|
|
$contents[] = array('text' => '<br>' . zen_draw_checkbox_field('delete_image', '', true) . ' ' . TEXT_DELETE_IMAGE);
|
|
|
|
if ($aInfo->products_count > 0) {
|
|
$contents[] = array('text' => '<br>' . zen_draw_checkbox_field('delete_products') . ' ' . TEXT_DELETE_PRODUCTS);
|
|
$contents[] = array('text' => '<br>' . sprintf(TEXT_DELETE_WARNING_PRODUCTS, $aInfo->products_count));
|
|
}
|
|
|
|
$contents[] = array('align' => 'center', 'text' => '<br>' . zen_image_submit('button_delete.gif', IMAGE_DELETE) . ' <a href="' . zen_href_link(FILENAME_RECORD_COMPANY, 'page=' . $_GET['page'] . '&mID=' . $aInfo->record_company_id) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
|
|
break;
|
|
default:
|
|
if (isset($aInfo) && is_object($aInfo)) {
|
|
$heading[] = array('text' => '<b>' . $aInfo->record_company_name . '</b>');
|
|
|
|
$contents[] = array('align' => 'center', 'text' => '<a href="' . zen_href_link(FILENAME_RECORD_COMPANY, 'page=' . $_GET['page'] . '&mID=' . $aInfo->record_company_id . '&action=edit') . '">' . zen_image_button('button_edit.gif', IMAGE_EDIT) . '</a> <a href="' . zen_href_link(FILENAME_RECORD_COMPANY, 'page=' . $_GET['page'] . '&mID=' . $aInfo->record_company_id . '&action=delete') . '">' . zen_image_button('button_delete.gif', IMAGE_DELETE) . '</a>');
|
|
$contents[] = array('text' => '<br>' . TEXT_DATE_ADDED . ' ' . zen_date_short($aInfo->date_added));
|
|
if (zen_not_null($aInfo->last_modified)) $contents[] = array('text' => TEXT_LAST_MODIFIED . ' ' . zen_date_short($aInfo->last_modified));
|
|
$contents[] = array('text' => '<br>' . zen_info_image($aInfo->record_company_image, $aInfo->record_company_name));
|
|
$contents[] = array('text' => '<br>' . TEXT_PRODUCTS . ' ' . $aInfo->products_count);
|
|
}
|
|
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'); ?>
|