You are here

interface WebformAjaxInterface in Webform CiviCRM Integration 8.5

Hierarchy

Expanded class hierarchy of WebformAjaxInterface

All classes that implement WebformAjaxInterface

File

src/WebformAjaxInterface.php, line 5

Namespace

Drupal\webform_civicrm
View source
interface WebformAjaxInterface {

  /**
   * Load one or more contacts via ajax
   * @param $webformId
   * @param $fid
   */
  function contactAjax($webformId, $fid);

  /**
   * Access callback. Check if user has permission to view autocomplete results.
   *
   * @param Webform $webform
   * @param string $fid
   *   Webform component id
   *
   * @return bool
   */
  public function autocompleteAccess($webform, $fid);

}

Members

Namesort descending Modifiers Type Description Overrides
WebformAjaxInterface::autocompleteAccess public function Access callback. Check if user has permission to view autocomplete results. 1
WebformAjaxInterface::contactAjax function Load one or more contacts via ajax 1