uawdijnntqw1x1x1
IP : 3.14.249.46
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
/
public_html
/
Update
/
..
/
wp-content
/
plugins
/
charitable
/
templates
/
form-fields
/
editor.php
/
/
<?php /** * The template used to display the WP Editor in a form. * * @author WP Charitable LLC * @package Charitable/Templates/Form Fields * @since 1.0.0 * @version 1.0.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'] ) ? $field['value'] : ''; $editor_args = isset( $field['editor'] ) ? wpautop( $field['editor'] ) : array(); /** * Change the editor settings. * * @see https://developer.wordpress.org/reference/classes/_wp_editors/parse_settings/ * * @since 1.5.0 * * @param array $settings The default settings. */ $default_editor_args = array( 'media_buttons' => true, 'teeny' => true, 'quicktags' => false, 'tinymce' => array( 'theme_advanced_path' => false, 'theme_advanced_buttons1' => 'bold,italic,bullist,numlist,blockquote,justifyleft,justifycenter,justifyright,link,unlink', ), ); $editor_args = wp_parse_args( $editor_args, $default_editor_args ); ?> <div id="charitable_field_<?php echo esc_attr( $field['key'] ); ?>" class="<?php echo esc_attr( $classes ); ?>"> <?php if ( isset( $field['label'] ) ) : ?> <label for="<?php echo esc_attr( $field['key'] ); ?>"> <?php echo esc_html( $field['label'] ); ?> <?php if ( $is_required ) : ?> <abbr class="required" title="required">*</abbr> <?php endif ?> </label> <?php endif ?> <?php wp_editor( $value, $field['key'], $editor_args ); ?> </div>
/home/batcwwjx/public_html/Update/../wp-content/plugins/charitable/templates/form-fields/editor.php