Файл: upload-2031-rs1/admin/view/template/localisation/geo_zone_form.tpl
Строк: 287
<?php echo $header; ?><?php echo $column_left; ?>
<div
id="content">
<div class="page-header">
<div class="container-fluid">
<div
class="pull-right">
<button type="submit"
form="form-geo-zone" data-toggle="tooltip"
title="<?php echo $button_save; ?>" class="btn
btn-primary"><i class="fa
fa-save"></i></button>
<a
href="<?php echo $cancel; ?>"
data-toggle="tooltip" title="<?php echo $button_cancel;
?>" class="btn btn-default"><i class="fa
fa-reply"></i></a></div>
<h1><?php
echo $heading_title; ?></h1>
<ul
class="breadcrumb">
<?php foreach ($breadcrumbs as
$breadcrumb) { ?>
<li><a href="<?php echo
$breadcrumb['href']; ?>"><?php echo $breadcrumb['text'];
?></a></li>
<?php } ?>
</ul>
</div>
</div>
<div
class="container-fluid">
<?php if ($error_warning) {
?>
<div class="alert alert-danger"><i
class="fa fa-exclamation-circle"></i> <?php echo
$error_warning; ?>
<button type="button"
class="close"
data-dismiss="alert">×</button>
</div>
<?php } ?>
<div class="panel
panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa
fa-pencil"></i> <?php echo $text_form; ?></h3>
</div>
<div class="panel-body">
<form action="<?php echo $action; ?>"
method="post" enctype="multipart/form-data"
id="form-geo-zone" class="form-horizontal">
<div class="form-group required">
<label
class="col-sm-2 control-label"
for="input-name"><?php echo $entry_name;
?></label>
<div class="col-sm-10">
<input type="text" name="name"
value="<?php echo $name; ?>" placeholder="<?php
echo $entry_name; ?>" id="input-name"
class="form-control" />
<?php if
($error_name) { ?>
<div
class="text-danger"><?php echo $error_name;
?></div>
<?php } ?>
</div>
</div>
<div class="form-group
required">
<label class="col-sm-2
control-label" for="input-description"><?php echo
$entry_description; ?></label>
<div
class="col-sm-10">
<input
type="text" name="description" value="<?php
echo $description; ?>" placeholder="<?php echo
$entry_description; ?>" id="input-description"
class="form-control" />
<?php if
($error_description) { ?>
<div
class="text-danger"><?php echo $error_description;
?></div>
<?php } ?>
</div>
</div>
<table id="zone-to-geo-zone"
class="table table-striped table-bordered table-hover">
<thead>
<tr>
<td
class="text-left"><?php echo $entry_country;
?></td>
<td
class="text-left"><?php echo $entry_zone; ?></td>
<td></td>
</tr>
</thead>
<tbody>
<?php
$zone_to_geo_zone_row = 0; ?>
<?php foreach
($zone_to_geo_zones as $zone_to_geo_zone) { ?>
<tr
id="zone-to-geo-zone-row<?php echo $zone_to_geo_zone_row;
?>">
<td
class="text-left"><select
name="zone_to_geo_zone[<?php echo $zone_to_geo_zone_row;
?>][country_id]" id="country<?php echo
$zone_to_geo_zone_row; ?>" class="form-control"
onchange="$('#zone<?php echo $zone_to_geo_zone_row;
?>').load('index.php?route=localisation/geo_zone/zone&token=<?php
echo $token; ?>&country_id=' + this.value +
'&zone_id=0');">
<?php foreach
($countries as $country) { ?>
<?php if
($country['country_id'] == $zone_to_geo_zone['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>
<td class="text-left"><select
name="zone_to_geo_zone[<?php echo $zone_to_geo_zone_row;
?>][zone_id]" id="zone<?php echo $zone_to_geo_zone_row;
?>" class="form-control">
</select></td>
<td
class="text-left"><button type="button"
onclick="$('#zone-to-geo-zone-row<?php echo $zone_to_geo_zone_row;
?>').remove();" data-toggle="tooltip"
title="<?php echo $button_remove; ?>" class="btn
btn-danger"><i class="fa
fa-minus-circle"></i></button></td>
</tr>
<?php $zone_to_geo_zone_row++; ?>
<?php } ?>
</tbody>
<tfoot>
<tr>
<td
colspan="2"></td>
<td
class="text-left"><button type="button"
onclick="addGeoZone();" data-toggle="tooltip"
title="<?php echo $button_geo_zone_add; ?>" class="btn
btn-primary"><i class="fa
fa-plus-circle"></i></button></td>
</tr>
</tfoot>
</table>
</form>
</div>
</div>
</div>
<script
type="text/javascript"><!--
$('#zone-id').load('index.php?route=localisation/geo_zone/zone&token=<?php
echo $token; ?>&country_id=' + $('#country-id').attr('value') +
'&zone_id=0');
//--></script>
<?php $zone_to_geo_zone_row
= 0; ?>
<?php foreach ($zone_to_geo_zones as $zone_to_geo_zone) {
?>
<script
type="text/javascript"><!--
$('#zone<?php echo
$zone_to_geo_zone_row;
?>').load('index.php?route=localisation/geo_zone/zone&token=<?php
echo $token; ?>&country_id=<?php echo
$zone_to_geo_zone['country_id']; ?>&zone_id=<?php echo
$zone_to_geo_zone['zone_id']; ?>');
//--></script>
<?php
$zone_to_geo_zone_row++; ?>
<?php } ?>
<script
type="text/javascript"><!--
var zone_to_geo_zone_row =
<?php echo $zone_to_geo_zone_row; ?>;
function addGeoZone() {
html
= '<tr id="zone-to-geo-zone-row' + zone_to_geo_zone_row +
'">';
html += ' <td class="text-left"><select
name="zone_to_geo_zone[' + zone_to_geo_zone_row + '][country_id]"
id="country' + zone_to_geo_zone_row + '"
class="form-control" onchange="$(\'#zone' +
zone_to_geo_zone_row +
'\').load(\'index.php?route=localisation/geo_zone/zone&token=<?php
echo $token; ?>&country_id=\' + this.value +
\'&zone_id=0\');">';
<?php foreach ($countries as $country)
{ ?>
html += '<option value="<?php echo
$country['country_id']; ?>"><?php echo
addslashes($country['name']); ?></option>';
<?php } ?>
html += '</select></td>';
html += ' <td
class="text-left"><select name="zone_to_geo_zone[' +
zone_to_geo_zone_row + '][zone_id]" id="zone' +
zone_to_geo_zone_row + '"
class="form-control"></select></td>';
html += '
<td class="text-left"><button type="button"
onclick="$(\'#zone-to-geo-zone-row' + zone_to_geo_zone_row +
'\').remove();" data-toggle="tooltip" title="<?php
echo $button_remove; ?>" class="btn btn-danger"><i
class="fa
fa-minus-circle"></i></button></td>';
html +=
'</tr>';
$('#zone-to-geo-zone tbody').append(html);
$('#zone'
+
zone_to_geo_zone_row).load('index.php?route=localisation/geo_zone/zone&token=<?php
echo $token; ?>&country_id=' + $('#country' +
zone_to_geo_zone_row).attr('value') +
'&zone_id=0');
zone_to_geo_zone_row++;
}
//--></script></div>
<?php
echo $footer; ?>