<?php class Redux_Validation_numeric 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;field['msg'] = (isset($this-&gt;field['msg']))?$this-&gt;field['msg']:__('You must provide a numerical value for this option.', 'redux');
		$this-&gt;value = $value;
		$this-&gt;current = $current;
		$this-&gt;validate();
		
	}//function
	
	
	
	/**
	 * Field Render Function.
	 *
	 * Takes the vars and outputs the HTML for the field in the settings
	 *
	 * @since ReduxFramework 1.0.0
	*/
	function validate(){
		
		if(!is_numeric($this-&gt;value)) {
			$this-&gt;value = (isset($this-&gt;current))?$this-&gt;current:'';
			$this-&gt;error = $this-&gt;field;
		}
		
	}//function
	
}//class