action_cut_file_to_file.php
上传用户:feiyaoda
上传日期:2016-11-21
资源大小:9556k
文件大小:1k
- <?php
- /*********************************************************
- *
- * STEP 1 : we copy files to move
- *
- *********************************************************/
- include ('action_copy_file_to_file.php');
- /*********************************************************
- *
- * STEP 2 : we check that we are at right time to perform
- *
- *********************************************************/
- if ($step != 'copy')
- die();
- if (0 != count($errors))
- die ($get_string->get('errors_no_delete'));
- /*********************************************************
- *
- * STEP 3 : we remove originals
- *
- *********************************************************/
-
- // preparing buffer selection files to pass to delete script
-
- $buffer_selection_files = array();
- foreach ($copy_entry as $src_abs_path => $copy_info)
- {
- $buffer_selection_files[] = $src_abs_path;
- }
- // then we call delete script
- include ('action_delete_file.php');