Pull merge.
[yaffs-website] / web / core / modules / system / tests / modules / plugin_test / plugin_test.module
1 <?php
2
3 /**
4  * @file
5  * Helper module for the plugin tests.
6  */
7
8 /**
9  * Implements hook_plugin_test_alter().
10  */
11 function plugin_test_plugin_test_alter(&$definitions) {
12   foreach ($definitions as &$definition) {
13     $definition['altered'] = TRUE;
14   }
15   $definitions['user_login']['altered_single'] = TRUE;
16 }