boxcard/functions/kirki/controls/php/class-kirki-control-number.php

30 lines
495 B
PHP
Raw Normal View History

2019-08-11 11:08:52 +02:00
<?php
/**
* Customizer Control: number.
*
* @package Kirki
* @subpackage Controls
* @copyright Copyright (c) 2020, David Vongries
2020-02-25 16:44:51 +01:00
* @license https://opensource.org/licenses/MIT
2019-08-11 11:08:52 +02:00
* @since 1.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Create a simple number control
*/
class Kirki_Control_Number extends Kirki_Control_Base {
/**
* The control type.
*
* @access public
* @var string
*/
public $type = 'kirki-number';
}