function calendar_systems_patch in Calendar Systems 8
Same name and namespace in other branches
- 6.3 calendar_systems.module \calendar_systems_patch()
- 6 calendar_systems.module \calendar_systems_patch()
- 6.2 calendar_systems.module \calendar_systems_patch()
- 7.3 calendar_systems.module \calendar_systems_patch()
- 7 calendar_systems.module \calendar_systems_patch()
- 7.2 calendar_systems.module \calendar_systems_patch()
Implementation of hook_patch() of patch_manager module
File
- ./
calendar_systems.module, line 84 - Contains Calendar Systems hook implementations and helpers.
Code
function calendar_systems_patch() {
$patches = array();
$patches[] = array(
'title' => t('Allows drupal format_date function to be altered by other modules'),
'patch' => 'patch/core_format_date_alter.patch',
'module' => 'core',
'issue' => '1178342',
'description' => t('Allows drupal format_date function to be altered by other modules'),
'patchdir' => '',
);
return $patches;
}