LLMS_Metabox_Hidden_Field
LLMS_Metabox_Hidden_Field class.
Contents
Source Source
File: includes/admin/post-types/meta-boxes/fields/llms.class.meta.box.hidden.php
class LLMS_Metabox_Hidden_Field extends LLMS_Metabox_Field implements Meta_Box_Field_Interface {
/**
* Class constructor.
*
* @param array $_field Array containing information about field
*/
public function __construct( $_field ) {
$this->field = $_field;
}
/**
* Outputs the Html for the given field.
*
* @return void
*/
public function output() {
parent::output(); ?>
<input
name="<?php echo $this->field['id']; ?>"
id="<?php echo $this->field['id']; ?>"
<?php if ( isset( $this->field['required'] ) && $this->field['required'] ) : ?>
required="required"
<?php endif; ?>
type="hidden" value="<?php echo esc_attr( $this->field['value'] ); ?>">
<?php
parent::close_output();
}
}
Expand full source code Collapse full source code View on GitHub
Methods Methods
- __construct — Class constructor.
- output — Outputs the Html for the given field.