You are here

function coder_upgrade_convert_end in Coder 7

Same name and namespace in other branches
  1. 7.2 coder_upgrade/includes/main.inc \coder_upgrade_convert_end()

Applies finishing touches to the directory of converted files.

Parameters

string $dirname: The name of the directory with the converted files.

1 call to coder_upgrade_convert_end()
coder_upgrade_start in coder_upgrade/includes/main.inc
Prepares conversion environment and starts conversion loop.

File

coder_upgrade/includes/main.inc, line 166
Manages application of conversion routines, logging, and patch file creation.

Code

function coder_upgrade_convert_end($dirname) {

  //  $dirname = $item['old_dir'];
  coder_upgrade_log_print("\n*************************");
  coder_upgrade_log_print('Post-processing the directory => ' . $dirname);
  coder_upgrade_log_print("*************************");
  coder_upgrade_log_print("Calling hook_upgrade_end_alter");
  drupal_alter('upgrade_end', $dirname);
  coder_upgrade_log_print("Completed hook_upgrade_end_alter");
}