Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
malacoscolicine
/
wp-content
/
plugins
/
responsive-owl-carousel-elementor
/
includes
:
plugin.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Owl_Carousel_Elementor; use Elementor\Widgets_Manager; use Elementor\Controls_Manager; use Owl_Carousel_Elementor\Widgets\Owl_Carousel; use Owl_Carousel_Elementor\Controls\Custom_Exit_Animation; use Owl_Carousel_Elementor\Controls\Custom_Entry_Animation; defined( 'ABSPATH' ) || exit; /** * Plugin class. * * The main class that initiates and runs the addon. * * @since 1.0.0 */ final class Plugin { /** * Addon Version * * @since 1.0.0 * @var string The addon version. */ const VERSION = '1.1.0'; /** * Minimum Elementor Version * * @since 1.0.0 * @var string Minimum Elementor version required to run the addon. */ const MINIMUM_ELEMENTOR_VERSION = '3.16.0'; /** * Minimum PHP Version * * @since 1.0.0 * @var string Minimum PHP version required to run the addon. */ const MINIMUM_PHP_VERSION = '7.4'; /** * Instance * * @since 1.0.0 * @access private * @static * @var Plugin The single instance of the class. */ private static $_instance = null; /** * Constructor * * Perform some compatibility checks to make sure basic requirements are meet. * If all compatibility checks pass, initialize the functionality. * * @since 1.0.0 * @access public */ public function __construct() { if ( $this->is_compatible() ) { add_action( 'elementor/init', [ $this, 'init' ] ); add_action( 'init', [ $this, 'i18n' ] ); } } /** * Compatibility Checks * * Checks whether the site meets the addon requirement. * * @since 1.0.0 * @access public */ public function is_compatible() { // Check if Elementor installed and activated if ( ! did_action( 'elementor/loaded' ) ) { add_action( 'admin_notices', [ $this, 'admin_notice_missing_main_plugin' ] ); return false; } // Check for required Elementor version if ( ! version_compare( ELEMENTOR_VERSION, self::MINIMUM_ELEMENTOR_VERSION, '>=' ) ) { add_action( 'admin_notices', [ $this, 'admin_notice_minimum_elementor_version' ] ); return false; } // Check for required PHP version if ( version_compare( PHP_VERSION, self::MINIMUM_PHP_VERSION, '<' ) ) { add_action( 'admin_notices', [ $this, 'admin_notice_minimum_php_version' ] ); return false; } return true; } /** * Instance * * Ensures only one instance of the class is loaded or can be loaded. * * @return Plugin An instance of the class. * @since 1.0.0 * @access public * @static */ public static function instance() { if ( is_null( self::$_instance ) ) { self::$_instance = new self(); } return self::$_instance; } /** * Admin notice * * Warning when the site doesn't have Elementor installed or activated. * * @since 1.0.0 * @access public */ public function admin_notice_missing_main_plugin() { if ( isset( $_GET['activate'] ) ) { unset( $_GET['activate'] ); } $message = sprintf( /* translators: 1: Plugin name 2: Elementor */ esc_html__( '"%1$s" requires "%2$s" to be installed and activated.', 'responsive-owl-carousel-elementor' ), '<strong>' . esc_html__( 'Owl Carousel for Elementor', 'responsive-owl-carousel-elementor' ) . '</strong>', '<strong>' . esc_html__( 'Elementor', 'responsive-owl-carousel-elementor' ) . '</strong>' ); printf( '<div class="notice notice-warning is-dismissible"><p>%1$s</p></div>', $message ); } /** * Admin notice * * Warning when the site doesn't have a minimum required Elementor version. * * @since 1.0.0 * @access public */ public function admin_notice_minimum_elementor_version() { if ( isset( $_GET['activate'] ) ) { unset( $_GET['activate'] ); } $message = sprintf( /* translators: 1: Plugin name 2: Elementor 3: Required Elementor version */ esc_html__( '"%1$s" requires "%2$s" version %3$s or greater.', 'responsive-owl-carousel-elementor' ), '<strong>' . esc_html__( 'Owl Carousel for Elementor', 'responsive-owl-carousel-elementor' ) . '</strong>', '<strong>' . esc_html__( 'Elementor', 'responsive-owl-carousel-elementor' ) . '</strong>', self::MINIMUM_ELEMENTOR_VERSION ); printf( '<div class="notice notice-warning is-dismissible"><p>%1$s</p></div>', $message ); } /** * Admin notice * * Warning when the site doesn't have a minimum required PHP version. * * @since 1.0.0 * @access public */ public function admin_notice_minimum_php_version() { if ( isset( $_GET['activate'] ) ) { unset( $_GET['activate'] ); } $message = sprintf( /* translators: 1: Plugin name 2: PHP 3: Required PHP version */ esc_html__( '"%1$s" requires "%2$s" version %3$s or greater.', 'responsive-owl-carousel-elementor' ), '<strong>' . esc_html__( 'Owl Carousel for Elementor', 'responsive-owl-carousel-elementor' ) . '</strong>', '<strong>' . esc_html__( 'PHP', 'responsive-owl-carousel-elementor' ) . '</strong>', self::MINIMUM_PHP_VERSION ); printf( '<div class="notice notice-warning is-dismissible"><p>%1$s</p></div>', $message ); } /** * Load Textdomain * * Load plugin localization files * * @since 1.0.0 * @access public */ public function i18n() { load_plugin_textdomain( 'responsive-owl-carousel-elementor' ); } /** * Initialize * * Load the addons functionality only after Elementor is initialized. * * Fired by `elementor/init` action hook. * * @since 1.0.0 * @access public */ public function init() { require_once( OWCE_PLUGIN_PATH . '/includes/functions.php' ); add_action( 'elementor/widgets/register', [ $this, 'register_widgets' ] ); add_action( 'elementor/controls/register', [ $this, 'register_controls' ] ); } /** * Register Widgets * * Load widgets files and register new Elementor widgets. * * Fired by `elementor/widgets/register` action hook. * * @param Widgets_Manager $widgets_manager Elementor widgets manager. */ public function register_widgets( $widgets_manager ) { require_once OWCE_PLUGIN_PATH . '/includes/widgets/owl-carousel.php'; $widgets_manager->register( new Owl_Carousel() ); } /** * Register Controls * * Load controls files and register new Elementor controls. * * Fired by `elementor/controls/register` action hook. * * @param Controls_Manager $controls_manager Elementor controls manager. */ public function register_controls( $controls_manager ) {} }