# customify/2.3.0/core/interfaces/Processor.php

Customify, version 2.3.0. 46 lines.

- Page: https://pluginprobe.com/plugins/customify/2.3.0/code/core/interfaces/Processor.php
- Raw: https://pluginprobe.com/plugins/customify/2.3.0/raw/core/interfaces/Processor.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/2.3.0/code/core/interfaces/Processor.php#L10-L20`.

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

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

	/**
	 * @return static $this
	 */
	function run();

	/**
	 * @return array
	 */
	function status();

	/**
	 * @return PixCustomifyMeta current data (influenced by user submitted data)
	 */
	function data();

	/**
	 * Shorthand.
	 *
	 * @return array
	 */
	function errors();

	/**
	 * Shorthand.
	 *
	 * @return boolean
	 */
	function performed_update();

	/**
	 * @return boolean true if state is nominal
	 */
	function ok();

} # interface

```
