Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

RequirementsInterface.php

Namespace

Drupal\migrate\Plugin

File

core/modules/migrate/src/Plugin/RequirementsInterface.php

View source
<?php

namespace Drupal\migrate\Plugin;


/**
 * An interface to check for a migrate plugin requirements.
 */
interface RequirementsInterface {
    
    /**
     * Checks if requirements for this plugin are OK.
     *
     * @throws \Drupal\migrate\Exception\RequirementsException
     *   Thrown when requirements are not met.
     */
    public function checkRequirements();

}

Interfaces

Title Deprecated Summary
RequirementsInterface An interface to check for a migrate plugin requirements.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal