| Server IP : 68.178.247.200 / Your IP : 216.73.216.14 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/www/wp-content/plugins/simple-sitemap/shared/ |
Upload File : |
<?php
namespace WPGO_Plugins\Simple_Sitemap;
/**
* Localize plugin.
*/
class Localize {
/**
* Common root paths/directories.
*
* @var $module_roots
*/
protected $module_roots;
/**
* Main class constructor.
*
* @param array $module_roots Root plugin path/dir.
*/
public function __construct( $module_roots ) {
$this->module_roots = $module_roots;
add_action( 'plugins_loaded', array( &$this, 'localize_plugin' ) );
}
/**
* Add Plugin localization support.
*/
public function localize_plugin() {
load_plugin_textdomain( 'simple-sitemap', false, basename( dirname( $this->module_roots['file'] ) ) . '/languages' );
}
} /* End class definition */