PluginProbe
QuadMenu – Mega Menu / 1.9.0
QuadMenu – Mega Menu v1.9.0
3.3.7 3.3.6 trunk 1.8.4 1.8.5 1.8.7 1.8.8 1.8.9 1.9.0 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 All 87 releases
quadmenu / lib / ReduxCore / inc / validation / html / validation_html.php

validation_html.php in QuadMenu – Mega Menu 1.9.0, at lib/ReduxCore/inc/validation/html/validation_html.php

33 lines 990 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! class_exists( 'Redux_Validation_html' ) ) {
4 class Redux_Validation_html {
5
6 /**
7 * Field Constructor.
8 * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
9 *
10 * @since ReduxFramework 1.0.0
11 */
12 function __construct( $parent, $field, $value, $current ) {
13
14 $this->parent = $parent;
15 $this->field = $field;
16 $this->value = $value;
17 $this->current = $current;
18
19 $this->validate();
20 } //function
21
22 /**
23 * Field Render Function.
24 * Takes the vars and validates them
25 *
26 * @since ReduxFramework 1.0.0
27 */
28 function validate() {
29
30 $this->value = wp_kses_post( $this->value );
31 } //function
32 } //class
33 }