function hansel_domain_hansel_switch_types in Hansel breadcrumbs 7
Same name and namespace in other branches
- 8 domain/hansel_domain.module \hansel_domain_hansel_switch_types()
Implements hook_hansel_switch_types().
File
- domain/
hansel_domain.module, line 112 - Hansel domain integration
Code
function hansel_domain_hansel_switch_types() {
return array(
'subdomain' => array(
'compare' => 'hansel_domain_switch_subdomain_compare',
),
'domain id' => array(
'compare' => 'hansel_domain_switch_domain_id_compare',
),
);
}