OwlCyberSecurity - MANAGER
Edit File: validation_js.php
<?php class Redux_Validation_js { /** * Field Constructor. * * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function * * @since Redux_Options 1.0.0 */ function __construct($field, $value, $current) { $this->field = $field; $this->value = $value; $this->current = $current; $this->validate(); } /** * Field Render Function. * * Takes the vars and validates them * * @since Redux_Options 1.0.0 */ function validate() { $this->value = esc_js($this->value); } }