Server : LiteSpeed
System : Linux premium152.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User : idesfsze ( 1473)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /home/idesfsze/public_html/wp-content/plugins/op-builder/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]


Current File : /home/idesfsze/public_html/wp-content/plugins/op-builder/op-builder.php
<?php
/**
 * 
 *
 * Plugin Name: OptimizeBuilder
 * Plugin URI: https://optimizepress.com
 * Description: Build lightning fast, conversion optimized web pages with the drag and drop page builder from OptimizePress. Built by marketers for marketers.
 * OP UID: op-builder
 * Version: 1.1.90
 * Author: OptimizePress
 * Author URI: https://optimizepress.com
 * Text Domain: optimizepress
 * Domain Path: /resources/lang
 * Network: 
 * License: 
 * License URI: 
 */

if ( ! defined('WPINC')) die;

// Setup autoloading
require __DIR__ . '/vendor/autoload.php';

// Define some constants for use throughout the plugin
define('OP3_VERSION', '1.1.90');
define('OP3__PLUGIN_NAME', 'op-builder');
define('OP3__FILE__', __FILE__);
define('OP3__DIR__', __DIR__);
define('OP3_BASE__', plugin_basename( OP3__FILE__));
require __DIR__ . '/config/paths.php';
require __DIR__ . '/config/stylesheet.php';

// Define dependencies
define('OP3_DEPENDENCY__DASHBOARD', '1.0.64');

// Plugin activation and deactivation
register_activation_hook(__FILE__,   [\OPBuilder\Providers\PluginActivator::class,   'activate']);
register_deactivation_hook(__FILE__, [\OPBuilder\Providers\PluginDeactivator::class, 'deactivate']);
add_action('activated_plugin',       [\OPBuilder\Providers\PluginActivator::class,   'afterActivate']);
add_action('deactivated_plugin',     [\OPBuilder\Providers\PluginDeactivator::class, 'afterDeactivate']);

// Initialize the plugin
function run_optimizepress_builder() {
    $plugin = new OPBuilder\Providers\BuilderBootstrap;
    $plugin->init();
}
run_optimizepress_builder();

F1le Man4ger