interface YamlFormThirdPartySettingsManagerInterface in YAML Form 8
Defines an interface for form third party settings manager classes.
Hierarchy
- interface \Drupal\Core\Config\Entity\ThirdPartySettingsInterface
- interface \Drupal\yamlform\YamlFormThirdPartySettingsManagerInterface
Expanded class hierarchy of YamlFormThirdPartySettingsManagerInterface
All classes that implement YamlFormThirdPartySettingsManagerInterface
1 file declares its use of YamlFormThirdPartySettingsManagerInterface
File
- src/
YamlFormThirdPartySettingsManagerInterface.php, line 11
Namespace
Drupal\yamlformView source
interface YamlFormThirdPartySettingsManagerInterface extends ThirdPartySettingsInterface {
/**
* Wrapper for \Drupal\Core\Extension\ModuleHandlerInterface::alter.
*
* Loads all form third party settings before execute alter hooks.
*
* @see \Drupal\yamlform\YamlFormThirdPartySettingsManager::__construct
*/
public function alter($type, &$data, &$context1 = NULL, &$context2 = NULL);
/**
* Third party settings form constructor.
*
* @param array $form
* An associative array containing the structure of the form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
*
* @return array
* The form structure.
*/
public function buildForm(array $form, FormStateInterface $form_state);
/**
* Form element #after_build callback: Checks for 'third_party_settings'.
*
* @param array $form
* An associative array containing the structure of the form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
*
* @return array
* The form structure.
*/
public function afterBuild(array $form, FormStateInterface $form_state);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ThirdPartySettingsInterface:: |
public | function | Gets the list of third parties that store information. | 5 |
ThirdPartySettingsInterface:: |
public | function | Gets the value of a third-party setting. | 5 |
ThirdPartySettingsInterface:: |
public | function | Gets all third-party settings of a given module. | 5 |
ThirdPartySettingsInterface:: |
public | function | Sets the value of a third-party setting. | 5 |
ThirdPartySettingsInterface:: |
public | function | Unsets a third-party setting. | 5 |
YamlFormThirdPartySettingsManagerInterface:: |
public | function | Form element #after_build callback: Checks for 'third_party_settings'. | 1 |
YamlFormThirdPartySettingsManagerInterface:: |
public | function | Wrapper for \Drupal\Core\Extension\ModuleHandlerInterface::alter. | 1 |
YamlFormThirdPartySettingsManagerInterface:: |
public | function | Third party settings form constructor. | 1 |