You are here

function hostingService_https::delete in Aegir HTTPS 7.3

File

./hosting_https.service.inc, line 26
Define Hosting service class for HTTPS.

Class

hostingService_https
@file Define Hosting service class for HTTPS.

Code

function delete() {
  parent::delete();
  db_delete('hosting_https_server')
    ->condition('nid', $this->server->nid)
    ->execute();
}