Issues (1030)

includes/partials/activity.php (37 issues)

1
<div class="uix-field-wrapper">
2
3
	<ul class="ui-tab-nav">
4
		<li><a href="#ui-general" class="active"><?php esc_html_e('General','tour-operator'); ?></a></li>
0 ignored issues
show
This file is missing a doc comment.
Loading history...
Expected 1 spaces after opening parenthesis; 0 found
Loading history...
Expected 1 spaces before closing parenthesis; 0 found
Loading history...
5
		<?php if(class_exists('LSX_TO_Search')) { ?>
0 ignored issues
show
Space after opening control structure is required
Loading history...
No space before opening parenthesis is prohibited
Loading history...
No space after opening parenthesis is prohibited
Loading history...
Expected 1 space(s) after IF keyword; 0 found
Loading history...
Expected 1 spaces after opening parenthesis; 0 found
Loading history...
Expected 1 spaces before closing parenthesis; 0 found
Loading history...
No space before closing parenthesis is prohibited
Loading history...
6
			<li><a href="#ui-search"><?php esc_html_e('Search','tour-operator'); ?></a></li>
0 ignored issues
show
Expected 1 spaces after opening parenthesis; 0 found
Loading history...
Expected 1 spaces before closing parenthesis; 0 found
Loading history...
7
		<?php } ?>
8
		<li><a href="#ui-placeholders"><?php esc_html_e('Placeholders','tour-operator'); ?></a></li>
0 ignored issues
show
Expected 1 spaces after opening parenthesis; 0 found
Loading history...
Expected 1 spaces before closing parenthesis; 0 found
Loading history...
9
		<li><a href="#ui-archives"><?php esc_html_e('Archives','tour-operator'); ?></a></li>
0 ignored issues
show
Expected 1 spaces after opening parenthesis; 0 found
Loading history...
Expected 1 spaces before closing parenthesis; 0 found
Loading history...
10
		<li><a href="#ui-single"><?php esc_html_e('Single','tour-operator'); ?></a></li>
0 ignored issues
show
Expected 1 spaces after opening parenthesis; 0 found
Loading history...
Expected 1 spaces before closing parenthesis; 0 found
Loading history...
11
	</ul>
12
13
	<div id="ui-general" class="ui-tab active">
14
		<table class="form-table">
15
			<tbody>
16
			<?php do_action('lsx_to_framework_activity_tab_content','activity','general'); ?>
0 ignored issues
show
Expected 1 spaces after opening parenthesis; 0 found
Loading history...
Expected 1 spaces before closing parenthesis; 0 found
Loading history...
17
			</tbody>
18
		</table>
19
	</div>
20
21
	<?php if(class_exists('LSX_TO_Search')) { ?>
0 ignored issues
show
Space after opening control structure is required
Loading history...
No space before opening parenthesis is prohibited
Loading history...
No space after opening parenthesis is prohibited
Loading history...
Expected 1 space(s) after IF keyword; 0 found
Loading history...
Expected 1 spaces after opening parenthesis; 0 found
Loading history...
Expected 1 spaces before closing parenthesis; 0 found
Loading history...
No space before closing parenthesis is prohibited
Loading history...
22
		<div id="ui-search" class="ui-tab">
23
			<table class="form-table">
24
				<tbody>
25
				<?php do_action('lsx_to_framework_activity_tab_content','activity','search'); ?>
0 ignored issues
show
Expected 1 spaces after opening parenthesis; 0 found
Loading history...
Expected 1 spaces before closing parenthesis; 0 found
Loading history...
26
				</tbody>
27
			</table>
28
		</div>
29
	<?php } ?>
30
31
	<div id="ui-placeholders" class="ui-tab">
32
		<table class="form-table">
33
			<tbody>
34
			<?php do_action('lsx_to_framework_activity_tab_content','activity','placeholders'); ?>
0 ignored issues
show
Expected 1 spaces after opening parenthesis; 0 found
Loading history...
Expected 1 spaces before closing parenthesis; 0 found
Loading history...
35
			</tbody>
36
		</table>
37
	</div>
38
39
	<div id="ui-archives" class="ui-tab">
40
		<table class="form-table">
41
			<tbody>
42
			<?php do_action('lsx_to_framework_activity_tab_content','activity','archives'); ?>
0 ignored issues
show
Expected 1 spaces after opening parenthesis; 0 found
Loading history...
Expected 1 spaces before closing parenthesis; 0 found
Loading history...
43
			</tbody>
44
		</table>
45
	</div>
46
47
	<div id="ui-single" class="ui-tab">
48
		<table class="form-table">
49
			<tbody>
50
			<?php do_action('lsx_to_framework_activity_tab_content','activity','single'); ?>
0 ignored issues
show
Expected 1 spaces after opening parenthesis; 0 found
Loading history...
Expected 1 spaces before closing parenthesis; 0 found
Loading history...
51
			</tbody>
52
		</table>
53
	</div>
54
	<?php do_action('lsx_to_framework_activity_tab_bottom','activity'); ?>
0 ignored issues
show
Expected 1 spaces after opening parenthesis; 0 found
Loading history...
Expected 1 spaces before closing parenthesis; 0 found
Loading history...
55
</div>