cookiebot
/
src
/
view
/
admin
/
settings
/
prior-consent
/
partials
/
placeholder-submitbox-default.php
extra-information.php
3 years ago
info-tab-header.php
3 years ago
placeholder-submitbox-default.php
3 years ago
placeholder-submitboxes.php
3 years ago
placeholder-submitbox-default.php
19 lines
| 1 | <?php |
| 2 | /** @var string $site_default_languages_dropdown_html */ |
| 3 | /** @var string $name */ |
| 4 | /** @var string $default_placeholder */ |
| 5 | /** @var string $placeholder_helper */ |
| 6 | ?> |
| 7 | <div class="placeholder_content"> |
| 8 | <p> |
| 9 | <?php |
| 10 | echo $site_default_languages_dropdown_html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 11 | ?> |
| 12 | <label><?php esc_html_e( 'Language', 'cookiebot' ); ?></label> |
| 13 | </p> |
| 14 | <p> |
| 15 | <textarea cols="80" rows="5" name="<?php echo esc_attr( $name ); ?>"><?php echo esc_textarea( $default_placeholder ); ?></textarea> |
| 16 | <span class="help-tip" title="<?php echo esc_attr( $placeholder_helper ); ?>"></span> |
| 17 | </p> |
| 18 | </div> |
| 19 |