You are here

FieldOptionsInterface.php in Webform CiviCRM Integration 8.5

File

src/FieldOptionsInterface.php
View source
<?php

namespace Drupal\webform_civicrm;

interface FieldOptionsInterface {

  /**
   * Get options for a specific field
   *
   * @param array $field
   *   Webform component array
   * @param string $context
   *   Where is this being called from?
   * @param array $data
   *   Array of crm entity data
   *
   * @return array
   */
  public function get($field, $context, $data);

}

Interfaces