acquia.install 413 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Implement hook_install().
  4. *
  5. * Perform actions to set up the site for this profile.
  6. */
  7. function acquia_install() {
  8. include_once DRUPAL_ROOT . '/profiles/standard/standard.install';
  9. $result = standard_install();
  10. $db_driver = Database::getConnection()->driver();
  11. if ($db_driver == 'sqlsrv') {
  12. // Also enable the module.
  13. module_enable(array('sqlsrv'), FALSE);
  14. }
  15. return $result;
  16. }