Server : nginx/1.24.0 System : Linux ip-172-31-33-48 6.14.0-1011-aws #11~24.04.1-Ubuntu SMP Fri Aug 1 02:07:25 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE Directory : /var/www/html/wp-content/themes/pridmag/inc/customizer/custom-controls/ |
Upload File : |
<?php /** * Singleton class for handling the theme's customizer integration. * * @since 1.0.0 * @access public */ final class PridMag_Upsell_Customize { /** * Returns the instance. * * @since 1.0.0 * @access public * @return object */ public static function get_instance() { static $instance = null; if ( is_null( $instance ) ) { $instance = new self; $instance->setup_actions(); } return $instance; } /** * Constructor method. * * @since 1.0.0 * @access private * @return void */ private function __construct() {} /** * Sets up initial actions. * * @since 1.0.0 * @access private * @return void */ private function setup_actions() { // Register panels, sections, settings, controls, and partials. add_action( 'customize_register', array( $this, 'sections' ) ); // Register scripts and styles for the controls. add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_control_scripts' ), 0 ); } /** * Sets up the customizer sections. * * @since 1.0.0 * @access public * @param object $manager * @return void */ public function sections( $manager ) { // Load custom sections. require_once( trailingslashit( get_template_directory() ) . '/inc/customizer/custom-controls/section-pro.php' ); // Register custom section types. $manager->register_section_type( 'PridMag_Upsell_Customize_Section_Pro' ); // Register sections. $manager->add_section( new PridMag_Upsell_Customize_Section_Pro( $manager, 'pridmag_upsell', array( 'title' => esc_html__( 'View Pro Version', 'pridmag' ), 'pro_text' => esc_html__( 'PridMag Pro', 'pridmag' ), 'pro_url' => 'https://themezhut.com/themes/pridmag-pro/', 'priority' => 199 ) ) ); } /** * Loads theme customizer CSS. * * @since 1.0.0 * @access public * @return void */ public function enqueue_control_scripts() { wp_enqueue_script( 'pridmag-upsell-controls', trailingslashit( get_template_directory_uri() ) . '/inc/customizer/assets/js/customize-controls.js', array( 'customize-controls' ) ); } } // Doing this customizer thang! PridMag_Upsell_Customize::get_instance();