
| Current Path : /var/www/html1/rrr/web/core/modules/entity_reference/ |
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/html1/rrr/web/core/modules/entity_reference/entity_reference.install |
<?php
/**
* @file
* Entity Reference install functions.
*/
/**
* Implements hook_requirements().
*/
function entity_reference_requirements($phase) {
$requirements = [];
if ($phase === 'install') {
$requirements['entity_reference'] = [
'title' => t('Entity Reference: Deprecated'),
'description' => t('Entity Reference is deprecated, all functionality has been moved to Core.'),
'value' => \Drupal::VERSION,
'severity' => REQUIREMENT_ERROR,
];
}
return $requirements;
}