You are here

interface IndexerExecutionInterface in Drupal 7 to 8/9 Module Upgrader 8

Hierarchy

Expanded class hierarchy of IndexerExecutionInterface

All classes that implement IndexerExecutionInterface

1 file declares its use of IndexerExecutionInterface
Functions.php in src/Plugin/DMU/Indexer/Functions.php

File

src/IndexerExecutionInterface.php, line 5

Namespace

Drupal\drupalmoduleupgrader
View source
interface IndexerExecutionInterface {

  /**
   * Returns if the specified index object can be evaluated and executed safely.
   *
   * @param string $id
   *   The object identifier.
   *
   * @return bool
   */
  public function hasExecutable($id);
  public function execute($id, array $arguments = []);

}

Members

Namesort descending Modifiers Type Description Overrides
IndexerExecutionInterface::execute public function 1
IndexerExecutionInterface::hasExecutable public function Returns if the specified index object can be evaluated and executed safely. 1