Skip to content

Information Field

Mark Wilkinson edited this page May 17, 2016 · 1 revision

The information field allows you to simply out information for the user as HTML. There is no input associated with this field type.

Args

Required Args

  • id (string) (required)
  • name (string) (required) Field display name. Used as field label.
  • type 'information' (string) (required)

Optional Generic Args

See Optional Generic Args

Example Usage

array( 
	'id'   => 'example_information_field', 
	'name' => 'Example Information Field', 
	'type' => 'information',
            'info' => '<p>This is the information to display.</p>',

),
Clone this wiki locally