interface IndexerExecutionInterface in Drupal 7 to 8/9 Module Upgrader 8
Hierarchy
- interface \Drupal\drupalmoduleupgrader\IndexerExecutionInterface
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\drupalmoduleupgraderView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
IndexerExecutionInterface:: |
public | function | 1 | |
IndexerExecutionInterface:: |
public | function | Returns if the specified index object can be evaluated and executed safely. | 1 |