
| Current Path : /var/www/html/strat/web/core/modules/system/tests/modules/plugin_test/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/strat/web/core/modules/system/tests/modules/plugin_test/plugin_test.module |
<?php
/**
* @file
* Helper module for the plugin tests.
*/
use Drupal\plugin_test\Plugin\plugin_test\fruit\Apple;
/**
* Implements hook_test_plugin_info().
*/
function plugin_test_test_plugin_info() {
return [
'apple' => [
'id' => 'apple',
'class' => Apple::class,
],
];
}
/**
* 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;
}