# customify/1.6.0/core/interfaces/Validator.php

Customify, version 1.6.0. 23 lines.

- Page: https://pluginprobe.com/plugins/customify/1.6.0/code/core/interfaces/Validator.php
- Raw: https://pluginprobe.com/plugins/customify/1.6.0/raw/core/interfaces/Validator.php
- Modified: 2017-03-09T10:06:46+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/customify/1.6.0/code/core/interfaces/Validator.php#L10-L20`.

```php
<?php defined('ABSPATH') or die;

/**
 * @package    pixcustomify
 * @category   core
 * @author     Pixelgrade Team
 * @copyright  (c) 2013, Pixelgrade
 */
interface PixCustomifyValidator {

	/**
	 * @return array errors
	 */
	function validate($input);

	/**
	 * @param string rule
	 * @return string error message
	 */
	function error_message($rule);

} # interface

```
