HEX
Server:
System: Linux aac286ea486c 5.14.0-687.15.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jun 11 08:51:45 EDT 2026 x86_64
User: root (0)
PHP: 8.2.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,disk_free_space,diskfreespace
Upload Files
File: /dom877180/wp-content/plugins/indeed-membership-pro/classes/RegisterElementorWidgets.php
<?php
namespace Indeed\Ihc;

class RegisterElementorWidgets
{

	private static $_instance = null;

	public static function instance()
  {
		  if ( is_null( self::$_instance ) ) {
			   self::$_instance = new self();
		  }
		  return self::$_instance;
	}

	private function include_widgets_files()
  {
		  require_once IHC_PATH . 'classes/services/Elementor/Elementor_Ihc_Account_Page_Widget.php';
      require_once IHC_PATH . 'classes/services/Elementor/Elementor_Ihc_Register_Widget.php';
      require_once IHC_PATH . 'classes/services/Elementor/Elementor_Ihc_Login_Widget.php';
      require_once IHC_PATH . 'classes/services/Elementor/Elementor_Ihc_Checkout_Widget.php';
      require_once IHC_PATH . 'classes/services/Elementor/Elementor_Ihc_Thank_You_Widget.php';
      require_once IHC_PATH . 'classes/services/Elementor/Elementor_Ihc_Logout_Link_Widget.php';
      require_once IHC_PATH . 'classes/services/Elementor/Elementor_Ihc_Password_Reset_Widget.php';
      require_once IHC_PATH . 'classes/services/Elementor/Elementor_Ihc_Select_Level_Widget.php';
      require_once IHC_PATH . 'classes/services/Elementor/Elementor_Ihc_Visitor_Inside_User_Page_Widget.php';
      require_once IHC_PATH . 'classes/services/Elementor/Elementor_Ihc_Login_Popup_Widget.php';
      require_once IHC_PATH . 'classes/services/Elementor/Elementor_Ihc_Register_Popup_Widget.php';
      require_once IHC_PATH . 'classes/services/Elementor/Elementor_Ihc_Locker_Widget.php';
	}

	public function register_widgets()
  {
		  $this->include_widgets_files();
		  \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor_Ihc_Account_Page_Widget() );
		  \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor_Ihc_Register_Widget() );
		  \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor_Ihc_Login_Widget() );
		  \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor_Ihc_Checkout_Widget() );
		  \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor_Ihc_Thank_You_Widget() );
		  \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor_Ihc_Logout_Link_Widget() );
		  \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor_Ihc_Password_Reset_Widget() );
		  \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor_Ihc_Select_Level_Widget() );
		  \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor_Ihc_Visitor_Inside_User_Page_Widget() );
		  \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor_Ihc_Login_Popup_Widget() );
      \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor_Ihc_Register_Popup_Widget() );
      	  \Elementor\Plugin::instance()->widgets_manager->register_widget_type( new \Elementor_Ihc_Locker_Widget() );
	}

	public function __construct()
  {
		  // Register widgets
		  add_action( 'elementor/widgets/widgets_registered', array( $this, 'register_widgets' ) );
	}

}

\Indeed\Ihc\RegisterElementorWidgets::instance();