/mall/upload/admin/view/template/setting/store_form.tpl
https://bitbucket.org/allanxyh/uniquemall · Smarty Template · 573 lines · 565 code · 8 blank · 0 comment · 86 complexity · 8b20a2471c9785bcf9f61450681df136 MD5 · raw file
- <?php echo $header; ?>
- <div id="content">
- <div class="breadcrumb">
- <?php foreach ($breadcrumbs as $breadcrumb) { ?>
- <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a>
- <?php } ?>
- </div>
- <?php if ($error_warning) { ?>
- <div class="warning"><?php echo $error_warning; ?></div>
- <?php } ?>
- <?php if ($success) { ?>
- <div class="success"><?php echo $success; ?></div>
- <?php } ?>
- <div class="box">
- <div class="heading">
- <h1><img src="view/image/setting.png" alt="" /> <?php echo $heading_title; ?></h1>
- <div class="buttons"><a onclick="$('#form').submit();" class="button"><?php echo $button_save; ?></a><a href="<?php echo $cancel; ?>" class="button"><?php echo $button_cancel; ?></a></div>
- </div>
- <div class="content">
- <div id="tabs" class="htabs"><a href="#tab-general"><?php echo $tab_general; ?></a><a href="#tab-store"><?php echo $tab_store; ?></a><a href="#tab-local"><?php echo $tab_local; ?></a><a href="#tab-option"><?php echo $tab_option; ?></a><a href="#tab-image"><?php echo $tab_image; ?></a><a href="#tab-server"><?php echo $tab_server; ?></a></div>
- <form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="form">
- <div id="tab-general">
- <table class="form">
- <tr>
- <td><span class="required">*</span> <?php echo $entry_url; ?></td>
- <td><input type="text" name="config_url" value="<?php echo $config_url; ?>" size="40" />
- <?php if ($error_url) { ?>
- <span class="error"><?php echo $error_url; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><?php echo $entry_ssl; ?></td>
- <td><input type="text" name="config_ssl" value="<?php echo $config_ssl; ?>" size="40" /></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_name; ?></td>
- <td><input type="text" name="config_name" value="<?php echo $config_name; ?>" size="40" />
- <?php if ($error_name) { ?>
- <span class="error"><?php echo $error_name; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_owner; ?></td>
- <td><input type="text" name="config_owner" value="<?php echo $config_owner; ?>" size="40" />
- <?php if ($error_owner) { ?>
- <span class="error"><?php echo $error_owner; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_address; ?></td>
- <td><textarea name="config_address" cols="40" rows="5"><?php echo $config_address; ?></textarea>
- <?php if ($error_address) { ?>
- <span class="error"><?php echo $error_address; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_email; ?></td>
- <td><input type="text" name="config_email" value="<?php echo $config_email; ?>" size="40" />
- <?php if ($error_email) { ?>
- <span class="error"><?php echo $error_email; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_telephone; ?></td>
- <td><input type="text" name="config_telephone" value="<?php echo $config_telephone; ?>" />
- <?php if ($error_telephone) { ?>
- <span class="error"><?php echo $error_telephone; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><?php echo $entry_fax; ?></td>
- <td><input type="text" name="config_fax" value="<?php echo $config_fax; ?>" /></td>
- </tr>
- </table>
- </div>
- <div id="tab-store">
- <table class="form">
- <tr>
- <td><span class="required">*</span> <?php echo $entry_title; ?></td>
- <td><input type="text" name="config_title" value="<?php echo $config_title; ?>" />
- <?php if ($error_title) { ?>
- <span class="error"><?php echo $error_title; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><?php echo $entry_meta_description; ?></td>
- <td><textarea name="config_meta_description" cols="40" rows="5"><?php echo $config_meta_description; ?></textarea></td>
- </tr>
- <tr>
- <td><?php echo $entry_template; ?></td>
- <td><select name="config_template" onchange="$('#template').load('index.php?route=setting/store/template&token=<?php echo $token; ?>&template=' + encodeURIComponent(this.value));">
- <?php foreach ($templates as $template) { ?>
- <?php if ($template == $config_template) { ?>
- <option value="<?php echo $template; ?>" selected="selected"><?php echo $template; ?></option>
- <?php } else { ?>
- <option value="<?php echo $template; ?>"><?php echo $template; ?></option>
- <?php } ?>
- <?php } ?>
- </select></td>
- </tr>
- <tr>
- <td></td>
- <td id="template"></td>
- </tr>
- <tr>
- <td><?php echo $entry_layout; ?></td>
- <td><select name="config_layout_id">
- <?php foreach ($layouts as $layout) { ?>
- <?php if ($layout['layout_id'] == $config_layout_id) { ?>
- <option value="<?php echo $layout['layout_id']; ?>" selected="selected"><?php echo $layout['name']; ?></option>
- <?php } else { ?>
- <option value="<?php echo $layout['layout_id']; ?>"><?php echo $layout['name']; ?></option>
- <?php } ?>
- <?php } ?>
- </select></td>
- </tr>
- </table>
- </div>
- <div id="tab-local">
- <table class="form">
- <tr>
- <td><?php echo $entry_country; ?></td>
- <td><select name="config_country_id">
- <?php foreach ($countries as $country) { ?>
- <?php if ($country['country_id'] == $config_country_id) { ?>
- <option value="<?php echo $country['country_id']; ?>" selected="selected"><?php echo $country['name']; ?></option>
- <?php } else { ?>
- <option value="<?php echo $country['country_id']; ?>"><?php echo $country['name']; ?></option>
- <?php } ?>
- <?php } ?>
- </select></td>
- </tr>
- <tr>
- <td><?php echo $entry_zone; ?></td>
- <td><select name="config_zone_id">
- </select></td>
- </tr>
- <tr>
- <td><?php echo $entry_language; ?></td>
- <td><select name="config_language">
- <?php foreach ($languages as $language) { ?>
- <?php if ($language['code'] == $config_language) { ?>
- <option value="<?php echo $language['code']; ?>" selected="selected"><?php echo $language['name']; ?></option>
- <?php } else { ?>
- <option value="<?php echo $language['code']; ?>"><?php echo $language['name']; ?></option>
- <?php } ?>
- <?php } ?>
- </select></td>
- </tr>
- <tr>
- <td><?php echo $entry_currency; ?></td>
- <td><select name="config_currency">
- <?php foreach ($currencies as $currency) { ?>
- <?php if ($currency['code'] == $config_currency) { ?>
- <option value="<?php echo $currency['code']; ?>" selected="selected"><?php echo $currency['title']; ?></option>
- <?php } else { ?>
- <option value="<?php echo $currency['code']; ?>"><?php echo $currency['title']; ?></option>
- <?php } ?>
- <?php } ?>
- </select></td>
- </tr>
- </table>
- </div>
- <div id="tab-option">
- <h2><?php echo $text_items; ?></h2>
- <table class="form">
- <tr>
- <td><span class="required">*</span> <?php echo $entry_catalog_limit; ?></td>
- <td><input type="text" name="config_catalog_limit" value="<?php echo $config_catalog_limit; ?>" size="3" />
- <?php if ($error_catalog_limit) { ?>
- <span class="error"><?php echo $error_catalog_limit; ?></span>
- <?php } ?></td>
- </tr>
- </table>
- <h2><?php echo $text_tax; ?></h2>
- <table class="form">
- <tr>
- <td><?php echo $entry_tax; ?></td>
- <td><?php if ($config_tax) { ?>
- <input type="radio" name="config_tax" value="1" checked="checked" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_tax" value="0" />
- <?php echo $text_no; ?>
- <?php } else { ?>
- <input type="radio" name="config_tax" value="1" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_tax" value="0" checked="checked" />
- <?php echo $text_no; ?>
- <?php } ?></td>
- </tr>
- <tr>
- <td><?php echo $entry_tax_default; ?></td>
- <td><select name="config_tax_default">
- <option value=""><?php echo $text_none; ?></option>
- <?php if ($config_tax_default == 'shipping') { ?>
- <option value="shipping" selected="selected"><?php echo $text_shipping; ?></option>
- <?php } else { ?>
- <option value="shipping"><?php echo $text_shipping; ?></option>
- <?php } ?>
- <?php if ($config_tax_default == 'payment') { ?>
- <option value="payment" selected="selected"><?php echo $text_payment; ?></option>
- <?php } else { ?>
- <option value="payment"><?php echo $text_payment; ?></option>
- <?php } ?>
- </select></td>
- </tr>
- <tr>
- <td><?php echo $entry_tax_customer; ?></td>
- <td><select name="config_tax_customer">
- <option value=""><?php echo $text_none; ?></option>
- <?php if ($config_tax_customer == 'shipping') { ?>
- <option value="shipping" selected="selected"><?php echo $text_shipping; ?></option>
- <?php } else { ?>
- <option value="shipping"><?php echo $text_shipping; ?></option>
- <?php } ?>
- <?php if ($config_tax_customer == 'payment') { ?>
- <option value="payment" selected="selected"><?php echo $text_payment; ?></option>
- <?php } else { ?>
- <option value="payment"><?php echo $text_payment; ?></option>
- <?php } ?>
- </select></td>
- </tr>
- </table>
- <h2><?php echo $text_account; ?></h2>
- <table class="form">
- <tr>
- <td><?php echo $entry_customer_group; ?></td>
- <td><select name="config_customer_group_id">
- <?php foreach ($customer_groups as $customer_group) { ?>
- <?php if ($customer_group['customer_group_id'] == $config_customer_group_id) { ?>
- <option value="<?php echo $customer_group['customer_group_id']; ?>" selected="selected"><?php echo $customer_group['name']; ?></option>
- <?php } else { ?>
- <option value="<?php echo $customer_group['customer_group_id']; ?>"><?php echo $customer_group['name']; ?></option>
- <?php } ?>
- <?php } ?>
- </select></td>
- </tr>
- <tr>
- <td><?php echo $entry_customer_group_display; ?></td>
- <td><div class="scrollbox">
- <?php $class = 'odd'; ?>
- <?php foreach ($customer_groups as $customer_group) { ?>
- <?php $class = ($class == 'even' ? 'odd' : 'even'); ?>
- <div class="<?php echo $class; ?>">
- <?php if (in_array($customer_group['customer_group_id'], $config_customer_group_display)) { ?>
- <input type="checkbox" name="config_customer_group_display[]" value="<?php echo $customer_group['customer_group_id']; ?>" checked="checked" />
- <?php echo $customer_group['name']; ?>
- <?php } else { ?>
- <input type="checkbox" name="config_customer_group_display[]" value="<?php echo $customer_group['customer_group_id']; ?>" />
- <?php echo $customer_group['name']; ?>
- <?php } ?>
- </div>
- <?php } ?>
- </div>
- <?php if ($error_customer_group_display) { ?>
- <span class="error"><?php echo $error_customer_group_display; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><?php echo $entry_customer_price; ?></td>
- <td><?php if ($config_customer_price) { ?>
- <input type="radio" name="config_customer_price" value="1" checked="checked" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_customer_price" value="0" />
- <?php echo $text_no; ?>
- <?php } else { ?>
- <input type="radio" name="config_customer_price" value="1" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_customer_price" value="0" checked="checked" />
- <?php echo $text_no; ?>
- <?php } ?></td>
- </tr>
- <tr>
- <td><?php echo $entry_account; ?></td>
- <td><select name="config_account_id">
- <option value="0"><?php echo $text_none; ?></option>
- <?php foreach ($informations as $information) { ?>
- <?php if ($information['information_id'] == $config_account_id) { ?>
- <option value="<?php echo $information['information_id']; ?>" selected="selected"><?php echo $information['title']; ?></option>
- <?php } else { ?>
- <option value="<?php echo $information['information_id']; ?>"><?php echo $information['title']; ?></option>
- <?php } ?>
- <?php } ?>
- </select></td>
- </tr>
- </table>
- <h2><?php echo $text_checkout; ?></h2>
- <table class="form">
- <tr>
- <td><?php echo $entry_cart_weight; ?></td>
- <td><?php if ($config_cart_weight) { ?>
- <input type="radio" name="config_cart_weight" value="1" checked="checked" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_cart_weight" value="0" />
- <?php echo $text_no; ?>
- <?php } else { ?>
- <input type="radio" name="config_cart_weight" value="1" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_cart_weight" value="0" checked="checked" />
- <?php echo $text_no; ?>
- <?php } ?></td>
- </tr>
- <tr>
- <td><?php echo $entry_guest_checkout; ?></td>
- <td><?php if ($config_guest_checkout) { ?>
- <input type="radio" name="config_guest_checkout" value="1" checked="checked" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_guest_checkout" value="0" />
- <?php echo $text_no; ?>
- <?php } else { ?>
- <input type="radio" name="config_guest_checkout" value="1" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_guest_checkout" value="0" checked="checked" />
- <?php echo $text_no; ?>
- <?php } ?></td>
- </tr>
- <tr>
- <td><?php echo $entry_checkout; ?></td>
- <td><select name="config_checkout_id">
- <option value="0"><?php echo $text_none; ?></option>
- <?php foreach ($informations as $information) { ?>
- <?php if ($information['information_id'] == $config_checkout_id) { ?>
- <option value="<?php echo $information['information_id']; ?>" selected="selected"><?php echo $information['title']; ?></option>
- <?php } else { ?>
- <option value="<?php echo $information['information_id']; ?>"><?php echo $information['title']; ?></option>
- <?php } ?>
- <?php } ?>
- </select></td>
- </tr>
- <tr>
- <td><?php echo $entry_order_status; ?></td>
- <td><select name="config_order_status_id">
- <?php foreach ($order_statuses as $order_status) { ?>
- <?php if ($order_status['order_status_id'] == $config_order_status_id) { ?>
- <option value="<?php echo $order_status['order_status_id']; ?>" selected="selected"><?php echo $order_status['name']; ?></option>
- <?php } else { ?>
- <option value="<?php echo $order_status['order_status_id']; ?>"><?php echo $order_status['name']; ?></option>
- <?php } ?>
- <?php } ?>
- </select></td>
- </tr>
- </table>
- <h2><?php echo $text_stock; ?></h2>
- <table class="form">
- <tr>
- <td><?php echo $entry_stock_display; ?></td>
- <td><?php if ($config_stock_display) { ?>
- <input type="radio" name="config_stock_display" value="1" checked="checked" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_stock_display" value="0" />
- <?php echo $text_no; ?>
- <?php } else { ?>
- <input type="radio" name="config_stock_display" value="1" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_stock_display" value="0" checked="checked" />
- <?php echo $text_no; ?>
- <?php } ?></td>
- </tr>
- <tr>
- <td><?php echo $entry_stock_checkout; ?></td>
- <td><?php if ($config_stock_checkout) { ?>
- <input type="radio" name="config_stock_checkout" value="1" checked="checked" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_stock_checkout" value="0" />
- <?php echo $text_no; ?>
- <?php } else { ?>
- <input type="radio" name="config_stock_checkout" value="1" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_stock_checkout" value="0" checked="checked" />
- <?php echo $text_no; ?>
- <?php } ?></td>
- </tr>
- </table>
- </div>
- <div id="tab-image">
- <table class="form">
- <tr>
- <td><?php echo $entry_logo; ?></td>
- <td><div class="image"><img src="<?php echo $logo; ?>" alt="" id="thumb-logo" />
- <input type="hidden" name="config_logo" value="<?php echo $config_logo; ?>" id="logo" />
- <br />
- <a onclick="image_upload('logo', 'thumb-logo');"><?php echo $text_browse; ?></a> | <a onclick="$('#thumb-logo').attr('src', '<?php echo $no_image; ?>'); $('#logo').attr('value', '');"><?php echo $text_clear; ?></a></div></td>
- </tr>
- <tr>
- <td><?php echo $entry_icon; ?></td>
- <td><div class="image"><img src="<?php echo $icon; ?>" alt="" id="thumb-icon" />
- <input type="hidden" name="config_icon" value="<?php echo $config_icon; ?>" id="icon" />
- <br />
- <a onclick="image_upload('icon', 'thumb-icon');"><?php echo $text_browse; ?></a> | <a onclick="$('#thumb-icon').attr('src', '<?php echo $no_image; ?>'); $('#icon').attr('value', '');"><?php echo $text_clear; ?></a></div></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_image_category; ?></td>
- <td><input type="text" name="config_image_category_width" value="<?php echo $config_image_category_width; ?>" size="3" />
- x
- <input type="text" name="config_image_category_height" value="<?php echo $config_image_category_height; ?>" size="3" />
- <?php if ($error_image_category) { ?>
- <span class="error"><?php echo $error_image_category; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_image_thumb; ?></td>
- <td><input type="text" name="config_image_thumb_width" value="<?php echo $config_image_thumb_width; ?>" size="3" />
- x
- <input type="text" name="config_image_thumb_height" value="<?php echo $config_image_thumb_height; ?>" size="3" />
- <?php if ($error_image_thumb) { ?>
- <span class="error"><?php echo $error_image_thumb; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_image_popup; ?></td>
- <td><input type="text" name="config_image_popup_width" value="<?php echo $config_image_popup_width; ?>" size="3" />
- x
- <input type="text" name="config_image_popup_height" value="<?php echo $config_image_popup_height; ?>" size="3" />
- <?php if ($error_image_popup) { ?>
- <span class="error"><?php echo $error_image_popup; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_image_product; ?></td>
- <td><input type="text" name="config_image_product_width" value="<?php echo $config_image_product_width; ?>" size="3" />
- x
- <input type="text" name="config_image_product_height" value="<?php echo $config_image_product_height; ?>" size="3" />
- <?php if ($error_image_product) { ?>
- <span class="error"><?php echo $error_image_product; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_image_additional; ?></td>
- <td><input type="text" name="config_image_additional_width" value="<?php echo $config_image_additional_width; ?>" size="3" />
- x
- <input type="text" name="config_image_additional_height" value="<?php echo $config_image_additional_height; ?>" size="3" />
- <?php if ($error_image_additional) { ?>
- <span class="error"><?php echo $error_image_additional; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_image_related; ?></td>
- <td><input type="text" name="config_image_related_width" value="<?php echo $config_image_related_width; ?>" size="3" />
- x
- <input type="text" name="config_image_related_height" value="<?php echo $config_image_related_height; ?>" size="3" />
- <?php if ($error_image_related) { ?>
- <span class="error"><?php echo $error_image_related; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_image_compare; ?></td>
- <td><input type="text" name="config_image_compare_width" value="<?php echo $config_image_compare_width; ?>" size="3" />
- x
- <input type="text" name="config_image_compare_height" value="<?php echo $config_image_compare_height; ?>" size="3" />
- <?php if ($error_image_compare) { ?>
- <span class="error"><?php echo $error_image_compare; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_image_wishlist; ?></td>
- <td><input type="text" name="config_image_wishlist_width" value="<?php echo $config_image_wishlist_width; ?>" size="3" />
- x
- <input type="text" name="config_image_wishlist_height" value="<?php echo $config_image_wishlist_height; ?>" size="3" />
- <?php if ($error_image_wishlist) { ?>
- <span class="error"><?php echo $error_image_wishlist; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><span class="required">*</span> <?php echo $entry_image_cart; ?></td>
- <td><input type="text" name="config_image_cart_width" value="<?php echo $config_image_cart_width; ?>" size="3" />
- x
- <input type="text" name="config_image_cart_height" value="<?php echo $config_image_cart_height; ?>" size="3" />
- <?php if ($error_image_cart) { ?>
- <span class="error"><?php echo $error_image_cart; ?></span>
- <?php } ?></td>
- </tr>
- </table>
- </div>
- <div id="tab-server">
- <table class="form">
- <tr>
- <td><?php echo $entry_secure; ?></td>
- <td><?php if ($config_secure) { ?>
- <input type="radio" name="config_secure" value="1" checked="checked" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_secure" value="0" />
- <?php echo $text_no; ?>
- <?php } else { ?>
- <input type="radio" name="config_secure" value="1" />
- <?php echo $text_yes; ?>
- <input type="radio" name="config_secure" value="0" checked="checked" />
- <?php echo $text_no; ?>
- <?php } ?></td>
- </tr>
- </table>
- </div>
- </form>
- </div>
- </div>
- </div>
- <script type="text/javascript"><!--
- $('#template').load('index.php?route=setting/store/template&token=<?php echo $token; ?>&template=' + encodeURIComponent($('select[name=\'config_template\']').attr('value')));
- //--></script>
- <script type="text/javascript"><!--
- $('select[name=\'config_country_id\']').bind('change', function() {
- $.ajax({
- url: 'index.php?route=setting/store/country&token=<?php echo $token; ?>&country_id=' + this.value,
- dataType: 'json',
- beforeSend: function() {
- $('select[name=\'country_id\']').after('<span class="wait"> <img src="view/image/loading.gif" alt="" /></span>');
- },
- complete: function() {
- $('.wait').remove();
- },
- success: function(json) {
- if (json['postcode_required'] == '1') {
- $('#postcode-required').show();
- } else {
- $('#postcode-required').hide();
- }
-
- html = '<option value=""><?php echo $text_select; ?></option>';
-
- if (json['zone'] != '') {
- for (i = 0; i < json['zone'].length; i++) {
- html += '<option value="' + json['zone'][i]['zone_id'] + '"';
-
- if (json['zone'][i]['zone_id'] == '<?php echo $config_zone_id; ?>') {
- html += ' selected="selected"';
- }
-
- html += '>' + json['zone'][i]['name'] + '</option>';
- }
- } else {
- html += '<option value="0" selected="selected"><?php echo $text_none; ?></option>';
- }
-
- $('select[name=\'config_zone_id\']').html(html);
- },
- error: function(xhr, ajaxOptions, thrownError) {
- alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
- }
- });
- });
- $('select[name=\'config_country_id\']').trigger('change');
- //--></script>
- <script type="text/javascript"><!--
- function image_upload(field, thumb) {
- $('#dialog').remove();
-
- $('#content').prepend('<div id="dialog" style="padding: 3px 0px 0px 0px;"><iframe src="index.php?route=common/filemanager&token=<?php echo $token; ?>&field=' + encodeURIComponent(field) + '" style="padding:0; margin: 0; display: block; width: 100%; height: 100%;" frameborder="no" scrolling="auto"></iframe></div>');
-
- $('#dialog').dialog({
- title: '<?php echo $text_image_manager; ?>',
- close: function (event, ui) {
- if ($('#' + field).attr('value')) {
- $.ajax({
- url: 'index.php?route=common/filemanager/image&token=<?php echo $token; ?>&image=' + encodeURIComponent($('#' + field).val()),
- dataType: 'text',
- success: function(data) {
- $('#' + thumb).replaceWith('<img src="' + data + '" alt="" id="' + thumb + '" />');
- }
- });
- }
- },
- bgiframe: false,
- width: 800,
- height: 400,
- resizable: false,
- modal: false
- });
- };
- //--></script>
- <script type="text/javascript"><!--
- $('#tabs a').tabs();
- //--></script>
- <?php echo $footer; ?>