Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
themes
/
bella-beauty
/
kits
/
settings
/
lazyload-widget
/
✏️
Editing: preloader.php
<?php namespace BellaBeautySpace\Kits\Settings\LazyloadWidget; use BellaBeautySpace\Kits\Settings\Base\Settings_Tab_Base; use Elementor\Controls_Manager; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * LazyLoad Widget Preloader settings. */ class Preloader extends Settings_Tab_Base { /** * Get toggle name. * * Retrieve the toggle name. * * @return string Toggle name. */ public static function get_toggle_name() { return 'lazyload_widget_preloader'; } /** * Get title. * * Retrieve the toggle title. */ public function get_title() { return esc_html__( 'Preloader', 'bella-beauty' ); } /** * Get control ID prefix. * * Retrieve the control ID prefix. * * @return string Control ID prefix. */ protected static function get_control_id_prefix() { $toggle_name = self::get_toggle_name(); return parent::get_control_id_prefix() . "_{$toggle_name}"; } /** * Register toggle controls. * * Registers the controls of the kit settings tab toggle. */ protected function register_toggle_controls() { $this->add_control( 'icon_heading_control', array( 'label' => __( 'Icon', 'bella-beauty' ), 'type' => Controls_Manager::HEADING, ) ); $this->add_control( 'icon', array( 'label' => __( 'Icon', 'bella-beauty' ), 'label_block' => false, 'type' => Controls_Manager::ICONS, 'skin' => 'inline', 'default' => array( 'value' => 'fas fa-spinner', 'library' => 'fa-solid', ), ) ); $this->add_responsive_control( 'icon_size', array( 'label' => esc_html__( 'Icon Size', 'bella-beauty' ), 'type' => Controls_Manager::SLIDER, 'size_units' => array( 'px' ), 'range' => array( 'px' => array( 'max' => 100, 'min' => 0, ), ), 'selectors' => array( ':root' => '--' . $this->get_control_prefix_parameter( '', 'icon_size' ) . ': {{SIZE}}{{UNIT}};', ), ) ); $this->add_control( 'icon_color', array( 'label' => esc_html__( 'Icon Color', 'bella-beauty' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( ':root' => '--' . $this->get_control_prefix_parameter( '', 'icon_color' ) . ': {{VALUE}};', ), ) ); $this->add_control( 'icon_animation_type', array( 'label' => __( 'Icon Animation Type', 'bella-beauty' ), 'label_block' => false, 'type' => Controls_Manager::SELECT, 'options' => array( 'none' => __( 'None', 'bella-beauty' ), 'lazyLoadWidgetBlink' => __( 'Blink', 'bella-beauty' ), 'lazyLoadWidgetSpinner' => __( 'Spin', 'bella-beauty' ), ), 'default' => 'lazyLoadWidgetSpinner', 'selectors' => array( ':root' => '--' . $this->get_control_prefix_parameter( '', 'icon_animation_type' ) . ': {{VALUE}};', ), ) ); $this->add_control( 'icon_animation_speed', array( 'label' => esc_html__( 'Icon Animation Speed', 'bella-beauty' ) . ' (ms)', 'type' => Controls_Manager::NUMBER, 'step' => 100, 'selectors' => array( ':root' => '--' . $this->get_control_prefix_parameter( '', 'icon_animation_speed' ) . ': {{VALUE}}ms;', ), ) ); $this->add_control( 'container_divider_control', array( 'type' => Controls_Manager::DIVIDER, 'style' => 'thick', ) ); $this->add_control( 'container_heading_control', array( 'label' => __( 'Container', 'bella-beauty' ), 'type' => Controls_Manager::HEADING, ) ); $this->add_responsive_control( 'height', array( 'label' => __( 'Height', 'bella-beauty' ), 'type' => Controls_Manager::SLIDER, 'size_units' => array( 'px', 'vw', 'vh' ), 'range' => array( 'px' => array( 'min' => 0, 'max' => 500, ), 'vw' => array( 'min' => 0, 'max' => 100, ), 'vh' => array( 'min' => 0, 'max' => 100, ), ), 'selectors' => array( ':root' => '--' . $this->get_control_prefix_parameter( '', 'height' ) . ': {{SIZE}}{{UNIT}};', ), ) ); $this->add_var_group_control( '', self::VAR_BACKGROUND ); $this->add_var_group_control( 'overlay', self::VAR_BACKGROUND, array( 'fields_options' => array( 'background' => array( 'label' => esc_html_x( 'Overlay Background Type', 'Background Control', 'bella-beauty' ), ), ), 'separator' => 'before', ) ); $this->add_var_group_control( '', self::VAR_BORDER, array( 'fields_options' => array( 'width' => array( 'label' => esc_html__( 'Border Width', 'bella-beauty' ), ), 'color' => array( 'label' => esc_html__( 'Border Color', 'bella-beauty' ), 'condition' => array( 'border!' => array( '', 'none', ), ), ), ), 'separator' => 'before', ) ); $this->add_control( 'bd_radius', array( 'label' => esc_html__( 'Border Radius', 'bella-beauty' ), 'type' => Controls_Manager::SLIDER, 'size_units' => array( 'px', '%' ), 'range' => array( 'px' => array( 'max' => 100, 'min' => 0, ), '%' => array( 'max' => 50, 'min' => 0, ), ), 'selectors' => array( ':root' => '--' . $this->get_control_prefix_parameter( '', 'bd_radius' ) . ': {{SIZE}}{{UNIT}};', ), ) ); $this->add_var_group_control( '', self::VAR_BOX_SHADOW ); } }
💾 Save
❌ Cancel