-
Notifications
You must be signed in to change notification settings - Fork 31
/
import.php
65 lines (56 loc) · 2.09 KB
/
import.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
<?php
include ("include/dbconnect.php");
include ("include/format.inc.php");
?>
<title><?php echo ucfmsg("ADDRESS_BOOK").($group_name != "" ? " ($group_name)":""); ?></title>
<?php include ("include/header.inc.php"); ?>
<h1><?php echo ucfmsg('IMPORT'); ?></h1>
<?php
function getIfSet($ldif_record, $key) {
if(isset($ldif_record[$key])) {
return $ldif_record[$key];
} else {
return "";
}
}
if(!$submit) {
?>
<form method="post" enctype="multipart/form-data">
<label size=50 for="file">LDIF/VCF/CSV/XLS:</label>
<input size=40 type="file" name="file" id="file" /><br/>
<input type="hidden" name="del_format" value="phpaddr">
<input type="submit" name="submit" value="Submit" />
</form>
<br><br>
<i>Sample (.csv, .xls): <a href="import_sample.csv">import_sample.csv</a></i>
<?php
} else if ($_FILES["file"]["error"] > 0 || $read_only) {
echo "Error: " . $_FILES["file"]["error"] . "<br />";
} else {
$file_tmp_name = $_FILES["file"]["tmp_name"];
$file_lines = file($file_tmp_name, FILE_IGNORE_NEW_LINES);
$file_name = $_FILES["file"]["name"];
include "include/import.common.php";
//
// Save the group & addresses
//
$file_group_name = "";
if(count($ab) > 0) {
$file_group_name = "@IMPORT-".$file_name."-".Date("Y-m-j_H:i:s");
saveGroup($file_group_name);
}
foreach($ab as $addressbook) {
saveAddress($addressbook, $file_group_name);
echo "- <b><i>".getIfSet($addressbook,'firstname')
.trim(" ".getIfSet($addressbook,'middlename'))
.", ".getIfSet($addressbook,'lastname')
."</i></b>, ".getIfSet($addressbook,'email')
.", ".getIfSet($addressbook,'email2')
.", ".getIfSet($addressbook,'company')."<br>";
}
echo "<br/><br/><div class='msgbox'>The ".$import_type."-file '".$_FILES["file"]["name"]."' is imported into ".count($ab)." records<br/>";
echo "<i>of the new group <a href='index$page_ext?group_name=".$file_group_name."'>".$file_group_name."</a></i></div>";
//*/
} // end if(!$submit)
include ("include/footer.inc.php");
?>