You are here

interface YamlFormToWebformMigrateManagerInterface in YAML Form 8

Provides an interface for YAML Form to Webform migration.

Hierarchy

Expanded class hierarchy of YamlFormToWebformMigrateManagerInterface

All classes that implement YamlFormToWebformMigrateManagerInterface

1 file declares its use of YamlFormToWebformMigrateManagerInterface
YamlFormToWebformMigrateForm.php in modules/yamlform_to_webform/src/Form/YamlFormToWebformMigrateForm.php

File

modules/yamlform_to_webform/src/YamlFormToWebformMigrateManagerInterface.php, line 8

Namespace

Drupal\yamlform_to_webform
View source
interface YamlFormToWebformMigrateManagerInterface {

  /**
   * Check requirements.
   *
   * @return array
   *   An associative array containing error messages.
   */
  public function requirements();

  /**
   * Migrate the YAML Form module's configuration and data to the Webform module.
   *
   * @return array
   *   An associative array containing status messages.
   */
  public function migrate();

}

Members

Namesort descending Modifiers Type Description Overrides
YamlFormToWebformMigrateManagerInterface::migrate public function Migrate the YAML Form module's configuration and data to the Webform module. 1
YamlFormToWebformMigrateManagerInterface::requirements public function Check requirements. 1