1 | <div class="uix-field-wrapper"> |
||
2 | <ul class="ui-tab-nav"> |
||
3 | <?php if ( class_exists( 'LSX_Currencies' ) ) { ?> |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
4 | <li><a href="#ui-currencies" class="active"><?php esc_html_e( 'Currencies', 'lsx-currencies' ); ?></a></li> |
||
5 | <?php } ?> |
||
6 | </ul> |
||
7 | |||
8 | <?php if ( class_exists( 'LSX_Currencies' ) ) { ?> |
||
0 ignored issues
–
show
|
|||
9 | <div id="ui-currencies" class="ui-tab active"> |
||
10 | <table class="form-table"> |
||
11 | <tbody> |
||
12 | <?php do_action( 'lsx_framework_dashboard_tab_content', 'currency_switcher' ); ?> |
||
13 | </tbody> |
||
14 | </table> |
||
15 | </div> |
||
16 | <?php } ?> |
||
17 | |||
18 | <?php do_action( 'lsx_framework_dashboard_tab_bottom', 'general' ); ?> |
||
19 | </div> |
||
20 |