369 lines
16 KiB
PHP
369 lines
16 KiB
PHP
<?php
|
|
/* ----------------------------------------------------------------------
|
|
|
|
MyOOS [Shopsystem]
|
|
https://www.oos-shop.de
|
|
|
|
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
|
----------------------------------------------------------------------
|
|
Based on:
|
|
|
|
File: products_units.php,v 1.19 2003/02/06 17:37:09 thomasamoulton
|
|
----------------------------------------------------------------------
|
|
osCommerce, Open Source E-Commerce Solutions
|
|
http://www.oscommerce.com
|
|
|
|
Copyright (c) 2003 osCommerce
|
|
----------------------------------------------------------------------
|
|
Released under the GNU General Public License
|
|
---------------------------------------------------------------------- */
|
|
|
|
define('OOS_VALID_MOD', 'yes');
|
|
require 'includes/main.php';
|
|
|
|
/**
|
|
* Return Orders Status Name
|
|
*
|
|
* @param $products_units_id
|
|
* @param $language
|
|
* @return string
|
|
*/
|
|
function oos_get_products_units_name($products_units_id, $language_id = '') {
|
|
|
|
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
|
|
|
// Get database information
|
|
$dbconn =& oosDBGetConn();
|
|
$oostable =& oosDBGetTables();
|
|
|
|
$products_unitstable = $oostable['products_units'];
|
|
$orders_sql = "SELECT products_unit_name
|
|
FROM $products_unitstable
|
|
WHERE products_units_id = '" . intval($products_units_id) . "'
|
|
AND languages_id = '" . intval($language_id) . "'";
|
|
$products_units = $dbconn->Execute($orders_sql);
|
|
|
|
return $products_units->fields['products_unit_name'];
|
|
}
|
|
|
|
|
|
/**
|
|
* Return Orders Status
|
|
*
|
|
* @param $products_units_id
|
|
* @param $language
|
|
* @return array
|
|
*/
|
|
function oos_get_products_units() {
|
|
|
|
$products_units_array = array();
|
|
|
|
$dbconn =& oosDBGetConn();
|
|
$oostable =& oosDBGetTables();
|
|
|
|
$products_unitstable = $oostable['products_units'];
|
|
$products_units_sql = "SELECT products_units_id, products_unit_name
|
|
FROM $products_unitstable
|
|
WHERE languages_id = '" . intval($_SESSION['language_id']) . "'
|
|
ORDER BY products_units_id";
|
|
$products_units_result = $dbconn->Execute($products_units_sql);
|
|
while ($products_units = $products_units_result->fields) {
|
|
$products_units_array[] = array('id' => $products_units['products_units_id'],
|
|
'text' => $products_units['products_unit_name']);
|
|
|
|
// Move that ADOdb pointer!
|
|
$products_units_result->MoveNext();
|
|
}
|
|
|
|
return $products_units_array;
|
|
}
|
|
|
|
|
|
$nPage = (!isset($_GET['page']) || !is_numeric($_GET['page'])) ? 1 : intval($_GET['page']);
|
|
$action = (isset($_GET['action']) ? $_GET['action'] : '');
|
|
|
|
if (!empty($action)) {
|
|
switch ($action) {
|
|
case 'insert':
|
|
case 'save':
|
|
$products_units_id = oos_db_prepare_input($_GET['uID']);
|
|
|
|
$languages = oos_get_languages();
|
|
for ($i = 0, $n = count($languages); $i < $n; $i++) {
|
|
$products_unit_name_array = oos_db_prepare_input($_POST['products_unit_name']);
|
|
$language_id = $languages[$i]['id'];
|
|
|
|
$sql_data_array = array('products_unit_name' => oos_db_prepare_input($products_unit_name_array[$language_id]));
|
|
|
|
if ($action == 'insert') {
|
|
if (oos_empty($products_units_id)) {
|
|
|
|
$products_unitstable = $oostable['products_units'];
|
|
$next_id_result = $dbconn->Execute("SELECT max(products_units_id) as products_units_id FROM $products_unitstable");
|
|
$next_id = $next_id_result->fields;
|
|
$products_units_id = $next_id['products_units_id'] + 1;
|
|
}
|
|
|
|
$insert_sql_data = array('products_units_id' => $products_units_id,
|
|
'languages_id' => $language_id);
|
|
|
|
$sql_data_array = array_merge($sql_data_array, $insert_sql_data);
|
|
|
|
oos_db_perform($oostable['products_units'], $sql_data_array);
|
|
} elseif ($action == 'save') {
|
|
oos_db_perform($oostable['products_units'], $sql_data_array, 'UPDATE', "products_units_id = '" . intval($products_units_id) . "' AND languages_id = '" . intval($language_id) . "'");
|
|
}
|
|
}
|
|
|
|
if (isset($_POST['default']) && ($_POST['default'] == 'on')) {
|
|
$configurationtable = $oostable['configuration'];
|
|
$dbconn->Execute("UPDATE $configurationtable SET configuration_value = '" . intval($products_units_id) . "' WHERE configuration_key = 'DEFAULT_PRODUCTS_UNITS_ID'");
|
|
}
|
|
|
|
oos_redirect_admin(oos_href_link_admin($aContents['products_units'], 'page=' . $nPage . '&uID=' . $products_units_id));
|
|
break;
|
|
|
|
case 'deleteconfirm':
|
|
$uID = oos_db_prepare_input($_GET['uID']);
|
|
|
|
$configurationtable = $oostable['configuration'];
|
|
$products_units_result = $dbconn->Execute("SELECT configuration_value FROM $configurationtable WHERE configuration_key = 'DEFAULT_PRODUCTS_UNITS_ID'");
|
|
$products_units = $products_units_result->fields;
|
|
if ($products_units['configuration_value'] == $uID) {
|
|
$dbconn->Execute("UPDATE " . $oostable['configuration'] . " SET configuration_value = '' WHERE configuration_key = 'DEFAULT_PRODUCTS_UNITS_ID'");
|
|
}
|
|
|
|
$products_unitstable = $oostable['products_units'];
|
|
$dbconn->Execute("DELETE FROM $products_unitstable WHERE products_units_id = '" . intval($uID) . "'");
|
|
|
|
oos_redirect_admin(oos_href_link_admin($aContents['products_units'], 'page=' . $nPage));
|
|
break;
|
|
|
|
case 'delete':
|
|
$uID = oos_db_prepare_input($_GET['uID']);
|
|
|
|
$productstable = $oostable['products'];
|
|
$status_result = $dbconn->Execute("SELECT COUNT(*) AS total FROM $productstable WHERE products_units_id = '" . oos_db_input($uID) . "'");
|
|
$status = $status_result->fields;
|
|
|
|
$remove_status = true;
|
|
if ($uID == DEFAULT_PRODUCTS_UNITS_ID) {
|
|
$remove_status = false;
|
|
$messageStack->add(ERROR_REMOVE_DEFAULT_PRODUCTS_UNITS, 'error');
|
|
} elseif ($status['total'] > 0) {
|
|
$remove_status = false;
|
|
$messageStack->add(ERROR_STATUS_USED_IN_PRODUCTS, 'error');
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
require 'includes/header.php';
|
|
?>
|
|
<div class="wrapper">
|
|
<!-- Header //-->
|
|
<header class="topnavbar-wrapper">
|
|
<!-- Top Navbar //-->
|
|
<?php require 'includes/menue.php'; ?>
|
|
</header>
|
|
<!-- END Header //-->
|
|
<aside class="aside">
|
|
<!-- Sidebar //-->
|
|
<div class="aside-inner">
|
|
<?php require 'includes/blocks.php'; ?>
|
|
</div>
|
|
<!-- END Sidebar (left) //-->
|
|
</aside>
|
|
|
|
<!-- Main section //-->
|
|
<section>
|
|
<!-- Page content //-->
|
|
<div class="content-wrapper">
|
|
|
|
<!-- Breadcrumbs //-->
|
|
<div class="content-heading">
|
|
<div class="col-lg-12">
|
|
<h2><?php echo HEADING_TITLE; ?></h2>
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item">
|
|
<?php echo '<a href="' . oos_href_link_admin($aContents['default']) . '">' . HEADER_TITLE_TOP . '</a>'; ?>
|
|
</li>
|
|
<li class="breadcrumb-item">
|
|
<?php echo '<a href="' . oos_href_link_admin(oos_selected_file('catalog.php'), 'selected_box=catalog') . '">' . BOX_HEADING_CATALOG . '</a>'; ?>
|
|
</li>
|
|
<li class="breadcrumb-item active">
|
|
<strong><?php echo HEADING_TITLE; ?></strong>
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
<!-- END Breadcrumbs //-->
|
|
|
|
<div class="wrapper wrapper-content">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<!-- body_text //-->
|
|
<div class="table-responsive">
|
|
<table class="table w-100">
|
|
<tr>
|
|
<td valign="top">
|
|
|
|
<table class="table table-striped table-hover w-100">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th><?php echo TABLE_HEADING_PRODUCTS_UNITS; ?></th>
|
|
<th class="text-right"><?php echo TABLE_HEADING_ACTION; ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<?php
|
|
$products_unitstable = $oostable['products_units'];
|
|
$products_units_result_raw = "SELECT products_units_id, products_unit_name
|
|
FROM $products_unitstable
|
|
WHERE languages_id = '" . intval($_SESSION['language_id']) . "'
|
|
ORDER BY products_units_id";
|
|
$products_units_split = new splitPageResults($nPage, MAX_DISPLAY_SEARCH_RESULTS, $products_units_result_raw, $products_units_result_numrows);
|
|
$products_units_result = $dbconn->Execute($products_units_result_raw);
|
|
while ($products_units = $products_units_result->fields) {
|
|
if ((!isset($_GET['uID']) || (isset($_GET['uID']) && ($_GET['uID'] == $products_units['products_units_id']))) && !isset($oInfo) && (substr($action, 0, 3) != 'new')) {
|
|
$oInfo = new objectInfo($products_units);
|
|
}
|
|
|
|
if (isset($oInfo) && is_object($oInfo) && ($products_units['products_units_id'] == $oInfo->products_units_id)) {
|
|
echo ' <tr onclick="document.location.href=\'' . oos_href_link_admin($aContents['products_units'], 'page=' . $nPage . '&uID=' . $oInfo->products_units_id . '&action=edit') . '\'">' . "\n";
|
|
} else {
|
|
echo ' <tr onclick="document.location.href=\'' . oos_href_link_admin($aContents['products_units'], 'page=' . $nPage . '&uID=' . $products_units['products_units_id']) . '\'">' . "\n";
|
|
}
|
|
|
|
if (DEFAULT_PRODUCTS_UNITS_ID == $products_units['products_units_id']) {
|
|
echo ' <td><b>' . $products_units['products_unit_name'] . ' (' . TEXT_DEFAULT . ')</b></td>' . "\n";
|
|
} else {
|
|
echo ' <td>' . $products_units['products_unit_name'] . '</td>' . "\n";
|
|
}
|
|
?>
|
|
|
|
<td class="text-right"><?php if (isset($oInfo) && is_object($oInfo) && ($products_units['products_units_id'] == $oInfo->products_units_id)) { echo '<button class="btn btn-info" type="button"><i class="fa fa-check"></i></button>'; } else { echo '<a href="' . oos_href_link_admin($aContents['products_units'], 'page=' . $nPage . '&uID=' . $products_units['products_units_id']) . '"><button class="btn btn-default" type="button"><i class="fa fa-eye-slash"></i></button></a>'; } ?> </td>
|
|
</tr>
|
|
<?php
|
|
// Move that ADOdb pointer!
|
|
$products_units_result->MoveNext();
|
|
}
|
|
?>
|
|
<tr>
|
|
<td colspan="2"><table border="0" width="100%" cellspacing="0" cellpadding="2">
|
|
<tr>
|
|
<td class="smallText" valign="top"><?php echo $products_units_split->display_count($products_units_result_numrows, MAX_DISPLAY_SEARCH_RESULTS, $nPage, TEXT_DISPLAY_NUMBER_OF_PRODUCTS_UNITS); ?></td>
|
|
<td class="smallText" align="right"><?php echo $products_units_split->display_links($products_units_result_numrows, MAX_DISPLAY_SEARCH_RESULTS, MAX_DISPLAY_PAGE_LINKS, $nPage); ?></td>
|
|
</tr>
|
|
<?php
|
|
if (empty($action)) {
|
|
?>
|
|
<tr>
|
|
<td colspan="2" align="right"><?php echo '<a href="' . oos_href_link_admin($aContents['products_units'], 'page=' . $nPage . '&action=new') . '">' . oos_button(BUTTON_INSERT) . '</a>'; ?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table></td>
|
|
</tr>
|
|
</table></td>
|
|
<?php
|
|
$heading = array();
|
|
$contents = array();
|
|
|
|
switch ($action) {
|
|
case 'new':
|
|
$heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_NEW_PRODUCTS_UNITS . '</b>');
|
|
|
|
$contents = array('form' => oos_draw_form('id', 'status', $aContents['products_units'], 'page=' . $nPage . '&action=insert', 'post', FALSE));
|
|
$contents[] = array('text' => TEXT_INFO_INSERT_INTRO);
|
|
|
|
$products_units_inputs_string = '';
|
|
$languages = oos_get_languages();
|
|
for ($i = 0, $n = count($languages); $i < $n; $i++) {
|
|
$products_units_inputs_string .= '<br />' . oos_flag_icon($languages[$i]) . ' ' . oos_draw_input_field('products_unit_name[' . $languages[$i]['id'] . ']');
|
|
}
|
|
|
|
$contents[] = array('text' => '<br />' . TEXT_INFO_PRODUCTS_UNITS_NAME . $products_units_inputs_string);
|
|
$contents[] = array('text' => '<br />' . oos_draw_checkbox_field('default') . ' ' . TEXT_SET_DEFAULT);
|
|
$contents[] = array('align' => 'center', 'text' => '<br />' . oos_submit_button(BUTTON_INSERT) . ' <a class="btn btn-sm btn-primary mb-20" href="' . oos_href_link_admin($aContents['products_units'], 'page=' . $nPage) . '" role="button"><strong>' . BUTTON_CANCEL . '</strong></a>');
|
|
break;
|
|
|
|
case 'edit':
|
|
$heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_EDIT_PRODUCTS_UNITS . '</b>');
|
|
|
|
$contents = array('form' => oos_draw_form('id', 'status', $aContents['products_units'], 'page=' . $nPage . '&uID=' . $oInfo->products_units_id . '&action=save', 'post', FALSE));
|
|
$contents[] = array('text' => TEXT_INFO_EDIT_INTRO);
|
|
|
|
$products_units_inputs_string = '';
|
|
$languages = oos_get_languages();
|
|
for ($i = 0, $n = count($languages); $i < $n; $i++) {
|
|
$products_units_inputs_string .= '<br />' . oos_flag_icon($languages[$i]) . ' ' . oos_draw_input_field('products_unit_name[' . $languages[$i]['id'] . ']', oos_get_products_units_name($oInfo->products_units_id, $languages[$i]['id']));
|
|
}
|
|
|
|
$contents[] = array('text' => '<br />' . TEXT_INFO_PRODUCTS_UNITS_NAME . $products_units_inputs_string);
|
|
if (DEFAULT_PRODUCTS_UNITS_ID != $oInfo->products_units_id) $contents[] = array('text' => '<br />' . oos_draw_checkbox_field('default') . ' ' . TEXT_SET_DEFAULT);
|
|
$contents[] = array('align' => 'center', 'text' => '<br />' . oos_submit_button(IMAGE_UPDATE) . ' <a class="btn btn-sm btn-primary mb-20" href="' . oos_href_link_admin($aContents['products_units'], 'page=' . $nPage . '&uID=' . $oInfo->products_units_id) . '" role="button"><strong>' . BUTTON_CANCEL . '</strong></a>');
|
|
|
|
break;
|
|
|
|
case 'delete':
|
|
$heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_DELETE_PRODUCTS_UNITS . '</b>');
|
|
|
|
$contents = array('form' => oos_draw_form('id', 'status', $aContents['products_units'], 'page=' . $nPage . '&uID=' . $oInfo->products_units_id . '&action=deleteconfirm', 'post', FALSE));
|
|
$contents[] = array('text' => TEXT_INFO_DELETE_INTRO);
|
|
$contents[] = array('text' => '<br /><b>' . $oInfo->products_unit_name . '</b>');
|
|
if ($remove_status) $contents[] = array('align' => 'center', 'text' => '<br />' . oos_submit_button(BUTTON_DELETE) . ' <a class="btn btn-sm btn-primary mb-20" href="' . oos_href_link_admin($aContents['products_units'], 'page=' . $nPage . '&uID=' . $oInfo->products_units_id) . '" role="button"><strong>' . BUTTON_CANCEL . '</strong></a>');
|
|
|
|
break;
|
|
|
|
default:
|
|
if (isset($oInfo) && is_object($oInfo)) {
|
|
$heading[] = array('text' => '<b>' . $oInfo->products_unit_name . '</b>');
|
|
|
|
$contents[] = array('align' => 'center', 'text' => '<a href="' . oos_href_link_admin($aContents['products_units'], 'page=' . $nPage . '&uID=' . $oInfo->products_units_id . '&action=edit') . '">' . oos_button(BUTTON_EDIT) . '</a> <a href="' . oos_href_link_admin($aContents['products_units'], 'page=' . $nPage . '&uID=' . $oInfo->products_units_id . '&action=delete') . '">' . oos_button( BUTTON_DELETE) . '</a>');
|
|
|
|
$products_units_inputs_string = '';
|
|
$languages = oos_get_languages();
|
|
for ($i = 0, $n = count($languages); $i < $n; $i++) {
|
|
$products_units_inputs_string .= '<br />' . oos_flag_icon($languages[$i]) . ' ' . oos_get_products_units_name($oInfo->products_units_id, $languages[$i]['id']);
|
|
}
|
|
|
|
$contents[] = array('text' => $products_units_inputs_string);
|
|
}
|
|
break;
|
|
}
|
|
|
|
if ( (oos_is_not_null($heading)) && (oos_is_not_null($contents)) ) {
|
|
?>
|
|
<td class="w-25">
|
|
<table class="table table-striped">
|
|
<?php
|
|
$box = new box;
|
|
echo $box->infoBox($heading, $contents);
|
|
?>
|
|
</table>
|
|
</td>
|
|
<?php
|
|
}
|
|
?>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<!-- body_text_eof //-->
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
<!-- Page footer //-->
|
|
<footer>
|
|
<span>© 2019 - <a href="https://www.oos-shop.de" target="_blank" rel="noopener">MyOOS [Shopsystem]</a></span>
|
|
</footer>
|
|
</div>
|
|
|
|
<?php
|
|
require 'includes/bottom.php';
|
|
require 'includes/nice_exit.php';
|
|
?>
|