You are here

function omega_tools_move in Omega Tools 7.3

@todo

1 call to omega_tools_move()
omega_tools_subtheme_wizard_finish in includes/omega_tools.wizard.inc
@todo

File

./omega_tools.module, line 291

Code

function omega_tools_move($source, $destination) {
  if (omega_tools_copy_recursive($source, $destination)) {
    file_unmanaged_delete_recursive($source);
    return $destination;
  }
  return FALSE;
}