PluginProbe
imoje / 4.2.0
imoje v4.2.0
4.16.1 4.16.0 trunk 3.1.1 3.2.0 3.2.1 3.2.3 3.2.4 3.2.6 3.2.7 3.2.8 3.3.0 3.3.1 3.3.2 3.3.3 4.0.0 4.1.0 4.1.1 4.10.1 4.11.0 4.12.0 4.14.0 4.15.0 4.15.1 4.15.2 All 39 releases
imoje / includes / templates / regulation.php

regulation.php in imoje 4.2.0, at includes/templates/regulation.php

26 lines 472 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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