Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Metabox_Repeater_Field::output_row( $index )
Contents
Source Source
File: includes/admin/post-types/meta-boxes/fields/llms.class.meta.box.repeater.php
private function output_row( $index ) {
?>
<div class="llms-collapsible llms-repeater-row" data-row-order="<?php echo esc_attr( $index ); ?>">
<header class="llms-collapsible-header">
<div class="d-2of3">
<h3 class="llms-repeater-title"><?php echo esc_html( $this->field['header']['default'] ); ?></h3>
</div>
<div class="d-1of3 d-right">
<span class="dashicons dashicons-arrow-down"></span>
<span class="dashicons dashicons-arrow-up"></span>
<span class="dashicons dashicons-menu llms-drag-handle"></span>
<span class="dashicons dashicons-no llms-repeater-remove"></span>
</div>
</header>
<section class="llms-collapsible-body">
<ul class="llms-mb-repeater-fields">
<?php foreach ( $this->field['fields'] as $field ) : ?>
<?php $this->output_sub_field( $field, $index ); ?>
<?php endforeach; ?>
</ul>
</section>
</div>
<?php
}
Expand full source code Collapse full source code View on GitHub