HEX
Server: Apache
System: Linux webd011.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User: ezpgggd (105871)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/ezpgggd/www/wp-content/plugins/modula/Modula.php
<?php
/**
 * Plugin Name: Modula - PRO
 * Plugin URI: https://wp-modula.com/
 * Description: Modula is one of the best & most creative WordPress gallery plugins. Use it to create a great grid or masonry image gallery.
 * Author: WPChill
 * Author URI: https://www.wpchill.com/
 * Version: 2.8.9
 *
 * @package Modula
 */

/**
 * Define Constants
 *
 * @since    2.0.0
 */
update_option( 'modula_pro_license_key', '***************' );
update_option( 'modula_pro_license_status', (object) ['license' => 'valid', 'expires' => 'lifetime'] );
define( 'MODULA_PRO_VERSION', '2.8.9' );
define( 'MODULA_PRO_PATH', plugin_dir_path( __FILE__ ) );
define( 'MODULA_PRO_URL', plugin_dir_url( __FILE__ ) );
define( 'MODULA_PRO_FILE', __FILE__ );
define( 'MODULA_PRO_REACT_APPS_URL', plugin_dir_url( __FILE__ ) . 'assets/js/react-apps' );
define( 'MODULA_PRO_REACT_APPS_PATH', plugin_dir_path( __FILE__ ) . 'assets/js/react-apps' );
defined( 'MODULA_PRO_STORE_URL' ) || define( 'MODULA_PRO_STORE_URL', 'https://wp-modula.com' );
defined( 'MODULA_PRO_ALTERNATIVE_STORE_URL' ) || define( 'MODULA_PRO_ALTERNATIVE_STORE_URL', 'https://license.wpchill.com/modula/' );
defined( 'MODULA_PRO_STORE_UPGRADE_URL' ) || define( 'MODULA_PRO_STORE_UPGRADE_URL', 'https://wp-modula.com/pricing' );
defined( 'MODULA_PRO_STORE_ITEM_ID' ) || define( 'MODULA_PRO_STORE_ITEM_ID', 212 );
/**
 * The core plugin class that is used to define internationalization,
 * admin-specific hooks, and public-facing site hooks.
 */
require plugin_dir_path( __FILE__ ) . 'autoloader.php';

/**
 * Load the license mock class to enable Pro features
 */
require plugin_dir_path( __FILE__ ) . 'includes/class-modula-pro-license-mock.php';

/**
 * Begins execution of the plugin.
 *
 * Since everything within the plugin is registered via hooks,
 * then kicking off the plugin from this point in the file does
 * not affect the page life cycle.
 *
 * @since    2.0.0
 */
function modula_pro_run() {
	new Modula_PRO();

	new Modula_Pro_Updater();
}

modula_pro_run();