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 / editor.php

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

63 lines 2.0 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 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