File "class-redux-validate.php"
Full Path: /home/tekvhqgl/public_html/wp-content/plugins/redux-framework/redux-core/inc/classes/class-redux-validate.php
File size: 976 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Redux Validate Class
*
* @class Redux_Validate
* @version 4.0.0
* @package Redux Framework
*/
defined( 'ABSPATH' ) || exit;
if ( ! class_exists( 'Redux_Validate', false ) ) {
/**
* Class Redux_Validate
*/
abstract class Redux_Validate {
/**
* Redux_Validate constructor.
*
* @param object $parent ReduxFramework pointer.
* @param array $field Fields array.
* @param array|string $value Values array.
* @param mixed $current Current.
*/
public function __construct( $parent, array $field, $value, $current ) {
$this->parent = $parent;
$this->field = $field;
$this->value = $value;
$this->current = $current;
if ( isset( $this->field['validate_msg'] ) ) {
$this->field['msg'] = $this->field['validate_msg'];
unset( $this->field['validate_msg'] );
}
$this->validate();
}
/**
* Validate.
*
* @return mixed
*/
abstract public function validate();
}
}