You are here

function hosting_ssl_uninstall in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 web_server/ssl/hosting_ssl.install \hosting_ssl_uninstall()
  2. 7.3 web_server/ssl/hosting_ssl.install \hosting_ssl_uninstall()

File

web_server/ssl/hosting_ssl.install, line 117

Code

function hosting_ssl_uninstall() {
  db_query("DELETE FROM {hosting_service} WHERE service='http' and type='apache_ssl'");
  db_query("DELETE FROM {hosting_service} WHERE service='http' and type='nginx_ssl'");
  drupal_uninstall_schema('hosting_ssl');
}