| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/design/adminhtml/default/default/template/system/config/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE_AFL.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category design
* @package default_default
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
*/
?>
<script type="text/javascript">
//<![CDATA[
var freeModel = Class.create();
freeModel.prototype = {
initialize : function()
{
this.reload = false;
this.bindFreeMethodCutoffCostRelation();
},
bindFreeMethodCutoffCostRelation : function(parentId)
{
if(parentId) {
// todo: fix bug in IE
var freeMethodElements = $$('#'+parentId+' .free-method');
} else {
var freeMethodElements = $$('.free-method');
}
for(var i=0;i<freeMethodElements.length; i++) {
Event.observe(freeMethodElements[i], 'change', this.checkFreeMethod.bind(this));
this.initFreeMethod(freeMethodElements[i]);
}
},
initFreeMethod : function(element)
{
var freeMethodElement = element;
if (freeMethodElement && freeMethodElement.id) {
var cutoffElement = $(freeMethodElement.id.replace(/free_method/, 'cutoff_cost'));
if (cutoffElement) {
if (freeMethodElement.value == '') {
cutoffElement.disabled = true;
} else {
cutoffElement.disabled = false;
}
}
}
},
checkFreeMethod : function(event)
{
var freeMethodElement = Event.element(event);
if (freeMethodElement && freeMethodElement.id) {
var cutoffElement = $(freeMethodElement.id.replace(/free_method/, 'cutoff_cost'));
if (cutoffElement) {
if (freeMethodElement.value == '') {
cutoffElement.disabled = true;
} else {
cutoffElement.disabled = false;
}
}
}
}
}
freeMethod = new freeModel();
var originModel = Class.create();
originModel.prototype = {
initialize : function()
{
this.reload = false;
this.loader = new varienLoader(true);
this.regionsUrl = "<?php echo $this->getUrl('*/json/countryRegion') ?>";
this.bindCountryRegionRelation();
},
bindCountryRegionRelation : function(parentId)
{
if(parentId) {
// todo: fix bug in IE
var countryElements = $$('#'+parentId+' .countries');
} else {
var countryElements = $$('.countries');
}
for(var i=0; i<countryElements.size(); i++) {
Event.observe(countryElements[i], 'change', this.reloadRegionField.bind(this));
this.initRegionField(countryElements[i]);
if ($(countryElements[i].id+'_inherit')) {
Event.observe($(countryElements[i].id+'_inherit'), 'change', this.enableRegionZip.bind(this));
}
}
},
enableRegionZip : function(event)
{
this.reload = true;
var countryElement = Event.element(event);
if (countryElement && countryElement.id && !countryElement.checked) {
var regionElement = $(countryElement.id.replace(/country_id/, 'region_id'));
var zipElement = $(countryElement.id.replace(/country_id/, 'postcode'));
if (regionElement && regionElement.checked) {
regionElement.click();
}
if (zipElement && zipElement.checked) {
zipElement.click();
}
}
},
initRegionField : function(element)
{
var countryElement = element;
if (countryElement && countryElement.id) {
var regionElement = $(countryElement.id.replace(/country_id/, 'region_id'));
if (regionElement) {
this.regionElement = regionElement;
var url = this.regionsUrl+'parent/'+countryElement.value;
this.loader.load(url, {}, this.refreshRegionField.bind(this));
}
}
},
reloadRegionField : function(event)
{
this.reload = true;
var countryElement = Event.element(event);
if (countryElement && countryElement.id) {
var regionElement = $(countryElement.id.replace(/country_id/, 'region_id'));
if (regionElement) {
this.regionElement = regionElement;
var url = this.regionsUrl+'parent/'+countryElement.value;
this.loader.load(url, {}, this.refreshRegionField.bind(this));
}
}
},
refreshRegionField : function(serverResponse)
{
if (serverResponse) {
var data = eval('(' + serverResponse + ')');
var value = this.regionElement.value;
var disabled = this.regionElement.disabled;
if (data.length) {
var html = '<select name="'+this.regionElement.name+'" id="'+this.regionElement.id+'" class="required-entry select" title="'+this.regionElement.title+'"'+(disabled?" disabled":"")+'>';
for (var i in data) {
if(data[i].label) {
html+= '<option value="'+data[i].value+'"';
if(this.regionElement.value && (this.regionElement.value == data[i].value || this.regionElement.value == data[i].label)) {
html+= ' selected';
}
html+='>'+data[i].label+'<\/option>';
}
}
html+= '<\/select>';
var parentNode = this.regionElement.parentNode;
var regionElementId = this.regionElement.id;
parentNode.innerHTML = html;
this.regionElement = $(regionElementId);
} else if (this.reload) {
var html = '<input type="text" name="'+this.regionElement.name+'" id="'+this.regionElement.id+'" class="input-text" title="'+this.regionElement.title+'"'+(disabled?" disabled":"")+'>';
var parentNode = this.regionElement.parentNode;
var regionElementId = this.regionElement.id;
parentNode.innerHTML = html;
this.regionElement = $(regionElementId);
//this.regionElement.replace(html);
}
}
}
}
originAddress = new originModel();
var perPageModel = Class.create();
perPageModel.prototype = {
initialize : function()
{
this.listModeElement = $('catalog_frontend_list_mode');
if (this.listModeElement) {
this.gridValuesElement = $('catalog_frontend_grid_per_page_values');
this.listValuesElement = $('catalog_frontend_list_per_page_values');
this.listElement = $('catalog_frontend_list_per_page');
this.gridElement = $('catalog_frontend_grid_per_page');
this.gridOptions = [];
this.listOptions = [];
this.refreshPerPageSelect();
this.bindListModeChange();
this.addValidate();
}
},
bindListModeChange : function()
{
Event.observe(this.listModeElement, 'change', this.refreshPerPageSelect.bind(this));
},
refreshPerPageSelect : function()
{
if (this.listModeElement.value != '') {
if (this.listModeElement.value == 'grid') {
this.listElement.up(1).hide();
this.listValuesElement.up(1).hide();
this.gridElement.up(1).show();
this.gridValuesElement.up(1).show();
}
else if (this.listModeElement.value == 'grid-list' || this.listModeElement.value == 'list-grid') {
this.listElement.up(1).show();
this.listValuesElement.up(1).show();
this.gridElement.up(1).show();
this.gridValuesElement.up(1).show();
}
else if (this.listModeElement.value == 'list') {
this.listElement.up(1).show();
this.listValuesElement.up(1).show();
this.gridElement.up(1).hide();
this.gridValuesElement.up(1).hide();
}
}
},
addValidate : function()
{
Validation.add('validate-per-page-value-list', '<?php echo $this->__('Please enter a valid value, ex: 10,20,30')?>', function(v) {
var isValid = !Validation.get('IsEmpty').test(v);
var values = v.split(',');
for (var i=0;i<values.length;i++) {
if (!/^[0-9]+$/.test(values[i])) {
isValid = false;
}
}
return isValid;
});
Validation.add('validate-per-page-value', '<?php echo $this->__('Please enter a valid value from list')?>', function(v, elm) {
if (Validation.get('IsEmpty').test(v)) {
return false;
}
var values = $(elm.id + '_values').value.split(',');
return values.indexOf(v) != -1;
});
this.gridValuesElement.addClassName('validate-per-page-value-list');
this.listValuesElement.addClassName('validate-per-page-value-list');
this.gridElement.addClassName('validate-per-page-value');
this.listElement.addClassName('validate-per-page-value');
}
}
perPageSelect = new perPageModel();
function showHint() {
$$('.hint').each(function(element){
Event.observe(element, 'mouseover', function(){
element.down().show()
});
Event.observe(element, 'mouseout', function(){
element.down().hide()
});
});
}
Event.observe(window, 'load', function(){
showHint();
});
//]]>
</script>