| Server IP : 172.64.80.1 / Your IP : 216.73.216.175 Web Server : LiteSpeed System : Linux srv13.swhc.ca 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64 User : hongluck ( 2522) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/hongluck/public_html/wp-content/themes/oneline-lite/customizer/pro-button/ |
Upload File : |
<?php
/**
* Singleton class for handling the theme's customizer integration.
*
* @since 1.0.0
* @access public
*/
final class Oneline_Lite_Pro_Button_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() ) . 'customizer/pro-button/section-pro.php' );
// Register custom section types.
$manager->register_section_type( 'Oneline_Lite_Button_Customize_Section' );
$manager->add_section(
new Oneline_Lite_Button_Customize_Section(
$manager,
'pro_button',
array(
'title' => esc_html__( 'Unlock Pro Features', 'oneline-lite' ),
'pro_text' => esc_html__( 'Go Pro', 'oneline-lite' ),
'pro_url' => '//themehunk.com/product/oneline-single-page-wordpress-theme/',
'priority' => 1,
)
)
);
$manager->add_section(
new Oneline_Lite_Button_Customize_Section(
$manager,
'Docs_button',
array(
'title' => esc_html__( 'View Documentation', 'oneline-lite' ),
'pro_text' => esc_html__( 'View Docs', 'oneline-lite' ),
'pro_url' => '//www.themehunk.com/docs/oneline-lite-theme/',
'priority' => 2,
)
)
);
}
/**
* Loads theme customizer CSS.
*
* @since 1.0.0
* @access public
* @return void
*/
public function enqueue_control_scripts() {
wp_enqueue_script( 'oneline-lite-customize-controls', trailingslashit( get_template_directory_uri() ) . 'customizer/pro-button/customize-controls.js', array( 'customize-controls' ) );
wp_enqueue_style( 'oneline-lite-customize-controls', trailingslashit( get_template_directory_uri() ) . 'customizer/pro-button/customize-controls.css' );
}
}
// Doing this customizer thang!
Oneline_Lite_Pro_Button_Customize::get_instance();