You are here

public static function Model::hook_patch in Calendar Systems 8.2

Implementation of hook_patch() of patch_manager module

Return value

array

1 call to Model::hook_patch()
calendar_systems_patch in ./calendar_systems.module
Implementation of hook_patch() of patch_manager module

File

src/Model.php, line 43
This is where the module integrates with Drupal

Class

Model

Namespace

Drupal\calendar_systems

Code

public static function hook_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;
}