You are here

function _webform_defaults_optionsmarkup in Webform Options Markup 7

Same name and namespace in other branches
  1. 7.2 components/webform_optionsmarkup.inc \_webform_defaults_optionsmarkup()

Implements _webform_defaults_component().

File

components/webform_optionsmarkup.inc, line 14
Webform component that allows markup in checkbox and radio options.

Code

function _webform_defaults_optionsmarkup() {
  return array(
    'name' => '',
    'form_key' => NULL,
    'mandatory' => 0,
    'pid' => 0,
    'weight' => 0,
    'value' => '',
    'html' => TRUE,
    'extra' => array(
      'items' => '',
      'multiple' => NULL,
      'title_display' => 0,
      'description' => '',
      'private' => FALSE,
      'aslist' => NULL,
      'optrand' => FALSE,
    ),
  );
}