curver/functions/kirki/field/class-kirki-field-textarea.php

29 lines
493 B
PHP
Raw Normal View History

2019-02-10 20:21:07 +01:00
<?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_Textarea extends Kirki_Field_Kirki_Generic {
/**
* Sets the $choices
*
* @access protected
*/
protected function set_choices() {
$this->choices = array(
'element' => 'textarea',
'rows' => 5,
);
}
}