Current File : /home/kelaby89/babyl0n.restaurant/wp-content/plugins/restar-core/addons/addons.php |
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Main Restar Core Class
*
* The main class that initiates and runs the plugin.
*
* @since 1.0.0
*/
final class Restar_Extension {
/**
* Plugin Version
*
* @since 1.0.0
*
* @var string The plugin version.
*/
const VERSION = '1.0.0';
/**
* Minimum Elementor Version
*
* @since 1.0.0
*
* @var string Minimum Elementor version required to run the plugin.
*/
const MINIMUM_ELEMENTOR_VERSION = '2.0.0';
/**
* Minimum PHP Version
*
* @since 1.0.0
*
* @var string Minimum PHP version required to run the plugin.
*/
const MINIMUM_PHP_VERSION = '7.0';
/**
* Instance
*
* @since 1.0.0
*
* @access private
* @static
*
* @var Elementor_Test_Extension The single instance of the class.
*/
private static $_instance = null;
/**
* Instance
*
* Ensures only one instance of the class is loaded or can be loaded.
*
* @since 1.0.0
*
* @access public
* @static
*
* @return Elementor_Test_Extension An instance of the class.
*/
public static function instance() {
if ( is_null( self::$_instance ) ) {
self::$_instance = new self();
}
return self::$_instance;
}
/**
* Constructor
*
* @since 1.0.0
*
* @access public
*/
public function __construct() {
add_action( 'plugins_loaded', [ $this, 'init' ] );
}
/**
* Initialize the plugin
*
* Load the plugin only after Elementor (and other plugins) are loaded.
* Checks for basic plugin requirements, if one check fail don't continue,
* if all check have passed load the files required to run the plugin.
*
* Fired by `plugins_loaded` action hook.
*
* @since 1.0.0
*
* @access public
*/
public function init() {
// Check if Elementor installed and activated
if ( ! did_action( 'elementor/loaded' ) ) {
add_action( 'admin_notices', [ $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', [ $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', [ $this, 'admin_notice_minimum_php_version' ] );
return;
}
// Add Plugin actions
add_action( 'elementor/widgets/register', [ $this, 'init_widgets' ] );
// Register widget scripts
add_action( 'elementor/frontend/after_enqueue_scripts', [ $this, 'widget_scripts' ]);
// Specific Register widget scripts
// add_action( 'elementor/frontend/after_register_scripts', [ $this, 'restar_regsiter_widget_scripts' ] );
// add_action( 'elementor/frontend/before_register_scripts', [ $this, 'restar_regsiter_widget_scripts' ] );
// category register
add_action( 'elementor/elements/categories_registered',[ $this, 'restar_elementor_widget_categories' ] );
}
/**
* 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.', 'restar' ),
'<strong>' . esc_html__( 'Restar Core', 'restar' ) . '</strong>',
'<strong>' . esc_html__( 'Elementor', 'restar' ) . '</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.', 'restar' ),
'<strong>' . esc_html__( 'Restar Core', 'restar' ) . '</strong>',
'<strong>' . esc_html__( 'Elementor', 'restar' ) . '</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.', 'restar' ),
'<strong>' . esc_html__( 'Restar Core', 'restar' ) . '</strong>',
'<strong>' . esc_html__( 'PHP', 'restar' ) . '</strong>',
self::MINIMUM_PHP_VERSION
);
printf( '<div class="notice notice-warning is-dismissible"><p>%1$s</p></div>', $message );
}
/**
* Init Widgets
*
* Include widgets files and register them
*
* @since 1.0.0
*
* @access public
*/
public function init_widgets() {
$widget_register = \Elementor\Plugin::instance()->widgets_manager;
// Header Include file & Widget Register
require_once( RESTAR_ADDONS . '/header/header.php' );
require_once( RESTAR_ADDONS . '/header/header2.php' );
$widget_register->register ( new \Restar_Header() );
$widget_register->register ( new \Restar_Header2() );
// Include All Widget Files
foreach($this->Restar_Include_File() as $widget_file_name){
require_once( RESTAR_ADDONS . '/widgets/restar-'."$widget_file_name".'.php' );
}
// All Widget Register
foreach($this->Restar_Register_File() as $name){
$widget_register->register ( $name );
}
}
public function Restar_Include_File(){
return [
'banner',
'banner2',
'section-title',
'button',
'blog',
'service',
'testimonial',
'team',
'team-info',
'image',
'contact-info',
'contact-form',
'counterup',
'countdown',
'faq',
'brand-logo',
'cta',
'gallery',
'info-box',
'service-list',
'product',
'project',
'newsletter',
'menu-select',
'footer-widgets',
'social',
'filter',
'animated-shape',
'arrows',
'tab-builder',
'skill',
'step',
'features',
'video',
'price',
'project-info',
'download',
'marquee',
'choose-us',
'category',
'story',
'schedule',
'offer',
'sidebar-banner',
];
}
public function Restar_Register_File(){
return [
new \Restar_Banner1(),
new \Restar_Banner2(),
new \Restar_Section_Title(),
new \Restar_Button(),
new \Restar_Blog(),
new \Restar_Service(),
new \Restar_Testimonial(),
new \Restar_Team(),
new \Restar_Team_info(),
new \Restar_Image(),
new \Restar_Contact_Info(),
new \Restar_Contact_Form(),
new \Restar_Counterup(),
new \Restar_Countdown(),
new \Restar_Faq(),
new \Restar_Brand_Logo(),
new \Restar_Cta(),
new \Restar_Gallery(),
new \Restar_Info_Box(),
new \restar_Service_List(),
new \Restar_Product(),
new \restar_Project(),
new \restar_Newsletter(),
new \Restar_Menu(),
new \Restar_Footer_Widgets(),
new \Restar_Social(),
new \Restar_Filter_Widgets(),
new \Restar_Animated_Shape(),
new \Restar_Arrows(),
new \Restar_Tab_Builder(),
new \restar_Skill(),
new \restar_Step(),
new \Restar_Features(),
new \restar_Video(),
new \Restar_Price(),
new \Restar_Project_Info(),
new \restar_Download(),
new \Restar_Marquee(),
new \restar_Choose_Us(),
new \restar_Category(),
new \restar_Story(),
new \restar_Schedule(),
new \restar_Offer(),
new \restar_SidebarBanner(),
];
}
public function widget_scripts() {
// wp_enqueue_script(
// 'restar-frontend-script',
// RESTAR_PLUGDIRURI . 'assets/js/restar-frontend.js',
// array('jquery'),
// false,
// true
// );
}
function restar_elementor_widget_categories( $elements_manager ) {
$elements_manager->add_category(
'restar',
[
'title' => __( 'Restar', 'restar' ),
'icon' => 'fa fa-plug',
]
);
$elements_manager->add_category(
'restar_footer_elements',
[
'title' => __( 'Restar Footer Elements', 'restar' ),
'icon' => 'fa fa-plug',
]
);
$elements_manager->add_category(
'restar_header_elements',
[
'title' => __( 'Restar Header Elements', 'restar' ),
'icon' => 'fa fa-plug',
]
);
}
}
Restar_Extension::instance();