splits/functions/kirki/field/class-kirki-field-palette.php

26 lines
433 B
PHP
Raw Normal View History

2020-03-11 14:32:45 +01:00
<?php
/**
* Override field methods
*
* @package Kirki
* @subpackage Controls
* @copyright Copyright (c) 2020, David Vongries
2020-03-11 14:32:45 +01:00
* @license https://opensource.org/licenses/MIT
* @since 2.2.7
*/
/**
* Field overrides.
*/
class Kirki_Field_Palette extends Kirki_Field_Radio {
/**
* Sets the control type.
*
* @access protected
*/
protected function set_type() {
$this->type = 'kirki-palette';
}
}