-
Notifications
You must be signed in to change notification settings - Fork 1
/
skjema.php
161 lines (134 loc) · 5.93 KB
/
skjema.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<div class="katalogkort">
<input type="radio" name="katalogkort" id="tab1" checked>
<label for="tab1"><?php _e('Åpningstider', 'bibliotider'); ?></label>
<input type="radio" name="katalogkort" id="tab2">
<label for="tab2"><?php _e('Unntak', 'bibliotider'); ?></label>
<input type="radio" name="katalogkort" id="tab3">
<label for="tab3"><?php _e('Filialer', 'bibliotider'); ?></label>
<input type="radio" name="katalogkort" id="tab4">
<label for="tab4"><?php _e('Perioder', 'bibliotider'); ?></label>
<input type="radio" name="katalogkort" id="tab5">
<label for="tab5"><?php _e('Typer åpningstid', 'bibliotider'); ?></label>
<input type="radio" name="katalogkort" id="tab6">
<label for="tab6"><?php _e('Innstillinger', 'bibliotider'); ?></label>
<div class="tab-panels">
<section class="tab-panel">
<?php
// ENDRE STANDARD ÅPNINGSTIDER
echo '<form method="post" action="">';
$eksplodert_tid = explode('-', date('Y-m-d'));
$gitt_ukedag = date('N');
for ($i = 0; $i < $antall_filialer; $i++) {
echo '<h2>'.$filialer[$i].'</h2>';
for ($j = 0; $j < $antall_perioder; $j++) {
$faktisk_p = $perioder[$j]['id'];
echo '<h3>'.sprintf(__('%1$s (fra %2$s til %3$s)', 'bibliotider'), $perioder[$j]['navn'], date_i18n(__('j. F', 'bibliotider'), strtotime($perioder[$j]['startdato'])), date_i18n(__('j. F', 'bibliotider'), strtotime($perioder[$j]['sluttdato']))).'</h3>';
echo '<table class="apningstider">';
// Headerrad
echo '<tr>';
echo '<th>'.__('Dag', 'bibliotider').'</th>';
for ( $h = 0; $h < $antall_betjenttyper; $h++ ) {
echo '<th>'.$betjenttyper[$h][0].'</th>';
}
echo '</tr>';
for ( $d = 1; $d <= 7; $d++) {
$dagtid = mktime( 12, 0, 0, $eksplodert_tid[1], $eksplodert_tid[2] - $gitt_ukedag + $d, $eksplodert_tid[0] );
$dag = date( 'Y-m-d', $dagtid );
echo '<tr>';
echo '<td>';
echo date_i18n( __('l', 'bibliotider'), $dagtid );
echo '</td>';
// Hent info om denne dagens åpningstider
for ( $h = 0; $h < $antall_betjenttyper; $h++ ) {
echo '<td>';
echo '<input type="time" name="f-'.$i.'-p-'.$j.'-d-'.$d.'-b-'.$h.'-start" value="'.$verdier[$i][$j][$d][$h]['starttid'].'" />';
echo '–';
echo '<input type="time" name="f-'.$i.'-p-'.$j.'-d-'.$d.'-b-'.$h.'-slutt" value="'.$verdier[$i][$j][$d][$h]['sluttid'].'" />';
echo '</td>';
}
echo '</tr>';
}
echo '</table>';
}
}
echo '<p><input type="hidden" name="fane_sendt_inn" value="standardtider"><input type="submit" value="'.__('Lagre endringer', 'bibliotider').'" /></p>';
echo '</form>';
?>
</section>
<section class="tab-panel">
<?php
echo '<form method="post" action="">';
echo '<h2>Registrer unntak</h2>';
echo '<p>'.__('Filial:', 'bibliotider').'<br/>';
echo '<select name="filial">';
for ($i = 0; $i < $antall_filialer; $i++) {
echo '<option value="'.$i.'">'.$filialer[$i].'</option>';
}
echo '</select>';
echo '</p>';
echo '<p>'.__('Fra dato:', 'bibliotider').'<br/>';
echo '<input type="date" name="startdato" /></p>'."\n";
echo '<p>'.__('Til dato:', 'bibliotider').'<br/>';
echo '<input type="date" name="sluttdato" /></p>'."\n";
echo '<table class="apningstider">';
// Headerrad
echo '<tr>';
for ( $h = 0; $h < $antall_betjenttyper; $h++ ) {
echo '<th>'.$betjenttyper[$h][0].'</th>';
}
echo '</tr>';
for ( $h = 0; $h < $antall_betjenttyper; $h++ ) {
echo '<td>';
echo '<input type="time" name="'.$h.'-start" />';
echo '–';
echo '<input type="time" name="'.$h.'-slutt" />';
echo '</td>';
}
echo '</table>';
echo '<p><input type="hidden" name="fane_sendt_inn" value="unntak"><input type="submit" value="'.__('Lagre unntak', 'bibliotider').'" /></p>';
echo '</form>';
echo '<h2>'.__('Registrerte unntak', 'bibliotider').'</h2>';
?>
</section>
<section class="tab-panel">
<?php
// REDIGER FILIALER
echo '<form method="post" action="">';
echo '<p>'.__('Rediger lista over avdelinger/filialer ved å redigere teksten i feltet under. Hver filial må stå på en egen linje.', 'bibliotider').'</p>';
echo '<textarea name="filialliste">'.implode("\n", $filialer).'</textarea>';
echo '<p><input type="hidden" name="fane_sendt_inn" value="filialer"><input type="submit" value="'.__('Lagre endringer', 'bibliotider').'" /></p>';
echo '</form>';
?>
</section>
<section class="tab-panel">
</section>
<section class="tab-panel">
<?php
// REDIGER TYPER ÅPNINGSTID
echo '<form method="post" action="">';
echo '<p>'.__('Biblioteket kan ha flere typer åpningstid (f.eks. betjent og meråpent). Du kan redigere lista over typer åpningstid ved å redigere teksten i feltet under.', 'bibliotider').'</p>';
echo '<p>'.__('Hver type åpningstid må stå på en egen linje, i dette formatet: [Navn på type]: [Beskrivelse av type]', 'bibliotider').'</p>';
echo '<p><em>['.__('Navn på type', 'bibliotider').']</em><strong>: </strong><em>['.__('Beskrivelse av type', 'bibliotider').']</em></p>';
$betjenttyper_tekst = '';
for ($i = 0; $i < $antall_betjenttyper; $i++) {
if ($i > 0) {
$betjenttyper_tekst .= "\n";
}
$betjenttyper_tekst .= $betjenttyper[$i][0].': '.$betjenttyper[$i][1];
}
echo '<textarea name="betjenttypeliste">'.$betjenttyper_tekst.'</textarea>';
echo '<p><input type="hidden" name="fane_sendt_inn" value="betjenttyper"><input type="submit" value="'.__('Lagre endringer', 'bibliotider').'" /></p>';
echo '</form>';
?>
</section>
<section class="tab-panel">
<?php
// ANDRE INNSTILLINGER
echo '<form method="post" action="">';
echo '<p>'.__('Slug til Åpningstider-side:', 'bibliotider').'<br /><input type="text" name="slug" value="'.get_option('bibliotider_side').'"></p>';
echo '<p><input type="hidden" name="fane_sendt_inn" value="innstillinger"><input type="submit" value="'.__('Lagre endringer', 'bibliotider').'" /></p>';
echo '</form>';
?>
</section>
</div>
</div>