Uname: Linux webm001.cluster110.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software: Apache
PHP version: 7.3.33 [ PHP INFO ] PHP os: Linux
Server Ip: 213.186.33.19
Your Ip: 216.73.216.124
User: creationoo (224166) | Group: users (100)
Safe Mode: OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl

name : class-fusion-builder-options-panel.php
<?php
/**
 * Handled the options panel for Element Options.
 *
 * @package Fusion-Builder
 * @subpackage Options
 * @since 1.1.0
 */

/**
 * Instantiates Fusion Options
 * and takes care of its options.
 */
class Fusion_Builder_Options_Panel {

	/**
	 * The arguments we'll be passing-on to the options-framework.
	 *
	 * @access protected
	 * @since 1.1.0
	 * @var array
	 */
	protected $args = array();

	/**
	 * The Fusion_Builder_Redux object.
	 *
	 * @access private
	 * @since 1.1.0
	 * @var object
	 */
	private $fusion_builder_redux;

	/**
	 * Constructor.
	 *
	 * @since 1.1.0
	 */
	public function __construct() {

		$this->includes();

		$this->args = array(
			'sections'             => Fusion_Builder_Options::get_instance(),
			'is_language_all'      => ( 'all' === Fusion_Multilingual::get_active_language() ),
			'option_name'          => Fusion_Settings::get_option_name(),
			'original_option_name' => Fusion_Settings::get_original_option_name(),
			'version'              => FUSION_BUILDER_VERSION,
			'textdomain'           => 'fusion-builder',
			'disable_dependencies' => false,
			'display_name'         => 'Fusion Builder',
			'menu_title'           => esc_attr__( 'Element Options', 'fusion-builder' ),
			'page_title'           => esc_attr__( 'Element Options', 'fusion-builder' ),
			'global_variable'      => 'fusion_fusionredux_options',
			'page_parent'          => 'fusion-builder-options',
			'page_slug'            => 'fusion-element-options',
			'menu_type'            => 'submenu',
			'page_permissions'     => 'manage_options',
		);

		require_once wp_normalize_path( FUSION_BUILDER_PLUGIN_DIR . '/inc/class-fusion-builder-redux.php' );

		// If the current theme doesn't have an integration with fusion-builder-options
		// Instantiate our admin options.
		if ( ! current_theme_supports( 'fusion-builder-options' ) ) {
			$this->init_redux();
			return;
		}
		// If we got this far, the theme DOES have a fusion-builder-options integration
		// So we have to add the options via hooks.
		add_filter( 'fusion_admin_options_injection', array( $this, 'fusion_options_integration' ) );

	}

	/**
	 * Instantiates the options panel.
	 *
	 * @access public
	 * @since 1.1.0
	 */
	public function init_redux() {
		$this->fusion_builder_redux = new Fusion_Builder_Redux( $this->args );
	}

	/**
	 * Include any needed files.
	 *
	 * @access protected
	 * @since 1.1.0
	 */
	protected function includes() {

		if ( ! class_exists( 'Fusion_Builder_Options' ) ) {
			include_once wp_normalize_path( FUSION_BUILDER_PLUGIN_DIR . '/inc/class-fusion-builder-options.php' );
		}

	}

	/**
	 * Allows adding our options to another options panel.
	 *
	 * @access public
	 * @since 1.1.0
	 * @param object $sections The sections object.
	 * @return object
	 */
	public function fusion_options_integration( $sections ) {

		$fb_options = Fusion_Builder_Options::get_instance();
		$element_options = $fb_options->sections;
		$fields_array = fusion_get_fields_array( $sections );
		$has_addons_class = '';

		// Options tweaks.
		$option_panels = array(
			'shortcode_styling',
			'fusion_builder_addons',
		);
		if ( ! isset( $element_options['fusion_builder_addons'] ) ) {
			$has_addons_class = 'fusion-builder-no-addon-elements';
		}
		foreach ( $option_panels as $option_panel ) {
			if ( isset( $element_options[ $option_panel ] ) ) {
				ksort( $element_options[ $option_panel ]['fields'] );
				foreach ( $element_options[ $option_panel ]['fields'] as $key => $value ) {
					$element_options[ $option_panel ]['fields'][ $key ]['type'] = 'accordion';
					if ( isset( $element_options[ $option_panel ]['fields'][ $key ]['fields'] ) &&
						is_array( $element_options[ $option_panel ]['fields'][ $key ]['fields'] ) ) {
						foreach ( $element_options[ $option_panel ]['fields'][ $key ]['fields'] as $field_key => $field_value ) {
							if ( is_array( $fields_array ) && in_array( $field_key, $fields_array ) ) {

								// If the field already exist somewhere in $sections, then don't add twice.
								unset( $element_options[ $option_panel ]['fields'][ $key ]['fields'][ $field_key ] );
								if ( empty( $element_options[ $option_panel ]['fields'][ $key ]['fields'] ) ) {

									// If the accordian is now empty, remove it.
									unset( $element_options[ $option_panel ]['fields'][ $key ] );
								}
							}
						}
					}
				}
			}
		}
		$new_options['shortcode_styling'] = array(
			'label'    => esc_html__( 'Fusion Builder Elements', 'fusion-builder' ),
			'id'       => 'shortcode_styling',
			'is_panel' => 'true',
			'class'    => $has_addons_class,
			'priority' => 14,
			'icon'     => 'el-icon-check',
			'fields'   => array(),
		);
		$new_options['shortcode_styling']['fields']['fusion_builder_elements'] = array(
			'label'    => esc_html__( 'Fusion Builder Elements', 'fusion-builder' ),
			'id'       => 'fusion_builder_elements',
			'type'     => 'sub-section',
			'priority' => 14,
			'fields'   => $element_options['shortcode_styling']['fields'],
		);
		if ( isset( $element_options['fusion_builder_addons'] ) ) {
			$new_options['shortcode_styling']['fields']['fusion_builder_addons'] = array(
				'label'    => esc_html__( 'Add-on Elements', 'fusion-builder' ),
				'id'       => 'fusion_builder_addons',
				'type'     => 'sub-section',
				'priority' => 14,
				'fields'   => array_merge(
					array(
						'fusion_builder_addons_important_note_info' => array(
							'label'       => '',
							'description' => '<div class="fusion-redux-important-notice">' . __( '<strong>IMPORTANT NOTE:</strong> This panel holds element options for any Fusion Builder Add-on you have purchased from a 3rd party source. These are not made by ThemeFusion. If you require support for these elements, please contact the individual Add-on creator you purchased them from.', 'fusion-builder' ) . '</div>',
							'id'          => 'fusion_builder_addons_important_note_info',
							'type'        => 'custom',
						),
					),
					$element_options['fusion_builder_addons']['fields']
				),
			);
		}

		$sections->sections['shortcode_styling'] = $new_options['shortcode_styling'];

		return $sections;
	}

	/**
	 * Gets the $fusion_builder_redux private property.
	 *
	 * @access public
	 * @since 1.1.0
	 * @return object
	 */
	public function get_fusion_builder_redux() {
		if ( null === $this->fusion_builder_redux ) {
			$this->init_redux();
		}
		return $this->fusion_builder_redux;
	}
}
© 2026 MAINHACK