You are here

interface FieldsInterface in Webform CiviCRM Integration 8.5

Hierarchy

Expanded class hierarchy of FieldsInterface

All classes that implement FieldsInterface

File

src/FieldsInterface.php, line 5

Namespace

Drupal\webform_civicrm
View source
interface FieldsInterface {

  /**
   * Fetches CiviCRM field data.
   *
   * @param string $var
   *   Name of variable to return: fields, tokens, or sets
   *
   * @return array
   * @return array
   *   fields: The CiviCRM contact fields this module supports
   *   tokens: Available tokens keyed to field ids
   *   sets: Info on fieldsets (entities)
   */
  public function get($var = 'fields');

}

Members

Namesort descending Modifiers Type Description Overrides
FieldsInterface::get public function Fetches CiviCRM field data. 1