class-kirki-field-sortable.php (537B)
1 <?php 2 /** 3 * Override field methods 4 * 5 * @package Kirki 6 * @subpackage Controls 7 * @copyright Copyright (c) 2016, Aristeides Stathopoulos 8 * @license http://opensource.org/licenses/https://opensource.org/licenses/MIT 9 * @since 2.3.2 10 */ 11 12 if ( ! class_exists( 'Kirki_Field_Sortable' ) ) { 13 14 /** 15 * Field overrides. 16 */ 17 class Kirki_Field_Sortable extends Kirki_Field { 18 19 /** 20 * Sets the control type. 21 * 22 * @access protected 23 */ 24 protected function set_type() { 25 26 $this->type = 'kirki-sortable'; 27 28 } 29 } 30 }