plugin_test.module in Drupal 8
Same filename and directory in other branches
Helper module for the plugin tests.
File
core/modules/system/tests/modules/plugin_test/plugin_test.moduleView source
<?php
/**
* @file
* Helper module for the plugin tests.
*/
/**
* Implements hook_plugin_test_alter().
*/
function plugin_test_plugin_test_alter(&$definitions) {
foreach ($definitions as &$definition) {
$definition['altered'] = TRUE;
}
$definitions['user_login']['altered_single'] = TRUE;
}
Functions
Name | Description |
---|---|
plugin_test_plugin_test_alter | Implements hook_plugin_test_alter(). |