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::get_row( $index )
Contents
Source Source
File: includes/admin/post-types/meta-boxes/fields/llms.class.meta.box.repeater.php
</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
}
/**
* Get repeater sub field html output
*
* @return string
* @since 3.11.0
* @version 3.17.3
*/
private function output_sub_field( $field, $index ) {
$field['id'] .= '_' . $index;
Expand full source code Collapse full source code View on GitHub