| 1 |
<?php |
| 2 |
|
| 3 |
/** @var string $regulation */ |
| 4 |
/** @var string $iodo */ |
| 5 |
|
| 6 |
?> |
| 7 |
|
| 8 |
<div class="imoje-regulations"> |
| 9 |
<span> |
| 10 |
<?php |
| 11 |
|
| 12 |
printf( |
| 13 |
esc_html__( 'I declare that I have read and accept the %s and %s.', 'imoje' ), |
| 14 |
sprintf( |
| 15 |
'<a href="%s">%s</a>', |
| 16 |
esc_html( $regulation ), |
| 17 |
esc_html__( 'Regulations of imoje', 'imoje' ) |
| 18 |
), |
| 19 |
sprintf( |
| 20 |
'<a href="%s">%s</a>', |
| 21 |
esc_html( $iodo ), |
| 22 |
esc_html__( 'Information on personal data imoje', 'imoje' ) |
| 23 |
) ); |
| 24 |
?></span> |
| 25 |
</div> |
| 26 |
|