1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?php
/**
* HTML hidden input property.
*/
class Papi_Property_Hidden extends Papi_Property_String {
/**
* Don't display the property in WordPress admin.
*
* @var bool
*/
protected $display = false;
/**
* The input type to use.
*
* @var string
*/
public $input_type = 'hidden';
}