FormMapHandlerPluginInterface.php in Pardot Integration 2.x
Namespace
Drupal\pardot\PluginFile
src/Plugin/FormMapHandlerPluginInterface.phpView 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
Name | Description |
---|---|
FormMapHandlerPluginInterface | Defines an interface for Form Map Hanlder Plugin plugins. |