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