1 | <?php |
||
2 | /** |
||
3 | * Activity Widget Content Part |
||
4 | * |
||
5 | * @package lsx-tour-operators |
||
6 | * @category activity |
||
7 | * @subpackage widget |
||
8 | */ |
||
9 | |||
10 | global $disable_placeholder, $disable_text, $post; |
||
11 | |||
12 | $has_single = ! lsx_to_is_single_disabled(); |
||
13 | $permalink = ''; |
||
0 ignored issues
–
show
|
|||
14 | |||
15 | if ( $has_single ) { |
||
0 ignored issues
–
show
|
|||
16 | $permalink = get_the_permalink(); |
||
17 | } elseif ( ! is_post_type_archive( 'activity' ) ) { |
||
0 ignored issues
–
show
|
|||
18 | $has_single = true; |
||
19 | $permalink = get_post_type_archive_link( 'activity' ) . '#activity-' . $post->post_name; |
||
0 ignored issues
–
show
Equals sign not aligned with surrounding assignments; expected 2 spaces but found 1 space
This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line. To visualize $a = "a";
$ab = "ab";
$abc = "abc";
will produce issues in the first and second line, while this second example $a = "a";
$ab = "ab";
$abc = "abc";
will produce no issues. ![]() |
|||
20 | } |
||
21 | ?> |
||
22 | <article <?php post_class(); ?>> |
||
23 | <?php if ( empty( $disable_placeholder ) ) { ?> |
||
0 ignored issues
–
show
|
|||
24 | <div class="lsx-to-widget-thumb"> |
||
25 | <?php if ( $has_single ) { ?><a href="<?php echo esc_url( $permalink ); ?>"><?php } ?> |
||
0 ignored issues
–
show
|
|||
26 | <?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?> |
||
27 | <?php if ( $has_single ) { ?></a><?php } ?> |
||
0 ignored issues
–
show
|
|||
28 | </div> |
||
29 | <?php } ?> |
||
0 ignored issues
–
show
|
|||
30 | |||
31 | <div class="lsx-to-widget-content"> |
||
32 | <h4 class="lsx-to-widget-title text-center"> |
||
33 | <?php if ( $has_single ) { ?><a href="<?php echo esc_url( $permalink ); ?>"><?php } ?> |
||
0 ignored issues
–
show
|
|||
34 | <?php the_title(); ?> |
||
35 | <?php if ( $has_single ) { ?></a><?php } ?> |
||
0 ignored issues
–
show
|
|||
36 | </h4> |
||
37 | |||
38 | <?php |
||
39 | // if ( empty( $disable_text ) ) { |
||
40 | // lsx_to_tagline( '<p class="lsx-to-widget-tagline text-center">', '</p>' ); |
||
0 ignored issues
–
show
|
|||
41 | // } |
||
0 ignored issues
–
show
|
|||
42 | ?> |
||
43 | |||
44 | <div class="lsx-to-widget-meta-data"> |
||
45 | <?php |
||
46 | $meta_class = 'lsx-to-meta-data lsx-to-meta-data-'; |
||
47 | |||
48 | lsx_to_price( '<span class="' . $meta_class . 'price"><span class="lsx-to-meta-data-key">' . esc_html__( 'From price', 'lsx-activities' ) . ':</span> ', '</span>' ); |
||
49 | lsx_to_connected_destinations( '<span class="' . $meta_class . 'destinations"><span class="lsx-to-meta-data-key">' . __( 'Location', 'lsx-activities' ) . ':</span> ', '</span>' ); |
||
50 | lsx_to_connected_accommodation( '<span class="' . $meta_class . 'accommodations"><span class="lsx-to-meta-data-key">' . __( 'Accommodation', 'lsx-activities' ) . ':</span> ', '</span>' ); |
||
51 | lsx_to_connected_tours( '<span class="' . $meta_class . 'tours"><span class="lsx-to-meta-data-key">' . __( 'Tours', 'lsx-activities' ) . ':</span> ', '</span>' ); |
||
52 | ?> |
||
53 | </div> |
||
54 | |||
55 | <?php |
||
56 | ob_start(); |
||
57 | lsx_to_widget_entry_content_top(); |
||
58 | the_excerpt(); |
||
59 | lsx_to_widget_entry_content_bottom(); |
||
60 | $excerpt = ob_get_clean(); |
||
61 | |||
62 | if ( empty( $disable_text ) && ! empty( $excerpt ) ) { |
||
0 ignored issues
–
show
|
|||
63 | echo wp_kses_post( $excerpt ); |
||
64 | } elseif ( $has_single ) { ?> |
||
0 ignored issues
–
show
|
|||
65 | <p><a href="<?php echo esc_url( $permalink ); ?>" class="moretag"><?php esc_html_e( 'View more', 'lsx-activities' ); ?></a></p> |
||
66 | <?php } |
||
0 ignored issues
–
show
|
|||
67 | ?> |
||
68 | </div> |
||
69 | |||
70 | </article> |
||
71 |
This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line.
To visualize
will produce issues in the first and second line, while this second example
will produce no issues.