File: /home/dailygoldindex/www/wp-content/themes/jnews/class/Customizer/CustomizerOptionAbstract.php
<?php
/**
* @author : Jegtheme
*/
namespace JNews\Customizer;
/**
* Class Theme JNews Customizer
*/
abstract class CustomizerOptionAbstract {
/**
* @var Customizer
*/
protected $customizer;
protected $id;
public function __construct( $customizer, $id ) {
$this->id = $id;
$this->customizer = $customizer;
$this->set_option();
}
public function add_lazy_section( $id, $title, $panel, $dependency = [] ) {
$section = [
'id' => $id,
'title' => $title,
'panel' => $panel,
'priority' => $this->id,
'type' => 'jnews-lazy-section',
'dependency' => $dependency,
];
$this->customizer->add_section( $section );
}
public function add_link_section( $id, $title, $panel, $url ) {
$section = [
'id' => $id,
'title' => $title,
'panel' => $panel,
'priority' => $this->id,
'type' => 'jnews-link-section',
'url' => $url,
];
$this->customizer->add_section( $section );
}
abstract public function set_option();
}