-
Notifications
You must be signed in to change notification settings - Fork 2
/
import.php
40 lines (31 loc) · 939 Bytes
/
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
<?php
include("config_defaults.php");
include("config.php");
include("inc/header.php");
$page = basename(__FILE__, '.php');
?>
<!DOCTYPE html>
<html>
<head>
<?php
include("inc/logbook.php");
$Logbook = new Logbook($DbSpawner->newdb(), $log_id);
echo '<title>' . 'Import ADIF to logbook of ' . strtoupper($Cqrlog_common->logid_to_call($log_id)) . '</title>'
?>
<link rel="stylesheet" type="text/css" href="inc/css/logold.css">
<meta charset="UTF-8">
<?php include("inc/metaheader.php"); ?>
</head>
<body>
<?php
include("inc/navbar.php");
echo '<h1 align="center">Import ADIF to logbook of ' . strtoupper($Cqrlog_common->logid_to_call($log_id)) . '</h1><div class="hidden-xs hidden-sm"><br /><br /></div>';
include("inc/import_input.php");
include_once("inc/adif.php");
include("inc/import_proc.php");
?>
<?php
include("inc/metafooter.php");
?>
</body>
</html>