-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentrypoint.php
61 lines (47 loc) · 1.86 KB
/
entrypoint.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"/>
<meta name="referrer" content="origin-when-cross-origin"/>
<title>Open Knowledge Maps Search Box</title>
<link rel="stylesheet" href="search-flow/lib/bootstrap.min.css">
<link rel="stylesheet" href="search-flow/lib/bootstrap-multiselect.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="search-flow/css/search_box.css?v=2023-06-07">
<script type="module" src="search-flow/js/searchbox/runner.js"></script>
</head>
<body class="iframed">
<?php
$search_box_class = "iframed";
include 'search-flow/inc/search-form/new-search-form.php';
//inlined from project-website/config.example.php
//clean this up later
$SITE_URL = "//localhost:8085/";
$HEADSTART_URL = $SITE_URL . "./headstart/";
$COMPONENTS_PATH = "components/";
$LIB_PATH = "lib/";
$SEARCH_FLOW_PATH = "./search-flow/";
$SNAPSHOT_PATH = $HEADSTART_URL . "server/storage/";
$PIWIK_ENABLED = false;
$PIWIK_PATH = "piwik/";
$PIWIK_SITE_ID = "1";
# set it to true to force embed mode in Matomo (no cookies)
$PIWIK_FORCE_EMBED = false;
$GA_ENABLED = false;
$GA_CODE = "XX-00000000-0";
$BASE_DOWN = false;
$PUBMED_DOWN = false;
$COOKIE_DOMAIN = "";
$GA_ENABLED = false;
$PIWIK_FORCE_EMBED = true;
//clean this up later
//curl
//pdo_sqlite
//mbstring
//fileinfo
//xml
?>
</body>
</html>