# booktics/1.0.16/utils/validator.php

Booktics – Appointment Booking Calendar for Service Businesses, version 1.0.16. 149 lines.

- Page: https://pluginprobe.com/plugins/booktics/1.0.16/code/utils/validator.php
- Raw: https://pluginprobe.com/plugins/booktics/1.0.16/raw/utils/validator.php
- Modified: 2025-07-10T04:07:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/booktics/1.0.16/code/utils/validator.php#L10-L20`.

```php
<?php
/**
 * Validator Traits
 *
 * @package Booktics
 */
namespace Booktics\Utils;

use WP_Error;

/**
 * Validator trait
 */
trait Validator {
    /**
     * Store WP_Error Object
     *
     * @var WP_Error
     */
    private $error;

    /**
     * Validation rules
     *
     * @var array
     */
    private $rules = array( 'required', 'min', 'max', 'email', 'timezone' );

    /**
     * Validation error messages
     *
     * @var array
     */
    private $messages = array(
        'required' => ':field is required',
        'min'      => ':field is minimum of :satisfier',
        'max'      => ':field is maximum of :satisfier',
        'email'    => 'This is email is invalid',
        'timezone' => 'This is not valid timezone',
    );

    /**
     * Validate fields
     *
     * @param   array  $rules   The rules that will be compared with field value
     * @param   array  $fields  Input fields
     *
     * @return  bool | WP_Error
     */
    public function validate( $rules, $fields ) {
        $this->error = new WP_Error();

        foreach ( $fields as $field => $value ) {
            if ( array_key_exists( $field, $rules ) ) {
                $this->check(
                    array(
						'field' => $field,
						'value' => $value,
						'rules' => $rules[ $field ],
                    )
                );
            }
        }

        if ( $this->error->has_errors() ) {
            return $this->error;
        }

        return true;
    }

    /**
     * Check the rules with field value
     *
     * @param   array  $item
     *
     * @return  void
     */
    private function check( $item ) {
        $field = $item['field'];
        $value = $item['value'];
        $rules = $item['rules'];

        foreach ( $rules as $rule => $satisfier ) {
            if ( ! in_array( $rule, $this->rules, true ) ) {
                continue;
            }

            if ( ! call_user_func_array( array( $this, $rule ), array( $field, $value, $satisfier ) ) ) {
                $code    = $item['field'] . '_' . $rule;
                $message = str_replace( array( ':field', ':satisfier' ), array( $field, $satisfier ), $this->messages[ $rule ] );

                $this->error->add( $code, $message );
            }
        }
    }

    /**
     * Required validation
     *
     * @return bool
     */
    private function required( $field, $value, $satisfier ) {
        return ! empty( $value );
    }

    /**
     * Minimum length validation
     *
     * @return bool
     */
    private function min( $field, $value, $satisfier ) {
        return mb_strlen( $value ) >= $satisfier;
    }

    /**
     * Maximum length validation
     *
     * @return bool
     */
    private function max( $field, $value, $satisfier ) {
        return mb_strlen( $value ) <= $satisfier;
    }

    /**
     * Email validation
     *
     * @return bool
     */
    private function email( $field, $value, $satisfier ) {
        return filter_var( $value, FILTER_VALIDATE_EMAIL );
    }

    /**
     * Validate timezone
     *
     * @return  bool
     */
    private function timezone( $field, $value, $satisfier ) {
        try {
            new \DateTimeZone( $value );
        } catch ( \Exception $e ) {
            return false;
        }

        return true;
    }
}

```
