1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
<?php
namespace AutomateWoo\Fields;
use AutomateWoo\Clean;
defined( 'ABSPATH' ) || exit;
/** * Email_Content class. */ class Email_Content extends Field {
/** * Field name. * * @var string */ protected $name = 'email_content';
/** * Field type. * * @var string */ protected $type = 'email-content';
/** * Constructor. */ public function __construct() { parent::__construct(); $this->set_title( __( 'Email content', 'automatewoo' ) ); $this->set_description( __( 'The contents of this field will be formatted as per the selected email template.', 'automatewoo' ) ); }
/** * Render the field. * * @param string $value */ public function render( $value ) {
$id = uniqid(); $value = Clean::email_content( $value );
wp_editor( $value, $id, [ 'textarea_name' => $this->get_full_name(), 'tinymce' => true, // load TinyMCE 'default_editor' => 'tinymce', // default to visual 'quicktags' => true, ] );
if ( wp_doing_ajax() ) { $this->ajax_init( $id ); } }
/** * Insert script to init the WYSIWYG editor. * * @param string $id */ public function ajax_init( $id ) { ?> <script type="text/javascript"> (function(){ AutomateWoo.Workflows.init_ajax_wysiwyg('<?php echo esc_js( $id ); ?>'); }()); </script> <?php }
/** * Sanitizes the value of the field. * * @since 4.4.0 * * @param string $value * * @return string */ public function sanitize_value( $value ) { return Clean::email_content( $value ); } }
|