You are here

interface ContactComponentInterface in Webform CiviCRM Integration 8.5

Hierarchy

Expanded class hierarchy of ContactComponentInterface

All classes that implement ContactComponentInterface

File

src/ContactComponentInterface.php, line 5

Namespace

Drupal\webform_civicrm
View source
interface ContactComponentInterface {

  /**
   * Format filters for the contact get api
   *
   * @param \Drupal\webform\WebformInterface $node
   *   Webform node object
   * @param array $component
   *   Webform component of type 'civicrm_contact'
   *
   * @return array
   *   Api params
   */
  function wf_crm_search_filters($node, array $component);

  /**
   * Get a contact's relations of certain types
   *
   * @param int cid
   *   Contact id
   * @param array types
   *   Array of relationship_type_ids
   * @param bool $current
   *   Limit to current & enabled relations?
   *
   * @return array
   */
  function wf_crm_find_relations($cid, $types = [], $current = TRUE);

  /**
   * Load contact name if user has permission. Else return FALSE.
   *
   * @param $component
   *   Webform component of type 'civicrm_contact'
   * @param $filters
   *   Contact get params
   * @param $cid
   *   Contact id
   *
   * @return bool|string
   */
  function wf_crm_contact_access($component, $filters, $cid);

  /**
   * Returns a list of contacts based on component settings.
   *
   * @param \Drupal\webform\WebformInterface $node
   *   Node object
   * @param array $component
   *   Webform component
   * @param array $params
   *   Contact get params (filters)
   * @param array $contacts
   *   Existing contact data
   * @param string $str
   *   Search string (used during autocomplete)
   *
   * @return array
   */
  function wf_crm_contact_search($node, $component, $params, $contacts, $str = NULL);

}

Members

Namesort descending Modifiers Type Description Overrides
ContactComponentInterface::wf_crm_contact_access function Load contact name if user has permission. Else return FALSE. 1
ContactComponentInterface::wf_crm_contact_search function Returns a list of contacts based on component settings. 1
ContactComponentInterface::wf_crm_find_relations function Get a contact's relations of certain types 1
ContactComponentInterface::wf_crm_search_filters function Format filters for the contact get api 1