HEX
Server: Apache
System: Linux sxb1plmcpnl510113.prod.sxb1.secureserver.net 4.18.0-553.58.1.lve.el8.x86_64 #1 SMP Fri Jul 4 12:07:06 UTC 2025 x86_64
User: acnbijigo78q (10488831)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/otgs-installer-plugin/otgs-installer.php
<?php
/**
 * Plugin Name: OTGS Installer
 * Plugin URI: https://wpml.org/
 * Description: Lightweight Installer plugin that allows to install OTGS plugins
 * Author: OnTheGoSystems
 * Author URI: http://www.onthegosystems.com/
 * Version: 3.1.14
 * Plugin Slug: otgs-installer
 *
 * @package WPML\Core
 */

use OTGS\InstallerPlugin\OtgsInstallerPlugin;

define( 'OTGS_INSTALLER_VERSION', '3.1.14' );

define( 'OTGS_INSTALLER_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
define( 'OTGS_INSTALLER_PLUGIN_FOLDER', dirname( OTGS_INSTALLER_PLUGIN_BASENAME ) );

define( 'OTGS_INSTALLER_PLUGIN_PATH', __DIR__ );
define( 'OTGS_INSTALLER_PLUGINS_DIR', realpath( __DIR__ . '/..' ) );
define( 'OTGS_INSTALLER_PLUGIN_FILE', basename( OTGS_INSTALLER_PLUGIN_BASENAME ) );

require_once __DIR__ . '/vendor/autoload.php';

include 'vendor/otgs/installer/loader.php';

WP_Installer_Setup(
	$wp_installer_instance,
	['plugins_install_tab'   => true]
);

$p = new OtgsInstallerPlugin();
$p->addHooks();