Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / web / core / profiles / testing_requirements / testing_requirements.install
1 <?php
2
3 /**
4  * @file
5  * Install hooks for test profile.
6  */
7
8 /**
9  * Implements hook_requirements().
10  */
11 function testing_requirements_requirements($phase) {
12   $requirements = [];
13
14   if ($phase === 'install') {
15     $requirements['testing_requirements'] = [
16       'title' => t('Testing requirements'),
17       'severity' => REQUIREMENT_ERROR,
18       'description' => t('Testing requirements failed requirements.'),
19     ];
20   }
21
22   return $requirements;
23 }