-
Notifications
You must be signed in to change notification settings - Fork 3
/
leckerwissen.php
executable file
·145 lines (113 loc) · 4.9 KB
/
leckerwissen.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?php include "include/header.php";
array_push($categories, new Category("other", "Weiteres"));
?>
<section class="sectionbg">
<br>
<br>
<div style="
margin-left: 0%;
width: 100%;
margin-right: 0%;
margin-top: -56px;
">
<a href="/CHANGEeV_Booklet_der_Alternativen.pdf"
target="_blank">
<img src="booklet-banner-2.jpg" tag="booklet" width="100%" alt="Booklet der Alternativen"
height="auto">
</a>
</div>
<br>
<div style="background-color:#1BAB3F; width: 98%; margin-top: -20px;
margin-right: 1%; float: right; height: auto; font-size: 15px; color: white; padding: 10px;">
<b style="font-size: 18px; float: left;">Neues Leckerwissen hinzufügen</b>   
<a href="javascript:void(0)" onclick="return toggleArrow(this, '#addLeckerwissen')" style="background-color: white; margin-top: 10px;
border: 2px solid white; border-radius: 30px;"
><i class="fa fa-arrow-down"></i></a><br>
<form id="addLeckerwissen" action="javascript:void(0);" onsubmit="sendForm(this)" style="float: left; width: 100%; display:none;">
<label for="bezeichnung" style="color: white; font-size: 13px;">
Bezeichnung:<br>
<input type="text" name="title" size="20" max="200" style="color: black;">
</label>
<span style="font-size: 13px; float: right;"><b style="float: right;">
Art:</b><br>
<select name="type" size="1" style="color: black;">
<?php foreach($leckerwissenTypes as $t) { ?>
<option value="<?=e($t["name"])?>"><?= e($t["desc"]) ?>
</option>
<?php } ?>
</select></span>
<br>
<label for="link" style="color: white; font-size: 13px;">
Link:<br>
<input type="url" name="link"
size="20" max="200" style="color: black;">
</label>
<span style="font-size: 13px; float: right;"><b style="float: right;">
Kategorie:</b><br>
<select name="category" size="1" style="color: black;">
<?php foreach($categories as $c) { ?>
<option value="<?=e($c->name)?>">
<?=e($c->title)?></option>
<?php } ?>
</select>
</span><br><br>
<img style="float: left;" src="captcha/captcha.php" alt="Captcha"
title="Captcha - Bitte Zeichen in das Feld eingeben" width=140 height=40 />
<input style="color: black;" type="text" name="captcha_code" size=10 />
<br>
<b style="color: black; font-size: 11px; float: left; width: 75%; height: auto;">
Bitte gib den angezeigten Code in das daneben stehende Feld ein,
damit wir wissen, ob du ein Mensch bist.</b>
<input type="submit" value="Hinzufügen"
style="background-color: green; font-size: 12px; float: right; width: auto;">
<!--<input type="button" value="Letzten Eintrag löschen" style="background-color: #52150D; font-size: 12px" onClick="()"> -->
<span style="font-size: 13px; color: black; text-align: justify; float: right; font-family: Titillium Web; margin-top: 10px;">
Hier könnt ihr Links zu Artikel, Videos oder Sonstigem posten, die zum Thema <i>Nachhaltigkeit</i> passen. Öffnet dazu das Eingabefeld,
indem ihr auf den Pfeil klickt.
Bitte achtet darauf, <b>Werbung zu vermeiden</b>. Unpassende oder unangemessene Einträge sowie offensichtliche Werbung für konkrete Produkte oder
Unternehmen werden unangekündigt entfernt.
</span>
</form>
</div>
<div class="container" style="width: 100%; margin-right: 1%; ">
<?php
$leckerStmt = $db->prepare("SELECT link, title FROM leckerwissen
WHERE category = :category AND type = :type");
$i = 0;
foreach($categories as $c) {
if($i % 2 == 0 ) { ?>
<div class="row">
<?php } ?>
<div class="col-xs-12 col-md-6 col-lg-6">
<div class="leckerwissen-header <?= e($c->name) ?>"><?= e($c->title) ?></div>
<div class="leckerwissen-box" style="padding: 1%;">
<?php
$first = true;
foreach($leckerwissenTypes as $t) {
$leckerStmt->execute(["category" => $c->name,
"type" => $t["name"]]);
if($first) {
$first = false;
} else {
echo "<br>";
}
?>
<b style="font-family: Titillium Web;"><?= e($t["desc"]) ?></b><br>
<?php foreach($leckerStmt->fetchAll(PDO::FETCH_OBJ) as $entry) {?>
<span> <a href="<?= e($entry->link) ?>" target="_blank" class="indexlink">
<font color="#00301B"><span data-title="<?= e($entry->title)?>"><?= e($entry->title) ?></span></font>
</a><span><br>
<?php } ?>
<?php } ?>
</div>
</div>
<?php
if($i % 2 == 1 || $i == count($categories)-1) { ?>
</div>
<?php }
$i++;
}
?>
</div>
</section>
<?php include "include/footer.php"?>