-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfolder_move.php
55 lines (43 loc) · 2.19 KB
/
folder_move.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
define('ACCESS', true);
require '.init.php';
$title = 'Di chuyển thư mục';
require 'header.php';
echo '<div class="title">' . $title . '</div>';
if ($dir == null || $name == null || !is_dir(processDirectory($dir . '/' . $name))) {
echo '<div class="list"><span>Đường dẫn không tồn tại</span></div>
<div class="title">Chức năng</div>
<ul class="list">
<li><img src="icon/list.png"/> <a href="index.php' . $pages['paramater_0'] . '">Danh sách</a></li>
</ul>';
} else {
$dir = processDirectory($dir);
if (isset($_POST['submit'])) {
echo '<div class="notice_failure">';
if (empty($_POST['path']))
echo 'Chưa nhập đầy đủ thông tin';
else if ($dir == processDirectory($_POST['path']))
echo 'Đường dẫn mới phải khác đường dẫn hiện tại';
else if (!is_dir($_POST['path']))
echo 'Đường dẫn mới không tồn tại';
else if (isPathNotPermission(processDirectory($_POST['path'])))
echo 'Bạn không thể di chuyển thư mục tới đường dẫn của File Manager';
else if (isPathNotPermission(processDirectory($_POST['path'] . '/' . $name)))
echo 'Bạn không thể di chuyển thư mục giống tên tới thư mục chứa thư mục của File Manager';
else if (!movedir($dir . '/' . $name, processDirectory($_POST['path'])))
echo 'Di chuyển thư mục thất bại';
else
goURL('index.php?dir=' . $dirEncode . $pages['paramater_1']);
echo '</div>';
}
echo '<div class="list">
<span class="bull">• </span><span>' . printPath($dir . '/' . $name, true) . '</span><hr/>
<form action="folder_move.php?dir=' . $dirEncode . '&name=' . $name . $pages['paramater_1'] . '" method="post">
<span class="bull">• </span>Đường dẫn thư mục mới:<br/>
<input type="text" name="path" value="' . (isset($_POST['path']) ? $_POST['path'] : $dir) . '" size="18"/><br/>
<input type="submit" name="submit" value="Di chuyển"/>
</form>
</div>';
printFileActions($file);
}
require 'footer.php';