=')) { 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; } add_action('elementor/widgets/widgets_registered', array( $this, 'remove_modula_widget' ), 15); // Once we get here, We have passed all validation checks so we can safely include our elementor block activation require_once( MODULA_PATH.'includes/elementor/class-modula-elementor-widget-activation.php' ); } /** * 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( esc_html__('"%1$s" requires "%2$s" version %3$s or greater.', 'modula-best-grid-gallery'), '' . esc_html__('Modula Elementor widget', 'modula-best-grid-gallery') . '', '' . esc_html__('Elementor', 'modula-best-grid-gallery') . '', self::MINIMUM_ELEMENTOR_VERSION ); printf('

%1$s

', $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( esc_html__('"%1$s" requires "%2$s" version %3$s or greater.', 'modula-best-grid-gallery'), '' . esc_html__('Modula Elementor widget', 'modula-best-grid-gallery') . '', '' . esc_html__('PHP', 'modula-best-grid-gallery') . '', self::MINIMUM_PHP_VERSION ); printf('

%1$s

', $message); } /* Remove WordPress widget because we have a dedicated Elementor Widget */ public function remove_modula_widget( $widget_manager ){ $widget_manager->unregister_widget_type( 'wp-widget-modula_gallery_widget' ); } } new Modula_Elementor_Check();