ModuleHandlerEmptyAlter.php in Autosave Form 8
File
src/EmptyAlter/Extension/ModuleHandlerEmptyAlter.phpView source
<?php
namespace Drupal\autosave_form\EmptyAlter\Extension;
use Drupal\Core\Extension\ModuleHandler;
/**
* Class that has an empty implementation of the hook-alter method.
*/
class ModuleHandlerEmptyAlter extends ModuleHandler {
/**
* {@inheritdoc}
*/
public function __construct() {
}
/**
* {@inheritdoc}
*/
public function alter($type, &$data, &$context1 = NULL, &$context2 = NULL) {
}
}
Classes
Name | Description |
---|---|
ModuleHandlerEmptyAlter | Class that has an empty implementation of the hook-alter method. |