clean install

This commit is contained in:
2024-12-10 15:08:16 +01:00
commit e14eb2d8fd
31193 changed files with 3555714 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
/**
* @file
* Install, update, and uninstall functions for the fraction module.
*/
/**
* Implements hook_requirements().
*/
function fraction_requirements($phase) {
$requirements = [];
// If BCMath is not available, add a note to the status page.
if ($phase == 'runtime' && !function_exists('bcadd')) {
$requirements['fraction'] = [
'title' => t('BCMath is not available'),
'description' => t('The Fraction module uses BCMath (when available) to ensure calculations are performed with maximum precision. Without BCMath, Fraction will still work, but normal PHP float arithmetic will be used. For an overview of float arithmetic limitations, see <a href="http://php.net/manual/en/language.types.float.php">http://php.net/manual/en/language.types.float.php</a>.'),
'severity' => REQUIREMENT_WARNING,
];
}
return $requirements;
}