# wplingua/2.12.2/inc/assets.php

Translate and Go multilingual – Automatic AI translation – wpLingua, version 2.12.2. 152 lines.

- Page: https://pluginprobe.com/plugins/wplingua/2.12.2/code/inc/assets.php
- Raw: https://pluginprobe.com/plugins/wplingua/2.12.2/raw/inc/assets.php
- Modified: 2026-05-04T00:07:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wplingua/2.12.2/code/inc/assets.php#L10-L20`.

```php
<?php

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}


/**
 * Register asset for wpLingua in front (CSS, JS)
 *
 * @return void
 */
function wplng_register_assets() {

	if ( is_admin() || ! wplng_url_is_translatable() ) {
		return;
	}

	/**
	 * Enqueue wpLingua JS script
	 */

	wp_enqueue_script(
		'wplingua-script',
		plugins_url() . '/wplingua/assets/js/front.js',
		array(),
		WPLNG_PLUGIN_VERSION
	);

	wp_add_inline_script(
		'wplingua-script',
		'window.wplngCookiePath=' . wp_json_encode( COOKIEPATH ) . ';',
		'before'
	);

	// The load-in-progress script relies on jQuery and is injected in translated pages.
	if ( current_user_can( 'edit_posts' )
		&& get_option( 'wplng_load_in_progress', false )
	) {
		wp_enqueue_script( 'jquery' );
	}

	/**
	 * Enqueue wpLingua CSS style
	 */

	wp_enqueue_style(
		'wplingua',
		plugins_url() . '/wplingua/assets/css/front.css',
		array(),
		WPLNG_PLUGIN_VERSION
	);

	/**
	 * Add scripts and CSS for translation editor
	 */

	if ( ! empty( $_GET['wplng-mode'] )
		&& (
			'editor' === $_GET['wplng-mode']
			|| 'list' === $_GET['wplng-mode']
		)
		&& current_user_can( 'edit_posts' )
	) {

		wp_enqueue_style( 'dashicons' );
		wp_enqueue_script( 'jquery' );

		wp_enqueue_script(
			'wplingua-translation',
			plugins_url() . '/wplingua/assets/js/admin/edit-translation.js',
			array( 'jquery' ),
			WPLNG_PLUGIN_VERSION
		);

		wp_localize_script(
			'wplingua-translation',
			'wplngI18nTranslation',
			array(
				'ajaxUrl'         => admin_url( 'admin-ajax.php' ),
				'currentLanguage' => wplng_get_language_current_id(),
				'message'         => array(
					'exitPage'             => esc_html__(
						'You are about to leave the page without saving your changes. They will be lost if you continue. Would you like to leave the page anyway?',
						'wplingua'
					),
					'exitEditorModal'      => esc_html__(
						'You are about to exit without saving your changes. They will be lost if you continue. Would you like to leave anyway?',
						'wplingua'
					),
					'buttonSave'           => esc_html__( 'Save', 'wplingua' ),
					'buttonSaveInProgress' => esc_html__( 'Save in progress...', 'wplingua' ),
				),
			)
		);

	}
}


/**
 * Add custom inline styles for wpLingua.
 *
 * This function retrieves custom CSS from the database (stored in the 'wplng_custom_css' option),
 * sanitizes it, and outputs it directly into the <head> section of the page.
 *
 * @return void
 */
function wplng_add_custom_inline_styles() {

	if ( ! empty( $_GET['wplng-mode'] )
		&& 'list' === $_GET['wplng-mode']
	) {
		return;
	}

	$custom_css = get_option( 'wplng_custom_css' );

	if ( ! empty( $custom_css ) && is_string( $custom_css ) ) {
		$custom_css = wp_strip_all_tags( $custom_css );
		echo '<style id="wplingua-inline-styles">' . $custom_css . '</style>';
	}
}


/**
 * Print the on page scrip
 *
 * @return void
 */
function wplng_on_page_script() {

	if ( ! empty( $_GET['wplng-load'] ) ) {
		return;
	}

	$script = file_get_contents( WPLNG_PLUGIN_DIR . '/assets/js/on-page.js' );

	if ( empty( $script ) ) {
		return;
	}

	$script = str_replace(
		array( '[admin-ajax-php]', '[wplng-cookie-path]', '//# sourceMappingURL=on-page.js.map' ),
		array( admin_url( 'admin-ajax.php' ), COOKIEPATH, '' ),
		$script
	);

	echo '<script id="wplingua-js-on-page">' . rtrim( $script ) . '</script>';
}

```
