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
Coding Style
introduced
by
![]() |
|||
5 | <?php if(class_exists('LSX_TO_Search')) { ?> |
||
0 ignored issues
–
show
|
|||
6 | <li><a href="#ui-search"><?php esc_html_e('Search','tour-operator'); ?></a></li> |
||
0 ignored issues
–
show
|
|||
7 | <?php } ?> |
||
8 | <li><a href="#ui-placeholders"><?php esc_html_e('Placeholders','tour-operator'); ?></a></li> |
||
0 ignored issues
–
show
|
|||
9 | <li><a href="#ui-archives"><?php esc_html_e('Archives','tour-operator'); ?></a></li> |
||
0 ignored issues
–
show
|
|||
10 | <li><a href="#ui-single"><?php esc_html_e('Single','tour-operator'); ?></a></li> |
||
0 ignored issues
–
show
|
|||
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
|
|||
17 | </tbody> |
||
18 | </table> |
||
19 | </div> |
||
20 | |||
21 | <?php if(class_exists('LSX_TO_Search')) { ?> |
||
0 ignored issues
–
show
|
|||
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
|
|||
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
|
|||
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
|
|||
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
|
|||
51 | </tbody> |
||
52 | </table> |
||
53 | </div> |
||
54 | <?php do_action('lsx_to_framework_activity_tab_bottom','activity'); ?> |
||
0 ignored issues
–
show
|
|||
55 | </div> |