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

Customify, version 1.4.2. 27 lines.

- Page: https://pluginprobe.com/plugins/customify/1.4.2/code/core/interfaces/Validator.php
- Raw: https://pluginprobe.com/plugins/customify/1.4.2/raw/core/interfaces/Validator.php
- Modified: 2015-02-16T08:16:34+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.4.2/code/core/interfaces/Validator.php#L10-L20`.

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

/* This file is property of Pixel Grade Media. You may NOT copy, or redistribute
 * it. Please see the license that came with your copy for more information.
 */

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

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

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

} # interface

```
