curver/functions/kirki/field/class-kirki-field-color-palette.php

26 lines
452 B
PHP
Raw Normal View History

2019-02-10 20:21:07 +01:00
<?php
/**
* Override field methods
*
* @package Kirki
* @subpackage Controls
2019-02-17 14:28:35 +01:00
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
2019-02-10 20:21:07 +01:00
* @license https://opensource.org/licenses/MIT
* @since 2.3.2
*/
/**
* Field overrides.
*/
class Kirki_Field_Color_Palette extends Kirki_Field {
/**
* Sets the control type.
*
* @access protected
*/
protected function set_type() {
$this->type = 'kirki-color-palette';
}
}