uawdijnntqw1x1x1
IP : 3.15.10.50
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
www
/
..
/
public_html
/
wp-content
/
plugins
/
charitable
/
templates
/
form-fields
/
checkbox.php
/
/
<?php /** * The template used to display checkbox form fields. * * Override this template by copying it to yourtheme/charitable/form-fields/checkbox.php * * @author WP Charitable LLC * @package Charitable/Templates/Form Fields * @since 1.0.0 * @version 1.2.0 */ if ( ! isset( $view_args['form'] ) || ! isset( $view_args['field'] ) ) { return; } $form = $view_args['form']; $field = $view_args['field']; $classes = $view_args['classes']; $is_required = isset( $field['required'] ) ? $field['required'] : false; $value = isset( $field['value'] ) ? esc_attr( $field['value'] ) : '1'; if ( isset( $field['checked'] ) ) { $checked = $field['checked']; } else { $checked = isset( $field['default'] ) ? $field['default'] : 0; } ?> <div id="charitable_field_<?php echo $field['key']; ?>" class="<?php echo $classes; ?>"> <input type="checkbox" name="<?php echo $field['key']; ?>" value="<?php echo $value; ?>" id="charitable_field_<?php echo $field['key']; ?>_element" <?php checked( $checked ); ?> <?php echo charitable_get_arbitrary_attributes( $field ); ?> /> <?php if ( isset( $field['label'] ) ) : ?> <label for="charitable_field_<?php echo $field['key']; ?>_element"> <?php echo $field['label']; ?> <?php if ( $is_required ) : ?> <abbr class="required" title="required">*</abbr> <?php endif ?> </label> <?php endif ?> <?php if ( isset( $field['help'] ) ) : ?> <p class="charitable-field-help"><?php echo $field['help']; ?></p> <?php endif ?> </div>
/home/batcwwjx/www/../public_html/wp-content/plugins/charitable/templates/form-fields/checkbox.php