| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/clients/client2/whatsapp-spy.de/web/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.4.1
* Copyright: © 2017-2019 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();