![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/matelopsrp.com/wp-content/themes/vip-business/inc/customizer/ |
<?php /** * Hero Content Options * * @package Vip_Business */ class Vip_Business_Hero_Content_Options { public function __construct() { // Register Hero Content Options. add_action( 'customize_register', array( $this, 'register_options' ), 99 ); // Add default options. add_filter( 'vip_business_customizer_defaults', array( $this, 'add_defaults' ) ); } /** * Add options to defaults */ public function add_defaults( $default_options ) { $defaults = array( 'vip_business_hero_content_visibility' => 'disabled', 'vip_business_hero_content_position' => 'content-position-right', 'vip_business_hero_content_text_align' => 'default', ); $updated_defaults = wp_parse_args( $defaults, $default_options ); return $updated_defaults; } /** * Add layouts section and its controls */ public function register_options( $wp_customize ) { Vip_Business_Customizer_Utilities::register_option( array( 'settings' => 'vip_business_hero_content_visibility', 'type' => 'select', 'sanitize_callback' => 'vip_business_sanitize_select', 'label' => esc_html__( 'Visible On', 'vip-business' ), 'section' => 'vip_business_ss_hero_content', 'choices' => Vip_Business_Customizer_Utilities::section_visibility(), ) ); Vip_Business_Customizer_Utilities::register_option( array( 'custom_control' => 'Vip_Business_Dropdown_Posts_Custom_Control', 'sanitize_callback' => 'absint', 'settings' => 'vip_business_hero_content_page', 'label' => esc_html__( 'Select Page', 'vip-business' ), 'section' => 'vip_business_ss_hero_content', 'active_callback' => array( $this, 'is_hero_content_visible' ), 'input_attrs' => array( 'post_type' => 'page', 'posts_per_page' => -1, 'orderby' => 'name', 'order' => 'ASC', ), ) ); Vip_Business_Customizer_Utilities::register_option( array( 'type' => 'text', 'sanitize_callback' => 'vip_business_text_sanitization', 'settings' => 'vip_business_hero_content_custom_subtitle', 'label' => esc_html__( 'Top Subtitle', 'vip-business' ), 'section' => 'vip_business_ss_hero_content', 'active_callback' => array( $this, 'is_hero_content_visible' ), ) ); } /** * Hero Content visibility active callback. */ public function is_hero_content_visible( $control ) { return ( vip_business_display_section( $control->manager->get_setting( 'vip_business_hero_content_visibility' )->value() ) ); } } /** * Initialize class */ $vip_business_ss_hero_content = new Vip_Business_Hero_Content_Options();