You are here

function hook_upgrade_begin_alter in Coder 7.2

Same name and namespace in other branches
  1. 7 coder_upgrade/coder_upgrade.api.php \hook_upgrade_begin_alter()

Processes the directory before upgrade routines are applied.

This hook can be used to cache information needed by other routines. For example, core changes need to know about hook_theme or hook_menu to make theme changes and form API changes.

Parameters

array $item: Array of a directory containing the files to convert.

1 function implements hook_upgrade_begin_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

coder_upgrade_upgrade_begin_alter in coder_upgrade/conversions/begin.inc
Implements hook_upgrade_begin_alter().
1 invocation of hook_upgrade_begin_alter()
coder_upgrade_convert_begin in coder_upgrade/includes/main.inc
Processes the directory before conversion routines are applied.

File

coder_upgrade/coder_upgrade.api.php, line 341
Documents hooks provided by this module.

Code

function hook_upgrade_begin_alter($item) {

  // Do something.
}