| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/harmoniegolfpark.com/wp-content/plugins/wp-multilang/ |
Upload File : |
<?php
/**
* Plugin Name: WP Multilang
* Plugin URI: https://github.com/VaLeXaR/wp-multilang
* GitHub Plugin URI: https://github.com/VaLeXaR/wp-multilang
* Description: Multilingual plugin for WordPress
* Author: Valentyn Riaboshtan
* License: GPL2
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: wp-multilang
* Domain Path: /languages
* Version: 2.3.0
* Copyright: © 2017-2018 Valentyn Riaboshtan
*
* @package WPM
* @category Core
* @author Valentyn Riaboshtan
*/
use WPM\Includes\WP_Multilang;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
// Define WPM_PLUGIN_FILE.
if ( ! defined( 'WPM_PLUGIN_FILE' ) ) {
define( 'WPM_PLUGIN_FILE', __FILE__ );
}
require_once __DIR__ . '/vendor/autoload.php';
function wpm() {
return WP_Multilang::instance();
}
wpm();