Files
full-screen-morphing-search/assets/kirki/field/class-kirki-field-toggle.php
T
2019-04-30 02:23:07 +03:00

26 lines
442 B
PHP

<?php
/**
* Override field methods
*
* @package Kirki
* @subpackage Controls
* @copyright Copyright (c) 2017, Aristeides Stathopoulos
* @license https://opensource.org/licenses/MIT
* @since 2.2.7
*/
/**
* Field overrides.
*/
class Kirki_Field_Toggle extends Kirki_Field_Checkbox {
/**
* Sets the control type.
*
* @access protected
*/
protected function set_type() {
$this->type = 'kirki-toggle';
}
}