class ThemeManagerEmptyAlter in Autosave Form 8
Class that has an empty implementation of the hook-alter method.
Hierarchy
- class \Drupal\Core\Theme\ThemeManager implements ThemeManagerInterface
- class \Drupal\autosave_form\EmptyAlter\Theme\ThemeManagerEmptyAlter
Expanded class hierarchy of ThemeManagerEmptyAlter
1 file declares its use of ThemeManagerEmptyAlter
- AutosaveFormBuilder.php in src/
Form/ AutosaveFormBuilder.php
File
- src/
EmptyAlter/ Theme/ ThemeManagerEmptyAlter.php, line 10
Namespace
Drupal\autosave_form\EmptyAlter\ThemeView source
class ThemeManagerEmptyAlter extends ThemeManager {
/**
* {@inheritdoc}
*/
public function __construct() {
}
/**
* {@inheritdoc}
*/
public function alter($type, &$data, &$context1 = NULL, &$context2 = NULL) {
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ThemeManager:: |
protected | property | Contains the current active theme. | |
ThemeManager:: |
protected | property | The module handler. | |
ThemeManager:: |
protected | property | The app root. | |
ThemeManager:: |
protected | property | The theme initialization. | |
ThemeManager:: |
protected | property | The theme negotiator. | |
ThemeManager:: |
protected | property | The theme registry used to render an output. | |
ThemeManager:: |
public | function |
@todo Should we cache some of these information? Overrides ThemeManagerInterface:: |
|
ThemeManager:: |
public | function |
Returns the active theme object. Overrides ThemeManagerInterface:: |
|
ThemeManager:: |
public | function |
Determines whether there is an active theme. Overrides ThemeManagerInterface:: |
|
ThemeManager:: |
protected | function | Initializes the active theme for a given route match. | |
ThemeManager:: |
public | function |
Generates themed output. Overrides ThemeManagerInterface:: |
|
ThemeManager:: |
public | function |
Resets the current active theme. Overrides ThemeManagerInterface:: |
|
ThemeManager:: |
public | function |
Sets the current active theme manually. Overrides ThemeManagerInterface:: |
|
ThemeManager:: |
public | function | Sets the theme registry. | |
ThemeManagerEmptyAlter:: |
public | function |
Passes alterable variables to specific $theme_TYPE_alter() implementations. Overrides ThemeManager:: |
|
ThemeManagerEmptyAlter:: |
public | function |
Constructs a new ThemeManager object. Overrides ThemeManager:: |