group-compat.php
8 years ago
group-extra.php
8 years ago
group-fields.php
8 years ago
group-form.php
8 years ago
group-query.php
8 years ago
group-slideshow.php
7 years ago
group-style.php
8 years ago
option-background.php
8 years ago
option-boilerplate.php
9 years ago
option-category.php
8 years ago
option-classes.php
8 years ago
option-client-section.php
7 years ago
option-color.php
8 years ago
option-content.php
7 years ago
option-divi.php
8 years ago
option-form-ajax.php
9 years ago
option-form-category.php
8 years ago
option-id.php
8 years ago
option-layout.php
8 years ago
option-limit.php
8 years ago
option-order.php
8 years ago
option-pagination.php
8 years ago
option-read-more-page.php
8 years ago
option-select.php
8 years ago
option-slideshow-behavior.php
8 years ago
option-slideshow-breakpoints.php
7 years ago
option-slideshow-navigation.php
7 years ago
option-slideshow-num.php
7 years ago
option-slideshow-transition.php
7 years ago
option-slideshow-type.php
7 years ago
option-template-list.php
8 years ago
option-thumbnail.php
8 years ago
option-title.php
8 years ago
template-input.php
8 years ago
template-not-found.php
8 years ago
template-options.php
8 years ago
view-mode.php
8 years ago
view-name.php
9 years ago
view-shortcode.php
8 years ago
group-style.php
52 lines
| 1 | <?php |
| 2 | $then_classes = array( |
| 3 | 'then', |
| 4 | 'then_display', |
| 5 | 'then_form', |
| 6 | 'then_slideshow', |
| 7 | 'then_not_single_template', |
| 8 | apply_filters( 'wpmtst_view_section', '', 'style' ), |
| 9 | ); |
| 10 | ?> |
| 11 | <div class="<?php echo esc_attr( join( array_filter( $then_classes ), ' ' ) ); ?>" style="display: none;"> |
| 12 | <h3> |
| 13 | <?php /* translators: On the Views admin screen. */ ?> |
| 14 | <?php _e( 'Style', 'strong-testimonials' ); ?> |
| 15 | </h3> |
| 16 | <table class="form-table multiple group-style"> |
| 17 | <?php do_action( 'wpmtst_view_editor_before_template_list' ); ?> |
| 18 | <tr class="then then_display then_not_form then_slideshow" style="display: none;"> |
| 19 | <?php |
| 20 | $current_mode = 'template'; |
| 21 | $current_type = 'display'; |
| 22 | include( 'option-template-list.php' ); |
| 23 | ?> |
| 24 | </tr> |
| 25 | <tr class="then then_not_display then_form then_not_slideshow" style="display: none;"> |
| 26 | <?php |
| 27 | $current_mode = 'form-template'; |
| 28 | $current_type = 'form'; |
| 29 | include( 'option-template-list.php' ); |
| 30 | ?> |
| 31 | </tr> |
| 32 | <?php do_action( 'wpmtst_view_editor_before_layout' ); ?> |
| 33 | <tr class="then then_display then_not_form then_not_slideshow" style="display: none;"> |
| 34 | <?php include( 'option-layout.php' ); ?> |
| 35 | </tr> |
| 36 | <?php do_action( 'wpmtst_view_editor_before_background' ); ?> |
| 37 | |
| 38 | <tr id="group-style-option-background" class="then then_display then_form then_slideshow" style="display: none;"> |
| 39 | <?php include( 'option-background.php' ); ?> |
| 40 | </tr> |
| 41 | <tr id="group-style-option-color" class="then then_display then_form then_slideshow" style="display: none;"> |
| 42 | <?php include( 'option-color.php' ); ?> |
| 43 | </tr> |
| 44 | |
| 45 | <?php do_action( 'wpmtst_view_editor_before_classes' ); ?> |
| 46 | <tr class="then then_display then_form then_slideshow" style="display: none;"> |
| 47 | <?php include( 'option-classes.php' ); ?> |
| 48 | </tr> |
| 49 | <?php do_action( 'wpmtst_view_editor_after_style_section' ); ?> |
| 50 | </table> |
| 51 | </div> |
| 52 |