<?php class Redux_Validation_html_custom extends ReduxFramework {	
	
	/**
	 * Field Constructor.
	 *
	 * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
	 *
	 * @since ReduxFramework 1.0.0
	*/
	function __construct($field, $value, $current) {
		
		parent::__construct();
		$this->field = $field;
		$this-&gt;value = $value;
		$this-&gt;current = $current;
		$this-&gt;validate();
		
	}//function
	
	
	
	/**
	 * Field Render Function.
	 *
	 * Takes the vars and validates them
	 *
	 * @since ReduxFramework 1.0.0
	*/
	function validate() {
		
		$this-&gt;value = wp_kses($this-&gt;value, $this-&gt;field['allowed_html']);
				
	}//function
	
}//class