function hostingService_dns_master::delete_revision in Hosting 6.2
Overrides hostingService::delete_revision
File
- dns/
hosting_dns.service.inc, line 85 - Provide the hosting serivce classes for DNS integration.
Class
- hostingService_dns_master
- Helper class to factor together master functionality
Code
function delete_revision() {
parent::delete_revision();
db_query('DELETE FROM {hosting_dns_slaves} WHERE master_vid = %d', $this->server->vid);
}