@@ 85-93 (lines=9) @@ | ||
82 | ||
83 | if ( false === $results['pass'] ) { |
|
84 | $return['status'] = $results['severity']; |
|
85 | if ( ! empty( $results['action'] ) ) { |
|
86 | $return['actions'] = sprintf( |
|
87 | '<a href="%1$s" target="_blank" rel="noopener noreferrer">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', |
|
88 | esc_url( $results['action'] ), |
|
89 | $results['action_label'], |
|
90 | /* translators: accessibility text */ |
|
91 | __( '(opens in a new tab)', 'jetpack' ) |
|
92 | ); |
|
93 | } |
|
94 | } |
|
95 | ||
96 | return $return; |
@@ 453-461 (lines=9) @@ | ||
450 | '<p>%s</p>', |
|
451 | $fail['resolution'] |
|
452 | ); |
|
453 | if ( ! empty( $fail['action'] ) ) { |
|
454 | $result['actions'] = sprintf( |
|
455 | '<a class="button button-primary" href="%1$s" target="_blank" rel="noopener noreferrer">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>', |
|
456 | esc_url( $fail['action'] ), |
|
457 | __( 'Resolve', 'jetpack' ), |
|
458 | /* translators: accessibility text */ |
|
459 | __( '(opens in a new tab)', 'jetpack' ) |
|
460 | ); |
|
461 | } |
|
462 | } else { |
|
463 | $result['description'] .= sprintf( |
|
464 | '<p>%s</p>', |