| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
?> |
| 6 |
<div id="template"> |
| 7 |
<p class="howto"> |
| 8 |
<?php echo esc_html( $heading ); ?> |
| 9 |
</p> |
| 10 |
|
| 11 |
<?php |
| 12 |
if ( true === $show_errors ) { |
| 13 |
require FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php'; |
| 14 |
} |
| 15 |
?> |
| 16 |
<textarea <?php FrmAppHelper::array_to_html_params( $textarea_params, true ); ?>><?php echo FrmAppHelper::esc_textarea( $custom_css ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></textarea> |
| 17 |
</div> |
| 18 |
|