| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
exit; // Exit if accessed directly |
| 4 |
} |
| 5 |
?> |
| 6 |
<table> |
| 7 |
<tr> |
| 8 |
<th style="text-align:center;padding:5px;background:gray;color:white"><?php esc_html_e( 'Name', 'ablocks' ); ?></th> |
| 9 |
<th style="text-align:center;padding:5px;background:gray;color:white"><?php esc_html_e( 'Value', 'ablocks' ); ?></th> |
| 10 |
</tr> |
| 11 |
<?php |
| 12 |
foreach ( $data as $input_id => $attr ) : |
| 13 |
$attr = apply_filters( 'ablocks/form_email_field', $attr, $input_id ); |
| 14 |
?> |
| 15 |
<tr id="<?php echo esc_attr( $input_id ); ?>"> |
| 16 |
<td style="text-align:center;padding:5px;border:solid 1px gray;"><?php echo \esc_html( $input_id ); ?>: </td> |
| 17 |
<td style="text-align:center;padding:5px;border:solid 1px gray;"><?php echo ( is_iterable( $attr['value'] ) ? wp_kses_post( implode( ', ', $attr['value'] ) ) : \wp_kses_post( $attr['value'] ) ); ?></td> |
| 18 |
</tr> |
| 19 |
<?php |
| 20 |
endforeach; |
| 21 |
?> |
| 22 |
</table> |
| 23 |
|