function hansel_domain_hansel_action_types in Hansel breadcrumbs 7
Same name and namespace in other branches
- 8 domain/hansel_domain.module \hansel_domain_hansel_action_types()
Implements hook_hansel_action_types().
File
- domain/
hansel_domain.module, line 12 - Hansel domain integration
Code
function hansel_domain_hansel_action_types() {
return array(
'add domain' => array(
'get crumbs' => 'hansel_domain_action_add_domain_get_crumbs',
'info' => 'hansel_domain_action_add_domain_info',
'config form' => 'hansel_domain_action_add_domain_config_form',
),
);
}