Linux webm002.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
/
home
/
ariannadhf
/
www
/
wp-content
/
plugins
/
themeisle-companion
/
obfx_modules
/
beaver-widgets
/
/home/ariannadhf/www/wp-content/plugins/themeisle-companion/obfx_modules/beaver-widgets/init.php
<?php /** * Beaver Builder modules Orbit Fox Module. * * @link https://themeisle.com * @since 2.2.5 */ use ThemeIsle\ContentForms\Form_Manager; define( 'BEAVER_WIDGETS_PATH', plugin_dir_path( __FILE__ ) ); define( 'BEAVER_WIDGETS_URL', plugins_url( '/', __FILE__ ) ); /** * Class Beaver_Widgets_OBFX_Module */ class Beaver_Widgets_OBFX_Module extends Orbit_Fox_Module_Abstract { /** * Beaver_Widgets_OBFX_Module constructor. * * @since 2.2.5 * @access public */ public function __construct() { parent::__construct(); $this->active_default = true; } /** * Setup module strings * * @access public */ public function set_module_strings() { $this->name = __( 'Beaver Builder widgets', 'themeisle-companion' ); $this->description = __( 'Adds widgets to the Beaver Builder.', 'themeisle-companion' ); $this->documentation_url = 'https://docs.themeisle.com/article/951-orbit-fox-documentation#page-builder-widgets'; } /** * Determine if module should be loaded. * * @since 2.2.5 * @access public * @return bool */ public function enable_module() { $this->check_new_user(); require_once ABSPATH . 'wp-admin/includes/plugin.php'; return is_plugin_active( 'beaver-builder-lite-version/fl-builder.php' ) || is_plugin_active( 'bb-plugin/fl-builder.php' ); } /** * The loading logic for the module. * * @since 2.2.5 * @access public */ public function load() { } /** * Method to define hooks needed. * * @since 2.2.5 * @access public */ public function hooks() { $this->loader->add_action( 'init', $this, 'load_content_forms' ); $this->loader->add_action( 'init', $this, 'load_widgets_modules' ); } /** * Method that returns an array of scripts and styles to be loaded * for the front end part. * * @since 2.2.5 * @access public * @return array */ public function public_enqueue() { return array(); } /** * Method that returns an array of scripts and styles to be loaded * for the admin part. * * @since 2.2.5 * @access public * @return array */ public function admin_enqueue() { return array(); } /** * Method to define the options fields for the module * * @since 2.2.5 * @access public * @return array */ public function options() { return array(); } /** * If the content-forms library is available we should make the forms available for elementor */ public function load_content_forms() { if ( ! class_exists( '\ThemeIsle\ContentForms\Form_Manager' ) ) { return false; } $content_forms = new Form_Manager(); $content_forms->instance(); return true; } /** * Require Beaver Builder modules * * @since 2.2.5 * @access public * @return bool */ public function load_widgets_modules() { if ( ! class_exists( 'FLBuilderModel' ) || ! class_exists( 'FLBuilder' ) ) { return false; } $is_new_user = get_option( 'obfx_new_user' ); $modules_list = FLBuilderModel::$modules; $modules_to_load = array( 'pricing-table', 'services', 'post-grid', ); $new_user_prefix = ''; if ( $is_new_user === 'yes' ) { $new_user_prefix = 'obfx-'; } foreach ( $modules_to_load as $module ) { $prefix = $new_user_prefix; if ( empty( $prefix ) && array_key_exists( $module, $modules_list ) ) { $prefix = 'obfx-'; } require_once 'modules/' . $module . '/' . $prefix . $module . '.php'; } return true; } }