function date_restrictions_hook_info in Date Restrictions 7
Implements hook_hook_info().
File
- ./
date_restrictions.module, line 18
Code
function date_restrictions_hook_info() {
$group = array(
'group' => 'date_restrictions',
);
return array(
'date_restrictions_settings' => $group,
'date_restrictions_instance_settings_form' => $group,
'date_restrictions_date_popup_settings' => $group,
'date_restrictions_element_validate' => $group,
);
}