| 1 |
<?php |
| 2 |
|
| 3 |
// Exit if accessed directly. |
| 4 |
if ( ! defined( 'ABSPATH' ) ) { |
| 5 |
exit; |
| 6 |
} |
| 7 |
|
| 8 |
/** |
| 9 |
* The template used to display text form fields. |
| 10 |
* |
| 11 |
* @author WP Charitable LLC |
| 12 |
* @package Charitable/Templates/Form Fields |
| 13 |
* @since 1.0.0 |
| 14 |
* @version 1.0.0 |
| 15 |
* @version 1.8.6.1 Added description output. |
| 16 |
* @version 1.8.8.6 |
| 17 |
*/ |
| 18 |
|
| 19 |
if ( ! isset( $view_args['form'] ) || ! isset( $view_args['field'] ) ) { |
| 20 |
return; |
| 21 |
} |
| 22 |
|
| 23 |
$charitable_form = $view_args['form']; |
| 24 |
$charitable_field = $view_args['field']; |
| 25 |
$charitable_classes = esc_attr( $view_args['classes'] ); |
| 26 |
$charitable_field_type = isset( $charitable_field['type'] ) ? $charitable_field['type'] : 'text'; |
| 27 |
$charitable_is_required = isset( $charitable_field['required'] ) ? $charitable_field['required'] : false; |
| 28 |
$charitable_value = isset( $charitable_field['value'] ) ? $charitable_field['value'] : ''; |
| 29 |
|
| 30 |
?> |
| 31 |
<div id="charitable_field_<?php echo esc_attr( $charitable_field['key'] ); ?>" class="<?php echo esc_attr( $charitable_classes ); ?>"> |
| 32 |
<?php if ( isset( $charitable_field['label'] ) ) : ?> |
| 33 |
<label for="charitable_field_<?php echo esc_attr( $charitable_field['key'] ); ?>_element"> |
| 34 |
<?php echo wp_kses_post( $charitable_field['label'] ); ?> |
| 35 |
<?php if ( $charitable_is_required ) : ?> |
| 36 |
<abbr class="required" title="<?php esc_html_e( 'Required', 'charitable' ); ?>">*</abbr> |
| 37 |
<?php endif ?> |
| 38 |
</label> |
| 39 |
<?php endif ?> |
| 40 |
<?php if ( isset( $charitable_field['help'] ) ) : ?> |
| 41 |
<p class="charitable-field-help"><?php echo $charitable_field['help']; // phpcs:ignore ?></p> |
| 42 |
<?php endif ?> |
| 43 |
<input type="<?php echo esc_attr( $charitable_field_type ); ?>" name="<?php echo esc_attr( $charitable_field['key'] ); ?>" id="charitable_field_<?php echo esc_attr( $charitable_field['key'] ); ?>_element" value="<?php echo esc_attr( stripslashes( $charitable_value ) ); ?>" <?php echo charitable_get_arbitrary_attributes( $charitable_field ); // phpcs:ignore ?>/> |
| 44 |
<?php |
| 45 |
|
| 46 |
// If there is a description, add it after the input. |
| 47 |
if ( isset( $charitable_field['description'] ) && ! empty( $charitable_field['description'] ) ) { |
| 48 |
echo '<p class="charitable-field-description">' . wp_kses_post( $charitable_field['description'] ) . '</p>'; |
| 49 |
} |
| 50 |
|
| 51 |
?> |
| 52 |
</div> |
| 53 |
|