function hook_upgrade_end_alter in Coder 7
Same name and namespace in other branches
- 7.2 coder_upgrade/coder_upgrade.api.php \hook_upgrade_end_alter()
Processes the directory after upgrade routines are applied.
This hook can be used to apply finishing touches to the directory of converted files. For example, a D7 core change is to add file entries to the .info files.
Parameters
string $dirname: The name of the directory with the converted files.
1 function implements hook_upgrade_end_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_end_alter in coder_upgrade/
conversions/ end.inc - Implements hook_upgrade_end_alter().
1 invocation of hook_upgrade_end_alter()
- coder_upgrade_convert_end in coder_upgrade/
includes/ main.inc - Applies finishing touches to the directory of converted files.
File
- coder_upgrade/
coder_upgrade.api.php, line 355 - Documents hooks provided by this module.
Code
function hook_upgrade_end_alter($dirname) {
// Do something.
}