61 lines
2.1 KiB
JavaScript
61 lines
2.1 KiB
JavaScript
var WPML_Core = WPML_Core || {};
|
|
WPML_Core.theme_localization = {};
|
|
|
|
addLoadEvent(function(){
|
|
jQuery('#icl_theme_localization').submit(iclSaveThemeLocalization);
|
|
jQuery('#icl_theme_localization_type').submit(iclSaveThemeLocalizationType);
|
|
|
|
jQuery(document).on('change', '.check-column-plugin :checkbox', function () {
|
|
WPML_Core.theme_localization.check_column( 'plugins', jQuery(this).prop('checked') );
|
|
});
|
|
jQuery(document).on('change', '.check-column-theme :checkbox', function () {
|
|
WPML_Core.theme_localization.check_column( 'themes', jQuery(this).prop('checked') );
|
|
});
|
|
});
|
|
|
|
function iclSaveThemeLocalization(){
|
|
var spl = jQuery(this).serialize().split('&');
|
|
var parameters = {};
|
|
for(var i=0; i< spl.length; i++){
|
|
var par = spl[i].split('=');
|
|
parameters[par[0]] = par[1];
|
|
}
|
|
jQuery('#icl_theme_localization_wrap').load(WPML_core.sanitize(location.href) + ' #icl_theme_localization_subwrap', parameters, function(){
|
|
fadeInAjxResp('#icl_ajx_response_fn', icl_ajx_saved);
|
|
});
|
|
return false;
|
|
}
|
|
|
|
function iclSaveThemeLocalizationType(){
|
|
jQuery(this).find('.icl_form_errors').fadeOut();
|
|
var val = jQuery(this).find('[name="icl_theme_localization_type"]:checked').val();
|
|
var td_on = jQuery(this).find('[name="icl_theme_localization_load_td"]').prop('checked');
|
|
var td_value = jQuery(this).find('[name="textdomain_value"]').val();
|
|
|
|
if(val == 2 && td_on && !td_value.trim()){
|
|
jQuery(this).find('.icl_form_errors_1').fadeIn();
|
|
return false;
|
|
}
|
|
|
|
var data = jQuery(this).serializeArray();
|
|
data.push({
|
|
'name': 'action',
|
|
'value' : 'WPML_Theme_Localization_Type'
|
|
});
|
|
|
|
jQuery.ajax({
|
|
type: "POST",
|
|
url: ajaxurl,
|
|
data: data,
|
|
success: function(){
|
|
location.href = WPML_core.sanitize(location.href).replace(/#(.*)$/,'');
|
|
}
|
|
});
|
|
return false;
|
|
}
|
|
|
|
WPML_Core.theme_localization.check_column = function(type, checked){
|
|
var visible_rows = jQuery('#wpml_strings_in_' + type).find(':checkbox:visible');
|
|
visible_rows.prop('checked', checked);
|
|
};
|