| Server IP : 85.158.181.41 / Your IP : 216.73.217.12 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/admin/includes/functions/ |
Upload File : |
<?php
/* --------------------------------------------------------------
html_output.php 2017-06-01
Gambio GmbH
http://www.gambio.de
Copyright (c) 2017 Gambio GmbH
Released under the GNU General Public License (Version 2)
[http://www.gnu.org/licenses/gpl-2.0.html]
IMPORTANT! THIS FILE IS DEPRECATED AND WILL BE REPLACED IN THE FUTURE.
MODIFY IT ONLY FOR FIXES. DO NOT APPEND IT WITH NEW FEATURES, USE THE
NEW GX-ENGINE LIBRARIES INSTEAD.
--------------------------------------------------------------
based on:
(c) 2000-2001 The Exchange Project (earlier name of osCommerce)
(c) 2002-2003 osCommerce(html_output.php,v 1.26 2002/08/06); www.oscommerce.com
(c) 2003 nextcommerce (html_output.php,v 1.7 2003/08/18); www.nextcommerce.org
(c) 2003 XT-Commerce - community made shopping http://www.xt-commerce.com ($Id: html_output.php 1125 2005-07-28 09:59:44Z novalis $)
Released under the GNU General Public License
--------------------------------------------------------------*/
defined('_VALID_XTC') or die('Direct Access to this location is not allowed.');
require_once DIR_FS_INC . 'get_href_link.inc.php';
require_once DIR_FS_INC . 'xtc_parse_input_field_data.inc.php';
/**
* Returns an admin url.
*
* @param string $page
* @param string $queryString
* @param string $connection
* @param bool $allowSessionIdInUrl
* @param bool $deprecatedXtcSeoUrl
* @param bool $relativeUrl
* @param bool $encodeAmpersand
* @param bool $suppressLanguageCode
*
* @return string
*/
function xtc_href_link($page = '',
$queryString = '',
$connection = 'NONSSL',
$allowSessionIdInUrl = true,
$deprecatedXtcSeoUrl = false,
$relativeUrl = false,
$encodeAmpersand = false,
$suppressLanguageCode = false)
{
return get_href_link(HTTP_SERVER, HTTPS_CATALOG_SERVER, DIR_WS_ADMIN,
ENABLE_SSL_CATALOG === 'true' || ENABLE_SSL_CATALOG === true, $page, $queryString, $connection,
$allowSessionIdInUrl, $deprecatedXtcSeoUrl, $relativeUrl, $encodeAmpersand, $suppressLanguageCode);
}
/**
* Returns a frontend url.
*
* @param string $page
* @param string $queryString
* @param string $connection
* @param bool $allowSessionIdInUrl
* @param bool $deprecatedXtcSeoUrl
* @param bool $relativeUrl
* @param bool $encodeAmpersand
*
* @return string
*/
function xtc_catalog_href_link($page = '',
$queryString = '',
$connection = 'NONSSL',
$allowSessionIdInUrl = true,
$deprecatedXtcSeoUrl = false,
$relativeUrl = false,
$encodeAmpersand = false)
{
return get_href_link(HTTP_SERVER, HTTPS_CATALOG_SERVER, DIR_WS_CATALOG,
ENABLE_SSL_CATALOG === 'true' || ENABLE_SSL_CATALOG === true, $page, $queryString, $connection,
$allowSessionIdInUrl, $deprecatedXtcSeoUrl, $relativeUrl, $encodeAmpersand);
}
////
// The HTML image wrapper function
function xtc_image($src, $alt = '', $width = '', $height = '', $params = '')
{
$image = '<img src="' . $src . '" border="0" alt="' . $alt . '"';
if($alt)
{
$image .= ' title=" ' . $alt . ' "';
}
if($width)
{
$image .= ' width="' . $width . '"';
}
if($height)
{
$image .= ' height="' . $height . '"';
}
if($params)
{
$image .= ' ' . $params;
}
$image .= '>';
return $image;
}
////
// Draw a 1 pixel black line
function xtc_black_line()
{
return xtc_image(DIR_WS_ADMIN . 'html/assets/images/legacy/pixel_black.gif', '', '100%', '1');
}
////
// Output a separator either through whitespace, or with an image
function xtc_draw_separator($image = 'pixel_black.gif', $width = '100%', $height = '1')
{
return xtc_image(DIR_WS_ADMIN . 'html/assets/images/legacy/' . $image, '', $width, $height);
}
////
// javascript to dynamically update the states/provinces list when the country is changed
// TABLES: zones
function xtc_js_zone_list($country, $form, $field)
{
$countries_query = xtc_db_query("select distinct zone_country_id from " . TABLE_ZONES
. " order by zone_country_id");
$num_country = 1;
$output_string = '';
while($countries = xtc_db_fetch_array($countries_query))
{
if($num_country == 1)
{
$output_string .= ' if (' . $country . ' == "' . $countries['zone_country_id'] . '") {' . "\n";
}
else
{
$output_string .= ' } else if (' . $country . ' == "' . $countries['zone_country_id'] . '") {' . "\n";
}
$states_query = xtc_db_query("select zone_name, zone_id from " . TABLE_ZONES . " where zone_country_id = '"
. $countries['zone_country_id'] . "' order by zone_name");
$num_state = 1;
while($states = xtc_db_fetch_array($states_query))
{
if($num_state == '1')
{
$output_string .= ' ' . $form . '.' . $field . '.options[0] = new Option("' . PLEASE_SELECT
. '", "");' . "\n";
}
$output_string .= ' ' . $form . '.' . $field . '.options[' . $num_state . '] = new Option("'
. $states['zone_name'] . '", "' . $states['zone_id'] . '");' . "\n";
$num_state++;
}
$num_country++;
}
$output_string .= ' } else {' . "\n" . ' ' . $form . '.' . $field . '.options[0] = new Option("' . TYPE_BELOW
. '", "");' . "\n" . ' }' . "\n";
return $output_string;
}
////
// Output a form
function xtc_draw_form($name, $action, $parameters = '', $method = 'post', $params = '')
{
$form = '<form name="' . $name . '" action="';
if($parameters)
{
$form .= xtc_href_link($action, $parameters);
}
else
{
$form .= xtc_href_link($action);
}
$form .= '" method="' . $method . '"';
if($params)
{
$form .= ' ' . $params;
}
$form .= '>';
return $form;
}
////
// Output a form input field
function xtc_draw_input_field($name,
$value = '',
$parameters = '',
$required = false,
$type = 'text',
$reinsert_value = true)
{
$field = '<input type="' . $type . '" name="' . $name . '"';
if(!empty($GLOBALS[$name]) && ($reinsert_value))
{
$field .= ' value="' . stripslashes(htmlspecialchars_wrapper(trim($GLOBALS[$name]))) . '"';
}
elseif($value !== '')
{
$field .= ' value="' . stripslashes(htmlspecialchars_wrapper(trim($value))) . '"';
}
if($parameters != '')
{
$field .= ' ' . $parameters;
}
$field .= '>';
if($required)
{
$field .= TEXT_FIELD_REQUIRED;
}
return $field;
}
// Output a form small input field
function xtc_draw_small_input_field($name,
$value = '',
$parameters = '',
$required = false,
$type = 'text',
$reinsert_value = true)
{
$field = '<input type="' . $type . '" size="3" name="' . $name . '"';
if(($GLOBALS[$name]) && ($reinsert_value))
{
$field .= ' value="' . htmlspecialchars_wrapper(trim($GLOBALS[$name])) . '"';
}
elseif($value != '')
{
$field .= ' value="' . htmlspecialchars_wrapper(trim($value)) . '"';
}
if($parameters != '')
{
$field .= ' ' . $parameters;
}
$field .= '>';
if($required)
{
$field .= TEXT_FIELD_REQUIRED;
}
return $field;
}
////
// Output a form password field
function xtc_draw_password_field($name, $value = '', $required = false)
{
$field = xtc_draw_input_field($name, $value, 'maxlength="40"', $required, 'password', false);
return $field;
}
////
// Output a form filefield
function xtc_draw_file_field($name, $required = false, $size = '')
{
$field = xtc_draw_input_field($name, '"', "size=" . $size, $required, 'file');
return $field;
}
////
// Output a selection field - alias function for xtc_draw_checkbox_field() and xtc_draw_radio_field()
function xtc_draw_selection_field($name, $type, $value = '', $checked = false, $compare = '', $parameters = '')
{
$selection = '<input type="' . $type . '" name="' . $name . '"';
if($value != '')
{
$selection .= ' value="' . $value . '"';
}
if($parameters !== '')
{
$selection .= ' ' . $parameters;
}
if($checked == true || $GLOBALS[$name] == 'on' || ($value && $GLOBALS[$name] == $value)
|| ($value && $value == $compare)
)
{
$selection .= ' checked';
}
$selection .= ' />';
return $selection;
}
////
// Output a form checkbox field
function xtc_draw_checkbox_field($name, $value = '', $checked = false, $compare = '', $parameters = '')
{
return xtc_draw_selection_field($name, 'checkbox', $value, $checked, $compare, $parameters);
}
////
// Output a form radio field
function xtc_draw_radio_field($name, $value = '', $checked = false, $compare = '')
{
return xtc_draw_selection_field($name, 'radio', $value, $checked, $compare);
}
////
// Output a form textarea field
function xtc_draw_textarea_field($name, $wrap, $width, $height, $text = '', $params = '', $reinsert_value = true)
{
$field = '<textarea id="' . $name . '" name="' . $name . '" wrap="' . $wrap . '" cols="' . $width . '" rows="'
. $height . '"';
if($params)
{
$field .= ' ' . $params;
}
$field .= '>';
if(!empty($GLOBALS[$name]) && $reinsert_value)
{
$field .= htmlspecialchars_wrapper($GLOBALS[$name]);
}
elseif($text != '')
{
$field .= htmlspecialchars_wrapper($text);
}
$field .= '</textarea>';
return $field;
}
////
// Output a form hidden field
function xtc_draw_hidden_field($name, $value = '')
{
$field = '<input type="hidden" name="' . $name . '" value="';
if($value != '')
{
$field .= trim(xtc_parse_input_field_data($value, array('"' => '"')));
}
else
{
$field .= trim($GLOBALS[$name]);
}
$field .= '">';
return $field;
}
////
// Output a form pull down menu
function xtc_draw_pull_down_menu($name, $values, $default = '', $params = '', $required = false)
{
$field = '<select name="' . $name . '"';
if($params)
{
$field .= ' ' . $params;
}
$field .= '>';
if(is_array($values))
{
foreach($values as $key => $val)
{
$field .= '<option value="' . $val['id'] . '"';
if((strlen($val['id']) > 0 && isset($GLOBALS[$name]) && $GLOBALS[$name] == $val['id'])
|| ($default != '' && $default == $val['id'])
)
{
$field .= ' SELECTED';
}
$field .= '>' . htmlentities_wrapper(html_entity_decode_wrapper($val['text'])) . '</option>';
}
}
$field .= '</select>';
if($required)
{
$field .= TEXT_FIELD_REQUIRED;
}
return $field;
}
// output 2 Soring arrows
function xtc_sorting($page, $sort)
{
switch($page)
{
case FILENAME_CUSTOMERS:
$nav = '<a class="' . $sort . '" . href="' . xtc_href_link(FILENAME_CUSTOMERS, 'sorting=' . $sort . '&'
. xtc_get_all_get_params(array(
'action',
'sorting'
)))
. '">';
$nav .= xtc_image(DIR_WS_ADMIN . 'html/assets/images/legacy/icons/sort_down.gif', '', '14', '12', 'class="sort_image"') . '</a>';
$nav .= '<a class="' . $sort . '-desc " . href="' . xtc_href_link(FILENAME_CUSTOMERS,
'sorting=' . $sort . '-desc&'
. xtc_get_all_get_params(array(
'action',
'sorting'
))) . '">';
$nav .= xtc_image(DIR_WS_ADMIN . 'html/assets/images/legacy/icons/sort_up.gif', '', '14', '12', 'class="sort_image"') . '</a></div>';
break;
case FILENAME_CATEGORIES:
$nav = '<div><a class="' . $sort . '" href="' . xtc_href_link(FILENAME_CATEGORIES, 'sorting=' . $sort . '&'
. xtc_get_all_get_params(array(
'action',
'sorting'
)))
. '">';
$nav .= xtc_image(DIR_WS_ADMIN . 'html/assets/images/legacy/icons/sort_down.gif', '', '14', '12', 'class="sort_image"') . '</a>';
$nav .= '<a class="' . $sort . '-desc " . href="' . xtc_href_link(FILENAME_CATEGORIES,
'sorting=' . $sort . '-desc&'
. xtc_get_all_get_params(array(
'action',
'sorting'
))) . '">';
$nav .= xtc_image(DIR_WS_ADMIN . 'html/assets/images/legacy/icons/sort_up.gif', '', '14', '12', 'class="sort_image"') . '</a></div>';
break;
default:
$nav = '<div><a class="' . $sort . '" href="' . xtc_href_link($page, 'sorting=' . $sort . '&'
. xtc_get_all_get_params(array(
'action',
'sorting'
))) . '">';
$nav .= xtc_image(DIR_WS_ADMIN . 'html/assets/images/legacy/icons/sort_down.gif', '', '14', '12', 'class="sort_image"') . '</a>';
$nav .= '<a class="' . $sort . '-desc " . href="' . xtc_href_link($page, 'sorting=' . $sort . '-desc&'
. xtc_get_all_get_params(array(
'action',
'sorting'
)))
. '">';
$nav .= xtc_image(DIR_WS_ADMIN . 'html/assets/images/legacy/icons/sort_up.gif', '', '14', '12', 'class="sort_image"') . '</a></div>';
break;
}
return $nav;
}