Initial commit.

This commit is contained in:
2025-11-24 21:33:55 +00:00
parent 14b7ade051
commit d6e9d316bc
8974 changed files with 1423277 additions and 0 deletions

View File

@@ -0,0 +1,93 @@
<?php
/**
* Singleton class for handling the theme's customizer integration.
*
* @since 1.0.0
* @access public
*/
final class Halloween_Gift_Store_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.
load_template( trailingslashit( get_template_directory() ) . '/inc/section-pro/section-pro.php' );
// Register custom section types.
$manager->register_section_type( 'Halloween_Gift_Store_Customize_Section_Pro' );
// Register sections.
$manager->add_section( new Halloween_Gift_Store_Customize_Section_Pro( $manager,'halloween_gift_store_go_pro', array(
'priority' => 1,
'title' => esc_html__( 'Halloween Gift Store Pro', 'halloween-gift-store' ),
'pro_text' => esc_html__( 'Upgrade Pro', 'halloween-gift-store' ),
'pro_url' => esc_url('https://www.buywptemplates.com/products/halloween-wordpress-theme'),
) ) );
}
/**
* Loads theme customizer CSS.
*
* @since 1.0.0
* @access public
* @return void
*/
public function enqueue_control_scripts() {
wp_enqueue_style( 'halloween-gift-store-customize-controls', trailingslashit( get_template_directory_uri() ) . '/css/customize-controls.css' );
}
}
// Doing this customizer thang!
Halloween_Gift_Store_Customize::get_instance();

View File

@@ -0,0 +1,73 @@
<?php
/**
* Pro customizer section.
*
* @since 1.0.0
* @access public
*/
class Halloween_Gift_Store_Customize_Section_Pro extends WP_Customize_Section {
/**
* The type of customize section being rendered.
*
* @since 1.0.0
* @access public
* @var string
*/
public $type = 'halloween-gift-store';
/**
* Custom button text to output.
*
* @since 1.0.0
* @access public
* @var string
*/
public $pro_text = '';
/**
* Custom pro button URL.
*
* @since 1.0.0
* @access public
* @var string
*/
public $pro_url = '';
/**
* Add custom parameters to pass to the JS via JSON.
*
* @since 1.0.0
* @access public
* @return void
*/
public function json() {
$json = parent::json();
$json['pro_text'] = $this->pro_text;
$json['pro_url'] = esc_url( $this->pro_url );
return $json;
}
/**
* Outputs the Underscore.js template.
*
* @since 1.0.0
* @access public
* @return void
*/
protected function render_template() { ?>
<li id="accordion-section-{{ data.id }}" class="accordion-section control-section control-section-{{ data.type }} cannot-expand">
<h3 class="accordion-section-title">
{{ data.title }}
<# if ( data.pro_text && data.pro_url ) { #>
<a target="_blank" href="{{ data.pro_url }}" class="button button-secondary alignright">{{ data.pro_text }}</a>
<# } #>
</h3>
</li>
<?php }
}