Sindbad~EG File Manager
<?php
namespace ThimPress\Customizer\Control;
use ThimPress\Customizer\Modules\Base;
defined( 'ABSPATH' ) || exit;
class Checkbox_Switch extends Base {
public $type = 'thim-switch';
public function to_json() {
parent::to_json();
$this->json['checkboxType'] = str_ireplace( 'thim-', '', $this->type );
$this->json['defaultChoices'] = array(
'on' => 'On',
'off' => 'Off',
);
}
protected function content_template() {
?>
<div class="thim-{{ data.checkboxType }}-control thim-{{ data.checkboxType }}">
<# if ( data.label || data.description ) { #>
<div class="thim-control-label">
<# if ( data.label ) { #>
<label class="customize-control-title" for="thim_{{ data.checkboxType }}_{{ data.id }}">
{{{ data.label }}}
</label>
<# } #>
<# if ( data.description ) { #>
<span class="description customize-control-description">{{{ data.description }}}</span>
<# } #>
</div>
<# } #>
<div class="thim-control-form">
<input class="screen-reader-text thim-toggle-switch-input" {{{ data.inputAttrs }}} name="thim_{{ data.checkboxType }}_{{ data.id }}" id="thim_{{ data.checkboxType }}_{{ data.id }}" type="checkbox" value="{{ data.value }}" {{{ data.link }}}<# if ( '1' == data.value ) { #> checked<# } #> />
<label class="thim-toggle-switch-label" for="thim_{{ data.checkboxType }}_{{ data.id }}">
<# if ('switch' === data.checkboxType) { #>
<span class="toggle-on">
<# data.choices.on = data.choices.on || data.defaultChoices.on #>
{{ data.choices.on }}
</span>
<span class="toggle-off">
<# data.choices.off = data.choices.off || data.defaultChoices.off #>
{{ data.choices.off }}
</span>
<# } #>
</label>
</div>
</div>
<?php
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists