| 1 |
<?php |
| 2 |
defined( 'ABSPATH' ) || die( 'Cheatin’ uh?' ); |
| 3 |
|
| 4 |
$html_atts = ''; |
| 5 |
|
| 6 |
if ( empty( $data['atts'] ) ) { |
| 7 |
$data['atts'] = []; |
| 8 |
} |
| 9 |
|
| 10 |
if ( ! isset( $data['atts']['class'] ) ) { |
| 11 |
// Class used for JS. |
| 12 |
$data['atts']['class'] = 'button button-imagify-optimize'; |
| 13 |
} |
| 14 |
|
| 15 |
if ( ! isset( $data['atts']['data-processing-label'] ) ) { |
| 16 |
// Used for JS. |
| 17 |
$data['atts']['data-processing-label'] = __( 'Optimizing...', 'imagify' ); |
| 18 |
} |
| 19 |
|
| 20 |
$html_atts = $this->build_attributes( $data['atts'] ); |
| 21 |
|
| 22 |
if ( ! empty( $data['error'] ) ) { |
| 23 |
?> |
| 24 |
<strong> |
| 25 |
<?php |
| 26 |
echo wp_kses( |
| 27 |
imagify_translate_api_message( $data['error'] ), |
| 28 |
[ |
| 29 |
'br' => true, |
| 30 |
'code' => true, |
| 31 |
'em' => true, |
| 32 |
'strong' => true, |
| 33 |
] |
| 34 |
); |
| 35 |
?> |
| 36 |
</strong> |
| 37 |
<br/> |
| 38 |
<?php |
| 39 |
} |
| 40 |
?> |
| 41 |
<a href="<?php echo esc_url( $data['url'] ); ?>"<?php echo $html_atts; ?>> |
| 42 |
<?php esc_html_e( 'Try again', 'imagify' ); ?> |
| 43 |
</a> |
| 44 |
|
| 45 |
<?php |
| 46 |
if ( ! empty( $data['atts']['data-processing-label'] ) ) { |
| 47 |
$this->print_js_template_in_footer( 'button/processing' ); |
| 48 |
} |
| 49 |
|