Current Path : /var/www/upload/admin/view/template/setting/ |
Current File : /var/www/upload/admin/view/template/setting/store_form.tpl |
<?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-store" 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 } ?> <?php if ($success) { ?> <div class="alert alert-success"><i class="fa fa-check-circle"></i> <?php echo $success; ?> <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-store" class="form-horizontal"> <ul class="nav nav-tabs"> <li class="active"><a href="#tab-general" data-toggle="tab"><?php echo $tab_general; ?></a></li> <li><a href="#tab-store" data-toggle="tab"><?php echo $tab_store; ?></a></li> <li><a href="#tab-local" data-toggle="tab"><?php echo $tab_local; ?></a></li> <li><a href="#tab-option" data-toggle="tab"><?php echo $tab_option; ?></a></li> <li><a href="#tab-image" data-toggle="tab"><?php echo $tab_image; ?></a></li> <li><a href="#tab-server" data-toggle="tab"><?php echo $tab_server; ?></a></li> </ul> <div class="tab-content"> <div class="tab-pane active" id="tab-general"> <div class="form-group required"> <label class="col-sm-2 control-label" for="input-url"><span data-toggle="tooltip" data-html="true" title="<?php echo htmlspecialchars($help_url); ?>"><?php echo $entry_url; ?></span></label> <div class="col-sm-10"> <input type="text" name="config_url" value="<?php echo $config_url; ?>" placeholder="<?php echo $entry_url; ?>" id="input-url" class="form-control" /> <?php if ($error_url) { ?> <div class="text-danger"><?php echo $error_url; ?></div> <?php } ?> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-ssl"><span data-toggle="tooltip" data-html="true" title="<?php echo $help_ssl; ?>"><?php echo $entry_ssl; ?></span></label> <div class="col-sm-10"> <input type="text" name="config_ssl" value="<?php echo $config_ssl; ?>" placeholder="<?php echo $entry_ssl; ?>" id="input-ssl" class="form-control" /> </div> </div> <div class="form-group required"> <label class="col-sm-2 control-label" for="input-meta-title"><?php echo $entry_meta_title; ?></label> <div class="col-sm-10"> <input type="text" name="config_meta_title" value="<?php echo $config_meta_title; ?>" placeholder="<?php echo $entry_meta_title; ?>" id="input-meta-title" class="form-control" /> <?php if ($error_meta_title) { ?> <div class="text-danger"><?php echo $error_meta_title; ?></div> <?php } ?> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-meta-description"><?php echo $entry_meta_description; ?></label> <div class="col-sm-10"> <textarea name="config_meta_description" rows="5" placeholder="<?php echo $entry_meta_description; ?>" id="input-meta-description" class="form-control"><?php echo $config_meta_description; ?></textarea> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-meta-keyword"><?php echo $entry_meta_keyword; ?></label> <div class="col-sm-10"> <textarea name="config_meta_keyword" rows="5" placeholder="<?php echo $entry_meta_keyword; ?>" id="input-meta-keyword" class="form-control"><?php echo $config_meta_keyword; ?></textarea> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-theme"><?php echo $entry_theme; ?></label> <div class="col-sm-10"> <select name="config_theme" id="input-theme" class="form-control"> <?php foreach ($themes as $theme) { ?> <?php if ($theme['value'] == $config_theme) { ?> <option value="<?php echo $theme['value']; ?>" selected="selected"><?php echo $theme['text']; ?></option> <?php } else { ?> <option value="<?php echo $theme['value']; ?>"><?php echo $theme['text']; ?></option> <?php } ?> <?php } ?> </select> <br /> <img src="" alt="" id="theme" class="img-thumbnail" /></div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-layout"><?php echo $entry_layout; ?></label> <div class="col-sm-10"> <select name="config_layout_id" id="input-layout" class="form-control"> <?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> </div> </div> </div> <div class="tab-pane" id="tab-store"> <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="config_name" value="<?php echo $config_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-owner"><?php echo $entry_owner; ?></label> <div class="col-sm-10"> <input type="text" name="config_owner" value="<?php echo $config_owner; ?>" placeholder="<?php echo $entry_owner; ?>" id="input-owner" class="form-control" /> <?php if ($error_owner) { ?> <div class="text-danger"><?php echo $error_owner; ?></div> <?php } ?> </div> </div> <div class="form-group required"> <label class="col-sm-2 control-label" for="input-address"><?php echo $entry_address; ?></label> <div class="col-sm-10"> <textarea name="config_address" rows="5" placeholder="<?php echo $entry_address; ?>" id="input-address" class="form-control"><?php echo $config_address; ?></textarea> <?php if ($error_address) { ?> <div class="text-danger"><?php echo $error_address; ?></div> <?php } ?> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-geocode"><span data-toggle="tooltip" data-container="#tab-general" title="<?php echo $help_geocode; ?>"><?php echo $entry_geocode; ?></span></label> <div class="col-sm-10"> <input type="text" name="config_geocode" value="<?php echo $config_geocode; ?>" placeholder="<?php echo $entry_geocode; ?>" id="input-geocode" class="form-control" /> </div> </div> <div class="form-group required"> <label class="col-sm-2 control-label" for="input-email"><?php echo $entry_email; ?></label> <div class="col-sm-10"> <input type="text" name="config_email" value="<?php echo $config_email; ?>" placeholder="<?php echo $entry_email; ?>" id="input-email" class="form-control" /> <?php if ($error_email) { ?> <div class="text-danger"><?php echo $error_email; ?></div> <?php } ?> </div> </div> <div class="form-group required"> <label class="col-sm-2 control-label" for="input-telephone"><?php echo $entry_telephone; ?></label> <div class="col-sm-10"> <input type="text" name="config_telephone" value="<?php echo $config_telephone; ?>" placeholder="<?php echo $entry_telephone; ?>" id="input-telephone" class="form-control" /> <?php if ($error_telephone) { ?> <div class="text-danger"><?php echo $error_telephone; ?></div> <?php } ?> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-fax"><?php echo $entry_fax; ?></label> <div class="col-sm-10"> <input type="text" name="config_fax" value="<?php echo $config_fax; ?>" placeholder="<?php echo $entry_fax; ?>" id="input-fax" class="form-control" /> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-image"><?php echo $entry_image; ?></label> <div class="col-sm-10"><a href="" id="thumb-image" data-toggle="image" class="img-thumbnail"><img src="<?php echo $thumb; ?>" alt="" title="" data-placeholder="<?php echo $placeholder; ?>" /></a> <input type="hidden" name="config_image" value="<?php echo $config_image; ?>" id="input-image" /> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-open"><span data-toggle="tooltip" title="<?php echo $help_open; ?>"><?php echo $entry_open; ?></span></label> <div class="col-sm-10"> <textarea name="config_open" rows="5" placeholder="<?php echo $entry_open; ?>" id="input-open" class="form-control"><?php echo $config_open; ?></textarea> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-comment"><span data-toggle="tooltip" title="<?php echo $help_comment; ?>"><?php echo $entry_comment; ?></span></label> <div class="col-sm-10"> <textarea name="config_comment" rows="5" placeholder="<?php echo $entry_comment; ?>" id="input-comment" class="form-control"><?php echo $config_comment; ?></textarea> </div> </div> <?php if ($locations) { ?> <div class="form-group"> <label class="col-sm-2 control-label"><span data-toggle="tooltip" title="<?php echo $help_location; ?>"><?php echo $entry_location; ?></span></label> <div class="col-sm-10"> <?php foreach ($locations as $location) { ?> <div class="checkbox"> <label> <?php if (in_array($location['location_id'], $config_location)) { ?> <input type="checkbox" name="config_location[]" value="<?php echo $location['location_id']; ?>" checked="checked" /> <?php echo $location['name']; ?> <?php } else { ?> <input type="checkbox" name="config_location[]" value="<?php echo $location['location_id']; ?>" /> <?php echo $location['name']; ?> <?php } ?> </label> </div> <?php } ?> </div> </div> <?php } ?> </div> <div class="tab-pane" id="tab-local"> <div class="form-group"> <label class="col-sm-2 control-label" for="input-country"><?php echo $entry_country; ?></label> <div class="col-sm-10"> <select name="config_country_id" id="input-country" class="form-control"> <?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> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-zone"><?php echo $entry_zone; ?></label> <div class="col-sm-10"> <select name="config_zone_id" id="input-zone" class="form-control"> </select> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-language"><?php echo $entry_language; ?></label> <div class="col-sm-10"> <select name="config_language" id="input-language" class="form-control"> <?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> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-currency"><span data-toggle="tooltip" title="<?php echo $help_currency; ?>"><?php echo $entry_currency; ?></span></label> <div class="col-sm-10"> <select name="config_currency" id="input-currency" class="form-control"> <?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> </div> </div> </div> <div class="tab-pane" id="tab-option"> <fieldset> <legend><?php echo $text_tax; ?></legend> <div class="form-group"> <label class="col-sm-2 control-label"><?php echo $entry_tax; ?></label> <div class="col-sm-10"> <label class="radio-inline"> <?php if ($config_tax) { ?> <input type="radio" name="config_tax" value="1" checked="checked" /> <?php echo $text_yes; ?> <?php } else { ?> <input type="radio" name="config_tax" value="1" /> <?php echo $text_yes; ?> <?php } ?> </label> <label class="radio-inline"> <?php if (!$config_tax) { ?> <input type="radio" name="config_tax" value="0" checked="checked" /> <?php echo $text_no; ?> <?php } else { ?> <input type="radio" name="config_tax" value="0" /> <?php echo $text_no; ?> <?php } ?> </label> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-tax-default"><span data-toggle="tooltip" title="<?php echo $help_tax_default; ?>"><?php echo $entry_tax_default; ?></span></label> <div class="col-sm-10"> <select name="config_tax_default" id="input-tax-default" class="form-control"> <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> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-tax-customer"><span data-toggle="tooltip" title="<?php echo $help_tax_customer; ?>"><?php echo $entry_tax_customer; ?></span></label> <div class="col-sm-10"> <select name="config_tax_customer" id="input-tax-customer" class="form-control"> <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> </div> </div> </fieldset> <fieldset> <legend><?php echo $text_account; ?></legend> <div class="form-group"> <label class="col-sm-2 control-label" for="input-customer-group"><span data-toggle="tooltip" title="<?php echo $help_customer_group; ?>"><?php echo $entry_customer_group; ?></span></label> <div class="col-sm-10"> <select name="config_customer_group_id" id="input-customer-group" class="form-control"> <?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> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><span data-toggle="tooltip" title="<?php echo $help_customer_group_display; ?>"><?php echo $entry_customer_group_display; ?></span></label> <div class="col-sm-10"> <?php foreach ($customer_groups as $customer_group) { ?> <div class="checkbox"> <label> <?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 } ?> </label> </div> <?php } ?> <?php if ($error_customer_group_display) { ?> <div class="text-danger"><?php echo $error_customer_group_display; ?></div> <?php } ?> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><span data-toggle="tooltip" title="<?php echo $help_customer_price; ?>"><?php echo $entry_customer_price; ?></span></label> <div class="col-sm-10"> <label class="radio-inline"> <?php if ($config_customer_price) { ?> <input type="radio" name="config_customer_price" value="1" checked="checked" /> <?php echo $text_yes; ?> <?php } else { ?> <input type="radio" name="config_customer_price" value="1" /> <?php echo $text_yes; ?> <?php } ?> </label> <label class="radio-inline"> <?php if (!$config_customer_price) { ?> <input type="radio" name="config_customer_price" value="0" checked="checked" /> <?php echo $text_no; ?> <?php } else { ?> <input type="radio" name="config_customer_price" value="0" /> <?php echo $text_no; ?> <?php } ?> </label> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-account"><span data-toggle="tooltip" title="<?php echo $help_account; ?>"><?php echo $entry_account; ?></span></label> <div class="col-sm-10"> <select name="config_account_id" id="input-account" class="form-control"> <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> </div> </div> </fieldset> <fieldset> <legend><?php echo $text_checkout; ?></legend> <div class="form-group"> <label class="col-sm-2 control-label"><?php echo $entry_cart_weight; ?></label> <div class="col-sm-10"> <label class="radio-inline"> <?php if ($config_cart_weight) { ?> <input type="radio" name="config_cart_weight" value="1" checked="checked" /> <?php echo $text_yes; ?> <?php } else { ?> <input type="radio" name="config_cart_weight" value="1" /> <?php echo $text_yes; ?> <?php } ?> </label> <label class="radio-inline"> <?php if (!$config_cart_weight) { ?> <input type="radio" name="config_cart_weight" value="0" checked="checked" /> <?php echo $text_no; ?> <?php } else { ?> <input type="radio" name="config_cart_weight" value="0" /> <?php echo $text_no; ?> <?php } ?> </label> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><span data-toggle="tooltip" title="<?php echo $help_checkout_guest; ?>"><?php echo $entry_checkout_guest; ?></span></label> <div class="col-sm-10"> <label class="radio-inline"> <?php if ($config_checkout_guest) { ?> <input type="radio" name="config_checkout_guest" value="1" checked="checked" /> <?php echo $text_yes; ?> <?php } else { ?> <input type="radio" name="config_checkout_guest" value="1" /> <?php echo $text_yes; ?> <?php } ?> </label> <label class="radio-inline"> <?php if (!$config_checkout_guest) { ?> <input type="radio" name="config_checkout_guest" value="0" checked="checked" /> <?php echo $text_no; ?> <?php } else { ?> <input type="radio" name="config_checkout_guest" value="0" /> <?php echo $text_no; ?> <?php } ?> </label> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-checkout"><span data-toggle="tooltip" title="<?php echo $help_checkout; ?>"><?php echo $entry_checkout; ?></span></label> <div class="col-sm-10"> <select name="config_checkout_id" id="input-checkout" class="form-control"> <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> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-order-status"><span data-toggle="tooltip" title="<?php echo $help_order_status; ?>"><?php echo $entry_order_status; ?></span></label> <div class="col-sm-10"> <select name="config_order_status_id" id="input-order-status" class="form-control"> <?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> </div> </div> </fieldset> <fieldset> <legend><?php echo $text_stock; ?></legend> <div class="form-group"> <label class="col-sm-2 control-label"><span data-toggle="tooltip" title="<?php echo $help_stock_display; ?>"><?php echo $entry_stock_display; ?></span></label> <div class="col-sm-10"> <label class="radio-inline"> <?php if ($config_stock_display) { ?> <input type="radio" name="config_stock_display" value="1" checked="checked" /> <?php echo $text_yes; ?> <?php } else { ?> <input type="radio" name="config_stock_display" value="1" /> <?php echo $text_yes; ?> <?php } ?> </label> <label class="radio-inline"> <?php if (!$config_stock_display) { ?> <input type="radio" name="config_stock_display" value="0" checked="checked" /> <?php echo $text_no; ?> <?php } else { ?> <input type="radio" name="config_stock_display" value="0" /> <?php echo $text_no; ?> <?php } ?> </label> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><span data-toggle="tooltip" title="<?php echo $help_stock_checkout; ?>"><?php echo $entry_stock_checkout; ?></span></label> <div class="col-sm-10"> <label class="radio-inline"> <?php if ($config_stock_checkout) { ?> <input type="radio" name="config_stock_checkout" value="1" checked="checked" /> <?php echo $text_yes; ?> <?php } else { ?> <input type="radio" name="config_stock_checkout" value="1" /> <?php echo $text_yes; ?> <?php } ?> </label> <label class="radio-inline"> <?php if (!$config_stock_checkout) { ?> <input type="radio" name="config_stock_checkout" value="0" checked="checked" /> <?php echo $text_no; ?> <?php } else { ?> <input type="radio" name="config_stock_checkout" value="0" /> <?php echo $text_no; ?> <?php } ?> </label> </div> </div> </fieldset> </div> <div class="tab-pane" id="tab-image"> <div class="form-group"> <label class="col-sm-2 control-label" for="input-logo"><?php echo $entry_logo; ?></label> <div class="col-sm-10"><a href="" id="thumb-logo" data-toggle="image" class="img-thumbnail"><img src="<?php echo $logo; ?>" alt="" title="" data-placeholder="<?php echo $placeholder; ?>" /></a> <input type="hidden" name="config_logo" value="<?php echo $config_logo; ?>" id="input-logo" /> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label" for="input-icon"><span data-toggle="tooltip" title="<?php echo $help_icon; ?>"><?php echo $entry_icon; ?></span></label> <div class="col-sm-10"><a href="" id="thumb-icon" data-toggle="image" class="img-thumbnail"><img src="<?php echo $icon; ?>" alt="" title="" data-placeholder="<?php echo $placeholder; ?>" /></a> <input type="hidden" name="config_icon" value="<?php echo $config_icon; ?>" id="input-icon" /> </div> </div> </div> <div class="tab-pane" id="tab-server"> <div class="form-group"> <label class="col-sm-2 control-label"><span data-toggle="tooltip" title="<?php echo $help_secure; ?>"><?php echo $entry_secure; ?></span></label> <div class="col-sm-10"> <label class="radio-inline"> <?php if ($config_secure) { ?> <input type="radio" name="config_secure" value="1" checked="checked" /> <?php echo $text_yes; ?> <?php } else { ?> <input type="radio" name="config_secure" value="1" /> <?php echo $text_yes; ?> <?php } ?> </label> <label class="radio-inline"> <?php if (!$config_secure) { ?> <input type="radio" name="config_secure" value="0" checked="checked" /> <?php echo $text_no; ?> <?php } else { ?> <input type="radio" name="config_secure" value="0" /> <?php echo $text_no; ?> <?php } ?> </label> </div> </div> </div> </div> </form> </div> </div> </div> <script type="text/javascript"><!-- $('select[name=\'config_theme\']').on('change', function() { $.ajax({ url: 'index.php?route=setting/setting/theme&token=<?php echo $token; ?>&theme=' + this.value, dataType: 'html', beforeSend: function() { $('select[name=\'config_theme\']').after(' <i class="fa fa-circle-o-notch fa-spin"></i>'); }, complete: function() { $('.fa-spin').remove(); }, success: function(html) { $('#theme').attr('src', html); }, error: function(xhr, ajaxOptions, thrownError) { alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText); } }); }); $('select[name=\'config_theme\']').trigger('change'); //--></script> <script type="text/javascript"><!-- $('select[name=\'config_country_id\']').on('change', function() { $.ajax({ url: 'index.php?route=localisation/country/country&token=<?php echo $token; ?>&country_id=' + this.value, dataType: 'json', beforeSend: function() { $('select[name=\'config_country_id\']').after(' <i class="fa fa-circle-o-notch fa-spin"></i>'); }, complete: function() { $('.fa-spin').remove(); }, success: function(json) { html = '<option value=""><?php echo $text_select; ?></option>'; if (json['zone'] && 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></div> <?php echo $footer; ?>