setup_actions(); } return $instance; } /** * Constructor method. * * @since 1.0 * @access private * @return void */ private function __construct() {} /** * Sets up initial actions. * * @since 1.0 * @access private * @return void */ private function setup_actions() { // Register panels, sections, settings, controls, and partials. add_action( 'customize_register', array( $this, 'sections' ) ); } /** * Sets up the customizer sections. * * @since 1.0 * @access public * @param object $manager * @return void */ public function sections( $manager ) { // Load custom sections. require_once( HYBRIDEXTEND_INC . 'admin/trt-customize-pro/section-pro.php' ); // Register custom section types. $manager->register_section_type( 'Hoot_Premium_Customize_Section_Pro' ); // Register sections. $manager->add_section( new Hoot_Premium_Customize_Section_Pro( $manager, 'hoot_premium', array( 'title' => esc_html__( 'Brigsby Premium', 'brigsby' ), 'priority' => 1, 'pro_text' => esc_html__( 'Premium', 'brigsby' ), 'pro_url' => esc_url( admin_url('themes.php?page=brigsby-premium') ), 'demo' => 'https://demo.wphoot.com/brigsby/', 'docs' => 'https://wphoot.com/support/', 'rating' => 'https://wordpress.org/support/view/theme-reviews/brigsby#postform', ) ) ); } } // Doing this customizer thang! Hoot_Premium_Customize::get_instance();