?AlkantarClanX12

Your IP : 216.73.217.134


Current Path : /home/rankinh/lynkandco/wp-content/plugins/nexteuv-plus/modules/blog/elementor/
Upload File :
Current File : /home/rankinh/lynkandco/wp-content/plugins/nexteuv-plus/modules/blog/elementor/index.php

<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if( !class_exists( 'NextEuvPlusBlogArchiveElementor' ) ) {
    class NextEuvPlusBlogArchiveElementor {

        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( NEXTEUV_PLUS_DIR_PATH. 'modules/blog/elementor/widgets/*/index.php'  ) as $module ) {
                include_once $module;
            }
        }

    }
}

NextEuvPlusBlogArchiveElementor::instance();