You are here

function calendar_systems_patch in Calendar Systems 7.3

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 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 415
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 hooked'),
    'patch' => 'core_format_date_hook.patch',
    'module' => 'core',
    'issue' => '',
    'description' => t('Allows drupal format_date function to be hooked'),
    'patchdir' => 'patch',
  );
  return $patches;
}