?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/translatepress-multilingual/includes/advanced-settings/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/translatepress-multilingual/includes

?? Viewing: exclude-dynamic-selectors.php

<?php

add_filter( 'trp_register_advanced_settings', 'trp_register_skip_dynamic_selectors', 110 );
function trp_register_skip_dynamic_selectors( $settings_array ){
	$settings_array[] = array(
		'name'          => 'skip_dynamic_selectors',
		'type'          => 'list_input',
		'columns'       => array(
			'selector' => __('Selector', 'translatepress-multilingual' ),
		),
		'label'         => esc_html__( 'Exclude from dynamic translation', 'translatepress-multilingual' ),
		'description'   => wp_kses( __( 'Do not dynamically translate strings that are found in html nodes matching these selectors.<br>Excludes all the children of HTML nodes matching these selectors from being translated using JavaScript.<br/>These strings will still be translated on the server side if possible.', 'translatepress-multilingual' ), array( 'br' => array() ) ),
        'id'            =>'exclude_strings',
	);
	return $settings_array;
}


 add_filter( 'trp_skip_selectors_from_dynamic_translation', 'trp_skip_dynamic_translation_for_selectors' );
function trp_skip_dynamic_translation_for_selectors( $skip_selectors ){
	$option = get_option( 'trp_advanced_settings', true );
	$add_skip_selectors = array( );
	if ( isset( $option['skip_dynamic_selectors'] ) && is_array( $option['skip_dynamic_selectors']['selector'] ) ) {
		$add_skip_selectors = $option['skip_dynamic_selectors']['selector'];
	}
	return array_merge( $skip_selectors, $add_skip_selectors );
}


??

??