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(); echo '<div class="llms-repeater-model" id="' . $this->field['id'] . '-model" style="display:none;">' . $this->get_row( 'model' ) . '</div>'; echo '<div class="llms-collapsible-group llms-repeater-rows">' . $this->get_rows() . '</div>'; echo '<footer class="llms-mb-repeater-footer">'; echo $this->get_button(); echo '</footer>'; echo '<input class="llms-repeater-field-handler" type="hidden" value="' . $this->field['handler'] . '">'; parent::close_output(); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.11.0 | Introduced. |