first commit

This commit is contained in:
2024-07-15 12:33:27 +02:00
commit ce50ae282b
22084 changed files with 2623791 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
name: 'Testing requirements'
type: profile
description: 'Profile for testing hook_requirements().'
# version: VERSION
hidden: true
# Information added by Drupal.org packaging script on 2024-07-04
version: '10.3.1'
project: 'drupal'
datestamp: 1720094222

View File

@@ -0,0 +1,23 @@
<?php
/**
* @file
* Install hooks for test profile.
*/
/**
* Implements hook_requirements().
*/
function testing_requirements_requirements($phase) {
$requirements = [];
if ($phase === 'install') {
$requirements['testing_requirements'] = [
'title' => t('Testing requirements'),
'severity' => REQUIREMENT_ERROR,
'description' => t('Testing requirements failed requirements.'),
];
}
return $requirements;
}