📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 16:44:23
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wpseo-news
/
classes
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wpseo-news/classes
🔄 Refresh
✏️
Editing: javascript-strings.php
Writable
<?php /** * Yoast SEO: News plugin file. * * @package WPSEO_News */ /** * Represents the javascript strings. */ class WPSEO_News_Javascript_Strings { /** * Strings to be made available to javascript. * * @var string[]|null */ private static $strings = null; /** * Fills the strings with values. */ private static function fill() { self::$strings = [ 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'choose_image' => __( 'Choose image.', 'wordpress-seo-news' ), ]; } /** * Returns the array with strings. * * @return string[] */ public static function strings() { if ( self::$strings === null ) { self::fill(); } return self::$strings; } }
💾 Save Changes
❌ Cancel