Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | public function render_content() { |
||
43 | $cta_url = $this->cta_url; |
||
44 | $nudge_copy = $this->nudge_copy; |
||
45 | $nudge_button_copy = __( 'Upgrade Now', 'jetpack' ); |
||
46 | |||
47 | echo '<div class="nudge-container"> |
||
48 | <p> |
||
49 | ' . wp_kses( $nudge_copy, array( 'br' => array() ) ) . ' |
||
50 | </p> |
||
51 | <div class="button-container"> |
||
52 | <button type="button" class="button-primary navigate-to" data-navigate-to-page="' . esc_url( $cta_url ) . '">' . esc_html( $nudge_button_copy ) . '</button> |
||
53 | </div> |
||
54 | </div>'; |
||
55 | } |
||
56 | } |
||
57 |