| Server IP : 178.212.43.201 / Your IP : 10.100.0.33 Web Server : Apache/2.4.37 (Oracle Linux Server) OpenSSL/1.1.1k System : Linux spa0007.srv.paxillus.pl 5.4.17-2136.355.3.1.el8uek.x86_64 #3 SMP Sat May 9 17:11:55 PDT 2026 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/suzuki/wp-content/plugins/themeisle-companion/obfx_modules/beaver-widgets/ |
Upload File : |
<?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;
}
}