HEX
Server: nginx/1.27.1
System: Linux in-4 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: ilikadirect (1186)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v6964/gopalak/public_html/wp-content/plugins/charitable/templates/form-fields/fieldset.php
<?php

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * The template used to display select fieldsets.
 *
 * Override this template by copying it to yourtheme/charitable/form-fields/fieldset.php
 *
 * @author  WP Charitable LLC
 * @package Charitable/Templates/Form Fields
 * @since   1.0.0
 * @version 1.5.0
 * @version 1.8.8.6
 */

if ( ! isset( $view_args['form'] ) || ! isset( $view_args['field'] ) ) {
	return;
}

$charitable_form    = $view_args['form'];
$charitable_field   = $view_args['field'];
$charitable_classes = $view_args['classes'];
$charitable_fields  = isset( $charitable_field['fields'] ) ? $charitable_field['fields'] : array();

if ( ! count( $charitable_fields ) ) :
	return;
endif;

?>
<fieldset class="<?php echo esc_attr( $charitable_classes ); ?>">
	<?php
	if ( isset( $charitable_field['legend'] ) ) :
		?>
		<div class="charitable-form-header"><?php echo esc_html( $charitable_field['legend'] ); ?></div>
		<?php
	endif;

	$charitable_form->view()->render_fields( $charitable_fields );
	?>
</fieldset>