Issues (575)

includes/settings/general.php (5 issues)

1
<div class="uix-field-wrapper">
2
	<ul class="ui-tab-nav">
3
		<?php if ( class_exists( 'LSX_Currencies' ) ) { ?>
0 ignored issues
show
This file is missing a doc comment.
Loading history...
Expected 0 spaces after opening bracket; 1 found
Loading history...
Expected 0 spaces before closing bracket; 1 found
Loading history...
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
Expected 0 spaces after opening bracket; 1 found
Loading history...
Expected 0 spaces before closing bracket; 1 found
Loading history...
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