✏️ 正在编辑: repeater-fields.php
路径:
/home/lssfapb/www/wp-content/themes/Avada/includes/lib/inc/fusion-app/templates/repeater-fields.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * The toolbar template file. * * @since 2.0 * @package fusion-library */ ?> <script type="text/template" id="fusion-app-repeater-fields"> <div class="repeater-field"> <# var repeaterIndex = 'undefined' !== typeof rowId ? rowId : 0; param = field; option_value = 'undefined' !== value ? value : param.value; hidden = 'undefined' !== typeof param.hidden ? ' hidden' : ''; childDependency = 'undefined' !== typeof param.child_dependency ? ' has-child-dependency' : ''; optionId = 'undefined' !== typeof param.param_name ? param.param_name : param.id; optionTitle = 'undefined' !== typeof param.heading ? param.heading : param.label; context = 'undefined' !== typeof context ? context : ''; if ( param.type == 'select' || param.type == 'multiple_select' || param.type == 'radio_button_set' || param.type == 'checkbox_button_set' || param.type == 'filter' || param.type === 'ajax_select' ) { option_value = 'undefined' === typeof option_value || '' === option_value ? param.default : option_value; } else if ( 'undefined' === typeof option_value && 'undefined' !== typeof param.value ) { option_value = param.value; } #> <li data-option-id="{{ optionId }}" data-type="{{ context }}" class="fusion-builder-option {{ param.type }}{{ hidden }}{{ childDependency }}" style="display:inline-block" > <div class="option-details"> <# if ( 'undefined' !== typeof optionTitle ) { #> <h3>{{ optionTitle }}</h3> <# }; #> <# if ( 'undefined' !== typeof param.description ) { #> <p class="description">{{{ param.description }}}</p> <# }; #> </div> <div class="option-field fusion-builder-option-container"> <?php $fields = [ 'textfield', 'colorpickeralpha', 'select', 'upload_object', 'textarea', 'radio_button_set', 'multiple_select', 'ajax_select', 'iconpicker', ]; // Redux on left, template on right. $field_replacement = [ 'text' => 'textfield', 'media' => 'upload_object', 'upload' => 'upload_object', 'radio-buttonset' => 'radio_button_set', ]; foreach ( $field_replacement as $redux => $option ) { $fields[] = [ $redux, FUSION_LIBRARY_PATH . '/inc/fusion-app/templates/options/' . str_replace( '_', '-', $option ) . '.php', ]; } ?> <?php $fields = apply_filters( 'fusion_builder_repeater_fields', $fields ); ?> <?php foreach ( $fields as $field_type ) : ?> <?php if ( is_array( $field_type ) && ! empty( $field_type ) ) : ?> <# if ( '<?php echo esc_attr( $field_type[0] ); ?>' === param.type ) { #> <?php include wp_normalize_path( $field_type[1] ); ?> <# }; #> <?php else : ?> <# if ( '<?php echo esc_attr( $field_type ); ?>' === param.type ) { #> <?php include FUSION_LIBRARY_PATH . '/inc/fusion-app/templates/options/' . str_replace( '_', '-', $field_type ) . '.php'; ?> <# } #> <?php endif; ?> <?php endforeach; ?> </div> </li> </div> </script>
💾 保存文件
← 返回文件管理器