File: /home/globfdxw/public_html/wp-content/plugins/alone-addons/alone-addons.php
<?php
/**
* Plugin Name: Alone Addons
* Description: Extra custom post type and elements for Elementor.
* Plugin URI: https://alonethemes.com/
* Version: 3.4.1
* Author: Beplusthemes
* Author URI: https://beplusthemes.com/
* Text Domain: alone-addons
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
* Main Alone Addons Class
*
* The init class that runs the Hello World plugin.
* Intended To make sure that the plugin's minimum requirements are met.
*
* You should only modify the constants to match your plugin's needs.
*
* Any custom code should go inside Plugin Class in the plugin.php file.
* @since 1.0.0
*/
final class Alone_Addons {
/**
* Plugin Version
*
* @since 2.0.0
* @var string The plugin version.
*/
const VERSION = '3.4.0';
/**
* Minimum Elementor Version
*
* @since 2.0.0
* @var string Minimum Elementor version required to run the plugin.
*/
const MINIMUM_ELEMENTOR_VERSION = '3.10.0';
/**
* Minimum PHP Version
*
* @since 2.0.0
* @var string Minimum PHP version required to run the plugin.
*/
const MINIMUM_PHP_VERSION = '7.4';
/**
* Constructor
*
* @since 1.0.0
* @access public
*/
public function __construct() {
// Load translation
add_action( 'init', array( $this, 'i18n' ) );
// Init Plugin
add_action( 'plugins_loaded', array( $this, 'init' ) );
}
/**
* Load Textdomain
*
* Load plugin localization files.
* Fired by `init` action hook.
*
* @since 1.0.0
* @access public
*/
public function i18n() {
load_plugin_textdomain( 'alone-addons' );
}
/**
* Initialize the plugin
*
* Validates that Elementor is already loaded.
* Checks for basic plugin requirements, if one check fail don't continue,
* if all check have passed include the plugin class.
*
* Fired by `plugins_loaded` action hook.
*
* @since 1.0.0
* @access public
*/
public function init() {
// Enqueue scripts
add_action( 'wp_enqueue_scripts', array( $this, 'alone_enqueue_scripts' ), 999 );
// Check if Elementor installed and activated
if ( ! did_action( 'elementor/loaded' ) ) {
add_action( 'admin_notices', array( $this, 'admin_notice_missing_main_plugin' ) );
return;
}
// Check for required Elementor version
if ( ! version_compare( ELEMENTOR_VERSION, self::MINIMUM_ELEMENTOR_VERSION, '>=' ) ) {
add_action( 'admin_notices', array( $this, 'admin_notice_minimum_elementor_version' ) );
return;
}
// Check for required PHP version
if ( version_compare( PHP_VERSION, self::MINIMUM_PHP_VERSION, '<' ) ) {
add_action( 'admin_notices', array( $this, 'admin_notice_minimum_php_version' ) );
return;
}
// SVG Icons class.
require_once( 'icons/class-svg-icons.php' );
require_once( 'icons/icon-functions.php' );
// Custom post type
require_once( plugin_dir_path(__FILE__) . 'custom-post-type.php' );
// Once we get here, We have passed all validation checks so we can safely include our plugin
require_once( plugin_dir_path(__FILE__) . '/plugin.php' );
// Custom elementor default
require_once( plugin_dir_path(__FILE__) . 'custom-elementor.php' );
}
/**
* Enqueue scripts
*/
public function alone_enqueue_scripts() {
wp_enqueue_script( 'alone-swiper', plugins_url( '/assets/js/swiper.min.js', __FILE__ ), [ 'jquery' ], false, true );
wp_enqueue_style( 'alone-swiper', plugins_url( '/assets/css/swiper.min.css', __FILE__ ) );
wp_enqueue_style( 'tooltipster', plugins_url( '/assets/css/tooltipster.css', __FILE__ ) );
wp_enqueue_style( 'magnific-popup', plugins_url( '/assets/css/magnific-popup.css', __FILE__ ) );
wp_enqueue_style( 'alone-addons-elements', plugins_url( '/assets/css/elements.css', __FILE__ ) );
wp_enqueue_style( 'alone-addons-woocommerce', plugins_url( '/assets/css/woocommerce.css', __FILE__ ) );
wp_enqueue_style( 'alone-addons-give', plugins_url( '/assets/css/give.css', __FILE__ ) );
wp_enqueue_style( 'alone-addons-events', plugins_url( '/assets/css/events.css', __FILE__ ) );
wp_enqueue_style( 'alone-addons-sermone', plugins_url( '/assets/css/sermone.css', __FILE__ ) );
}
/**
* 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.', 'alone-addons' ),
'<strong>' . esc_html__( 'Alone Addons', 'alone-addons' ) . '</strong>',
'<strong>' . esc_html__( 'Elementor', 'alone-addons' ) . '</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.', 'alone-addons' ),
'<strong>' . esc_html__( 'Alone Addons', 'alone-addons' ) . '</strong>',
'<strong>' . esc_html__( 'Elementor', 'alone-addons' ) . '</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.', 'alone-addons' ),
'<strong>' . esc_html__( 'Alone Addons', 'alone-addons' ) . '</strong>',
'<strong>' . esc_html__( 'PHP', 'alone-addons' ) . '</strong>',
self::MINIMUM_PHP_VERSION
);
printf( '<div class="notice notice-warning is-dismissible"><p>%1$s</p></div>', $message );
}
}
function alone_addons_load_textdomain() {
load_plugin_textdomain( 'alone-addons', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
}
add_action( 'plugins_loaded', 'alone_addons_load_textdomain' );
// Instantiate Alone_Addons.
new Alone_Addons();