You are here

function webform_service_get_conditionals in Webform Service 7.4

Returns the data structure for webform conditionals.

1 call to webform_service_get_conditionals()
webform_service_get_webform in ./webform_service.module
Returns a data structure of a webform object.

File

./webform_service.module, line 154

Code

function webform_service_get_conditionals($webform) {
  $conditionals = array();
  foreach ($webform['conditionals'] as $cid => $conditional) {
    $conditionals[$cid] = $conditional;
  }
  return $conditionals;
}