/mall/upload/admin/view/template/catalog/manufacturer_form.tpl
https://bitbucket.org/allanxyh/uniquemall · Smarty Template · 105 lines · 103 code · 2 blank · 0 comment · 8 complexity · 64967cbc88fc992a71ed47a2bade633e 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 } ?>
- <div class="box">
- <div class="heading">
- <h1><img src="view/image/shipping.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></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_name; ?></td>
- <td><input type="text" name="name" value="<?php echo $name; ?>" size="100" />
- <?php if ($error_name) { ?>
- <span class="error"><?php echo $error_name; ?></span>
- <?php } ?></td>
- </tr>
- <tr>
- <td><?php echo $entry_store; ?></td>
- <td><div class="scrollbox">
- <?php $class = 'even'; ?>
- <div class="<?php echo $class; ?>">
- <?php if (in_array(0, $manufacturer_store)) { ?>
- <input type="checkbox" name="manufacturer_store[]" value="0" checked="checked" />
- <?php echo $text_default; ?>
- <?php } else { ?>
- <input type="checkbox" name="manufacturer_store[]" value="0" />
- <?php echo $text_default; ?>
- <?php } ?>
- </div>
- <?php foreach ($stores as $store) { ?>
- <?php $class = ($class == 'even' ? 'odd' : 'even'); ?>
- <div class="<?php echo $class; ?>">
- <?php if (in_array($store['store_id'], $manufacturer_store)) { ?>
- <input type="checkbox" name="manufacturer_store[]" value="<?php echo $store['store_id']; ?>" checked="checked" />
- <?php echo $store['name']; ?>
- <?php } else { ?>
- <input type="checkbox" name="manufacturer_store[]" value="<?php echo $store['store_id']; ?>" />
- <?php echo $store['name']; ?>
- <?php } ?>
- </div>
- <?php } ?>
- </div></td>
- </tr>
- <tr>
- <td><?php echo $entry_keyword; ?></td>
- <td><input type="text" name="keyword" value="<?php echo $keyword; ?>" /></td>
- </tr>
- <tr>
- <td><?php echo $entry_image; ?></td>
- <td valign="top"><div class="image"><img src="<?php echo $thumb; ?>" alt="" id="thumb" />
- <input type="hidden" name="image" value="<?php echo $image; ?>" id="image" />
- <br /><a onclick="image_upload('image', 'thumb');"><?php echo $text_browse; ?></a> | <a onclick="$('#thumb').attr('src', '<?php echo $no_image; ?>'); $('#image').attr('value', '');"><?php echo $text_clear; ?></a></div></td>
- </tr>
- <tr>
- <td><?php echo $entry_sort_order; ?></td>
- <td><input type="text" name="sort_order" value="<?php echo $sort_order; ?>" size="1" /></td>
- </tr>
- </table>
- </div>
- </form>
- </div>
- </div>
- </div>
- <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; ?>