You are here

FormMapHandlerPluginInterface.php in Pardot Integration 2.x

File

src/Plugin/FormMapHandlerPluginInterface.php
View source
<?php

namespace Drupal\pardot\Plugin;

use Drupal\Component\Plugin\PluginInspectionInterface;
use Drupal\pardot\FormMap;

/**
 * Defines an interface for Form Map Hanlder Plugin plugins.
 */
interface FormMapHandlerPluginInterface extends PluginInspectionInterface {

  /**
   * Provides a way to inject rows programmatically.
   *
   * @param \Drupal\pardot\FormMap $pardot_form_map
   *   The form map object to hook into.
   */
  public function injectRequiredFields(FormMap $pardot_form_map);

}

Interfaces

Namesort descending Description
FormMapHandlerPluginInterface Defines an interface for Form Map Hanlder Plugin plugins.