mirror of
https://gh.wpcy.net/https://github.com/presscustomizr/hueman.git
synced 2026-04-27 21:38:08 +08:00
30 lines
No EOL
694 B
PHP
30 lines
No EOL
694 B
PHP
<?php
|
|
/*
|
|
* @since 4.0
|
|
*/
|
|
if ( ! class_exists( 'HU_Customize_Modules' ) ) :
|
|
class HU_Customize_Modules extends HU_controls {
|
|
public $module_type;
|
|
public $syncCollection;
|
|
public $syncSektion;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
*/
|
|
public function __construct($manager, $id, $args = array()) {
|
|
//let the parent do what it has to
|
|
parent::__construct($manager, $id, $args );
|
|
}
|
|
|
|
public function render_content(){}
|
|
|
|
public function to_json() {
|
|
parent::to_json();
|
|
$this->json['syncCollection'] = $this->syncCollection;
|
|
$this->json['syncSektion'] = $this->syncSektion;
|
|
$this->json['module_type'] = $this->module_type;
|
|
}
|
|
|
|
}
|
|
endif; |