LLMS_Metabox_Repeater_Field::output()
Outputs the Html for the given field
Return Return
(void)
Source Source
File: includes/admin/post-types/meta-boxes/fields/llms.class.meta.box.repeater.php
public function output() {
global $post;
parent::output();
?>
<div class="llms-repeater-model" id="<?php echo esc_attr( $this->field['id'] ); ?>-model" style="display:none;">
<?php $this->output_row( 'model' ); ?>
</div>
<div class="llms-collapsible-group llms-repeater-rows"></div>
<footer class="llms-mb-repeater-footer">
<?php $this->output_button(); ?>
</footer>
<input class="llms-repeater-field-handler" type="hidden" value="<?php echo esc_attr( $this->field['handler'] ); ?>">
<?php
parent::close_output();
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.11.0 | Introduced. |