You are here

function calendar_systems_patch in Calendar Systems 7

Same name and namespace in other branches
  1. 8 calendar_systems.module \calendar_systems_patch()
  2. 6.3 calendar_systems.module \calendar_systems_patch()
  3. 6 calendar_systems.module \calendar_systems_patch()
  4. 6.2 calendar_systems.module \calendar_systems_patch()
  5. 7.3 calendar_systems.module \calendar_systems_patch()
  6. 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;
}