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
|
<?php
namespace AutomateWoo\Fields;
use AutomateWoo\Clean;
defined( 'ABSPATH' ) || exit;
/** * Textarea field for raw HTML input. * * @class HTML_Textarea */ class HTML_Textarea extends Text_Area {
/** * Prevent decoding HTML entities before the field is rendered. * * @since 4.4.0 * * @var bool */ public $decode_html_entities_before_render = false;
/** * HTML_Textarea constructor. */ public function __construct() { parent::__construct(); $this->set_rows( 10 ); $this->add_classes( 'automatewoo-field--monospace' ); }
/** * Sanitizes the value of the field. * * @since 4.4.0 * * @param string $value The value of the field. * * @return string */ public function sanitize_value( $value ) { return Clean::email_content( $value ); } }
|