HEX
Server: Apache
System: Linux nc-ph-4101.simplemoneygoals.com 5.14.0-503.21.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Sun Jan 12 09:45:05 EST 2025 x86_64
User: dailygoldindex (1004)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/dailygoldindex/public_html/wp-content/themes/jnews/class/Customizer/LayoutOption.php
<?php
/**
 * @author : Jegtheme
 */

namespace JNews\Customizer;

/**
 * Class Theme JNews Customizer
 */
class LayoutOption extends CustomizerOptionAbstract {
	/** section */

	public function __construct( $customizer, $id ) {
		parent::__construct( $customizer, $id );
	}

	/**
	 * Set Section
	 */
	public function set_option() {
		$this->set_panel();
		$this->set_section();
	}

	public function set_panel() {
		/** panel */
		$this->customizer->add_panel( [
			'id'          => 'jnews_layout_panel',
			'title'       => esc_html__( 'JNews : Layout, Color & Scheme', 'jnews' ),
			'description' => esc_html__( 'JNews Layout Option', 'jnews' ),
			'priority'    => $this->id,
		] );
	}

	public function set_section() {
		$this->add_lazy_section( 'jnews_global_layout_section', esc_html__( 'Layout & Background', 'jnews' ), 'jnews_layout_panel' );
		$this->add_lazy_section( 'jnews_global_sidefeed_section', esc_html__( 'Sidefeed Setting', 'jnews' ), 'jnews_layout_panel' );
		$this->add_lazy_section( 'jnews_global_color_section', esc_html__( 'Scheme & Website Color', 'jnews' ), 'jnews_layout_panel', [
			'jnews_global_layout_section',
		] );
		$this->add_lazy_section( 'jnews_global_browser_section', esc_html__( 'Mobile Browser Color', 'jnews' ), 'jnews_layout_panel' );
	}
}