html-column-shipping-message.php
1 month ago
html-custom-services.php
1 month ago
html-menu-icon.php
1 month ago
html-shipping-method-scripts.php
1 month ago
html-shipping-method-settings.php
1 month ago
html-shipping-settings-advanced.php
1 month ago
html-shipping-settings-info-description.php
1 month ago
html-shipping-settings-info-description.php
33 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @var Metabox[] $metaboxes . |
| 4 | * |
| 5 | * @package Flexible Shipping |
| 6 | */ |
| 7 | |
| 8 | use WPDesk\FS\Info\Metabox; |
| 9 | |
| 10 | ?> |
| 11 | </table> |
| 12 | |
| 13 | <div class="fs-info-wrapper"> |
| 14 | <?php foreach ( $metaboxes as $metabox ) : ?> |
| 15 | <div id="<?php echo esc_attr( $metabox->get_id() ); ?>" |
| 16 | class="<?php echo esc_attr( $metabox->get_classes() ); ?>"> |
| 17 | <?php if ( $metabox->has_title() ) : ?> |
| 18 | <h3><?php echo esc_html( $metabox->get_title() ); ?></h3> |
| 19 | <?php endif; ?> |
| 20 | |
| 21 | <?php if ( $metabox->has_body() ) : ?> |
| 22 | <div class="content"><?php echo $metabox->get_body(); // phpcs:ignore ?></div> |
| 23 | <?php endif; ?> |
| 24 | |
| 25 | <?php if ( $metabox->has_footer() ) : ?> |
| 26 | <div class="footer"><?php echo wp_kses_post( $metabox->get_footer() ); ?></div> |
| 27 | <?php endif; ?> |
| 28 | </div> |
| 29 | <?php endforeach; ?> |
| 30 | </div> |
| 31 | |
| 32 | <table> |
| 33 |