
| Current Path : /var/www/html/ift/vendor/drush/drush/includes/ |
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/html/ift/vendor/drush/drush/includes/site_install.inc |
<?php
/**
* A sneaky implementation of hook_module_implements_alter().
*
* site:install includes this file in order to not run any cron hooks during install.
* That's a bad idea.
*
* @param $implementations
* @param $hook
*/
function system_module_implements_alter(&$implementations, $hook) {
if ($hook == 'cron') {
$implementations = [];
}
}