You are here

function hostingService_http_pack::delete in Hosting 7.3

Same name and namespace in other branches
  1. 6.2 web_pack/hosting_web_pack.service.inc \hostingService_http_pack::delete()
  2. 7.4 web_pack/hosting_web_pack.service.inc \hostingService_http_pack::delete()

Overrides hostingService::delete

File

web_pack/hosting_web_pack.service.inc, line 94

Class

hostingService_http_pack

Code

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