You are here

function domain_theme_domain_delete in Domain Access 7.3

Implements hook_domain_delete().

File

domain_theme/domain_theme.domain.inc, line 84
Domain hooks for Domain Theme.

Code

function domain_theme_domain_delete($domain, $form_values = array()) {
  db_delete('domain_theme')
    ->condition('domain_id', $domain['domain_id'])
    ->execute();
}