-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.php
executable file
·65 lines (60 loc) · 1.54 KB
/
docs.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
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Documents</title>
</head>
<body>
<?php
require_once 'base.php';
$error = '';
$getFile = urldecode($_GET['file']);
if (!empty($getFile)) {
// run for specific file
try {
$doc = new Document($getFile);
$doc->setup();
} catch (Exception $ex) {
$error = 'Exception: ' + $ex->getMessage();
}
if(empty($error)) {
?>
Файлът <strong><?php echo $getFile; ?></strong> е индексиран успешно!
<?php
} else {
echo $error;
}
?>
<br />
<a href="<?php echo BASE_URL . 'docs.php'; ?>">Към списъка с файловете за индексиране</a> |
<a href="<?php echo BASE_URL; ?>">Към търсачката</a>
<?php
} else {
$documentsManager = new DocumentsManager();
$files = $documentsManager->getNotIndexedFiles();
if (!empty($files)) {
?>
Изберете файл за индексиране:<br />
<ul>
<?php
foreach ($files as $file) {
?>
<li><a href="<?php echo BASE_URL . 'docs.php?file=' . urlencode($file); ?>" alt="Индексирай"><?php echo $file; ?></a></li>
<?php
}
?>
</ul>
<?php
} else {
?>
Няма фалйвое за индексиране.
<?php
}
?>
<br >
<a href="<?php echo BASE_URL; ?>">Към търсачката</a>
<?php
}
?>
</body>
</html>