| 1 |
<?php |
| 2 |
|
| 3 |
// Exit if accessed directly. |
| 4 |
if ( ! defined( 'ABSPATH' ) ) { |
| 5 |
exit; |
| 6 |
} |
| 7 |
|
| 8 |
/** |
| 9 |
* The template used to display the WP Editor in a form. |
| 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.8.6 |
| 16 |
*/ |
| 17 |
|
| 18 |
if ( ! isset( $view_args['form'] ) || ! isset( $view_args['field'] ) ) { |
| 19 |
return; |
| 20 |
} |
| 21 |
|
| 22 |
$charitable_form = $view_args['form']; |
| 23 |
$charitable_field = $view_args['field']; |
| 24 |
$charitable_classes = $view_args['classes']; |
| 25 |
$charitable_is_required = isset( $charitable_field['required'] ) ? $charitable_field['required'] : false; |
| 26 |
$charitable_value = isset( $charitable_field['value'] ) ? $charitable_field['value'] : ''; |
| 27 |
$charitable_editor_args = isset( $charitable_field['editor'] ) ? wpautop( $charitable_field['editor'] ) : array(); |
| 28 |
|
| 29 |
/** |
| 30 |
* Change the editor settings. |
| 31 |
* |
| 32 |
* @see https://developer.wordpress.org/reference/classes/_wp_editors/parse_settings/ |
| 33 |
* |
| 34 |
* @since 1.5.0 |
| 35 |
* |
| 36 |
* @param array $settings The default settings. |
| 37 |
*/ |
| 38 |
$charitable_default_editor_args = array( |
| 39 |
'media_buttons' => true, |
| 40 |
'teeny' => true, |
| 41 |
'quicktags' => false, |
| 42 |
'tinymce' => array( |
| 43 |
'theme_advanced_path' => false, |
| 44 |
'theme_advanced_buttons1' => 'bold,italic,bullist,numlist,blockquote,justifyleft,justifycenter,justifyright,link,unlink', |
| 45 |
), |
| 46 |
); |
| 47 |
|
| 48 |
$charitable_editor_args = wp_parse_args( $charitable_editor_args, $charitable_default_editor_args ); |
| 49 |
?> |
| 50 |
<div id="charitable_field_<?php echo esc_attr( $charitable_field['key'] ); ?>" class="<?php echo esc_attr( $charitable_classes ); ?>"> |
| 51 |
<?php if ( isset( $charitable_field['label'] ) ) : ?> |
| 52 |
<label for="<?php echo esc_attr( $charitable_field['key'] ); ?>"> |
| 53 |
<?php echo wp_kses_post( $charitable_field['label'] ); ?> |
| 54 |
<?php if ( $charitable_is_required ) : ?> |
| 55 |
<abbr class="required" title="<?php esc_html_e( 'Required', 'charitable' ); ?>">*</abbr> |
| 56 |
<?php endif ?> |
| 57 |
</label> |
| 58 |
<?php endif ?> |
| 59 |
<?php |
| 60 |
wp_editor( $charitable_value, $charitable_field['key'], $charitable_editor_args ); |
| 61 |
?> |
| 62 |
</div> |
| 63 |
|