PluginProbe
Charitable – Donation & Fundraising Platform (Donation Forms, Recurring Donations & Fundraising Campaigns) / 1.8.12
Charitable – Donation & Fundraising Platform (Donation Forms, Recurring Donations & Fundraising Campaigns) v1.8.12
1.8.12.3 1.8.12.2 1.8.12.1 1.8.12 1.8.11.3 1.8.11.2 1.8.11.1 1.8.11 1.6.6 1.6.60 1.6.7 1.6.8 1.6.9 1.7.0 1.7.0.1 1.7.0.11 1.7.0.12 1.7.0.14 1.7.0.2 1.7.0.3 1.7.0.5 1.7.0.6 1.7.0.7 1.7.0.9 1.8.0 All 210 releases
charitable / templates / form-fields / default.php

default.php in Charitable – Donation & Fundraising Platform (Donation Forms, Recurring Donations & Fundraising Campaigns) 1.8.12, at templates/form-fields/default.php

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