PHP Класс Grunion_Contact_Form_Field, jetpack

Parses shortcode to output the contact form field as HTML. Validates input.
Наследование: extends Crunion_Contact_Form_Shortcode
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
$error Is the input invalid?
$form parent form
$shortcode_name
$value default or POSTed value

Открытые методы

Метод Описание
__construct ( array $attributes, null | string $content = null, Grunion_Contact_Form $form = null )
add_error ( string $message ) This field's input is invalid. Flag as invalid and add an error to the parent form
is_error ( ) : boolean Is the field input invalid?
render ( ) : string Outputs the HTML for this form field
validate ( ) Validates the form input

Описание методов

__construct() публичный Метод

public __construct ( array $attributes, null | string $content = null, Grunion_Contact_Form $form = null )
$attributes array An associative array of shortcode attributes. @see shortcode_atts()
$content null | string Null for selfclosing shortcodes. The inner content otherwise.
$form Grunion_Contact_Form The parent form

add_error() публичный Метод

This field's input is invalid. Flag as invalid and add an error to the parent form
public add_error ( string $message )
$message string The error message to display on the form.

is_error() публичный Метод

Is the field input invalid?
public is_error ( ) : boolean
Результат boolean

render() публичный Метод

Outputs the HTML for this form field
public render ( ) : string
Результат string HTML

validate() публичный Метод

Validates the form input
public validate ( )

Описание свойств

$error публичное свойство

Is the input invalid?
public $error

$form публичное свойство

parent form
public $form

$shortcode_name публичное свойство

public $shortcode_name

$value публичное свойство

default or POSTed value
public $value