|
Server : LiteSpeed System : Linux premium152.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : idesfsze ( 1473) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/idesfsze/pandaexpressketo.com/wp-content/themes/jnews/class/Customizer/ |
<?php
/**
* @author : Jegtheme
*/
namespace JNews\Customizer;
/**
* Class Theme JNews Customizer
*/
class ImageOption extends CustomizerOptionAbstract {
public function set_option() {
$this->set_panel();
$this->set_section();
}
public function set_panel() {
$this->customizer->add_panel( [
'id' => 'jnews_image_panel',
'title' => esc_html__( 'JNews : Image & Gallery Option', 'jnews' ),
'description' => esc_html__( 'JNews Image Option', 'jnews' ),
'priority' => $this->id,
] );
}
public function set_section() {
$this->add_lazy_section( 'jnews_image_global_section', esc_html__( 'Image Load & Generator Setting', 'jnews' ), 'jnews_image_panel' );
$this->add_lazy_section( 'jnews_image_popup_section', esc_html__( 'Image Popup', 'jnews' ), 'jnews_image_panel' );
$this->add_lazy_section( 'jnews_image_gif_section', esc_html__( 'GIF Image', 'jnews' ), 'jnews_image_panel' );
$this->add_lazy_section( 'jnews_image_library_section', esc_html__( 'Image Library', 'jnews' ), 'jnews_image_panel' );
}
}