You are here

function wf_crm_get_surveys in Webform CiviCRM Integration 7.4

Same name and namespace in other branches
  1. 7.5 includes/utils.inc \wf_crm_get_surveys()

Get list of surveys

Parameters

array $act:

Return value

array

1 call to wf_crm_get_surveys()
wf_crm_field_options in includes/utils.inc
Get options for a specific field

File

includes/utils.inc, line 267
Webform CiviCRM module's common utility functions.

Code

function wf_crm_get_surveys($act = array()) {
  return wf_crm_apivalues('survey', 'get', array_filter($act), 'title');
}