# customify/2.0.0/core/interfaces/extended/FormField.php

Customify, version 2.0.0. 30 lines.

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

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

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

	/**
	 * @return boolean true if field has errors
	 */
	function has_errors();

	/**
	 * @return string first error message
	 */
	function one_error();

	/**
	 * Render field emulates wordpress template behaviour. First searches for
	 * name, then searches field type and so on.
	 *
	 * @return string
	 */
	function render();

} # interface

```
