schemadotorg_starterkit_medical-1.0.x-dev/schemadotorg_starterkit_medical.install
schemadotorg_starterkit_medical.install
<?php
/**
* @file
* Installation hooks for the Schema.org Blueprints Starter Kit: Medical module.
*/
declare(strict_types=1);
/**
* Implements hook_install().
*/
function schemadotorg_starterkit_medical_install(bool $is_syncing): void {
if ($is_syncing) {
return;
}
// Setting weight to 1 to alter node links after schemadotorg_epp.module.
module_set_weight('schemadotorg_starterkit_medical', 1);
}
