-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.php
283 lines (272 loc) · 9.1 KB
/
options.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<?php
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
wp_die( __( 'Directly access this file you can not!' ) );
}
if ( ! current_user_can( 'manage_options' ) ) {
wp_die( __( 'Sufficient permissions to access this page you have not.' ) );
}
$options = get_option(
'de.bessermitfahren.options',
array(
'place_from' => 'Berlin',
'place_to' => '',
'date' => '',
'agb_accepted' => false,
'api_key' => false
)
);
$changed = false;
if ( isset( $_POST['get_new_api_key']) && $_POST['get_new_api_key'] == 'true') {
$options['api_key'] = bmf_get_api_key();
} else {
// AGB have been accepted
if ( isset( $_POST['bow_to_rules'] ) && ! empty( $_POST['bow_to_rules'] ) ) {
$options['agb_accepted'] = true;
$changed = true;
}
if (
isset($_POST['bmf_api_key']) &&
strtolower(trim( $_POST['bmf_api_key'] )) != strtolower( trim( $options['api_key'] ) )
) {
$options['api_key'] = sanitize_text_field( strtolower(trim( $_POST['bmf_api_key'] ) ));
$changed = true;
}
if (
isset($_POST['bmf_from']) &&
strtolower(trim( $_POST['bmf_from'] )) != strtolower( trim( $options['place_from'] ) )
) {
$options['place_from'] = sanitize_text_field( strtolower(trim( $_POST['bmf_from'] ) ));
$changed = true;
}
if (
isset($_POST['bmf_to']) &&
strtolower( trim( $_POST['bmf_to'] ) ) != strtolower( trim( $options['place_to'] ) )
) {
$options['place_to'] = sanitize_text_field( strtolower( trim( $_POST['bmf_to'] ) ) );
$changed = true;
}
if (
isset($_POST['bmf_date']) &&
strtolower( trim( $_POST['bmf_date'] ) ) != strtolower( trim( $options['date'] ) )
) {
$options['date'] = sanitize_text_field( strtolower( trim( $_POST['bmf_date'] ) ) );
$changed = true;
}
if (
isset($_POST['bmf_extra_style']) &&
strtolower( trim( $_POST['bmf_extra_style'] ) ) != strtolower( trim( $options['extra_style'] ) )
) {
$options['extra_style'] = sanitize_text_field( strtolower( trim( $_POST['bmf_extra_style'] ) ) );
$changed = true;
}
}
update_option( 'de.bessermitfahren.options', $options );
?>
<div class="wrap">
<h1>Einstellungen › Mitfahrgelegenheiten</h1>
<?php if ( !$options['api_key'] ) { ?>
<div class="error notice">
<p>
<strong>
<?php _e( 'Das Plugin ist noch nicht eingerichtet (siehe unten)!' ) ?>
</strong>
</p>
</div>
<?php } ?>
<?php if ( ! $options['agb_accepted'] && $options['api_key'] ) { ?>
<div class="error notice">
<p>
<strong>
<?php _e( 'Bitte bestätige unsere Regeln (siehe unten).' ) ?>
</strong>
</p>
</div>
<?php } ?>
<?php if ( $changed ) { ?>
<div class="updated notice is-dismissible">
<p>
<strong>
<?php _e( 'Änderungen gespeichert.' ) ?>
</strong>
</p>
<button type="button" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button>
</div>
<?php } ?>
<p>
<img style="border: 2px solid black; max-width: 320px" align="right"
src="<?php echo plugins_url( '/wordpress_example.png', __FILE__ ); ?>" alt="so könnte es aussehen"/>
Das BesserMitfahren.de Mitfahrgelegenheiten Plugin erlaubt Dir auf Deiner eigenen Seite eine Suche anzuzeigen.<br>
Außerdem kannst Du eine immer aktuelle Liste der Fahrten von oder zu einem Ort deiner Wahl anzeigen.
</p>
<?php if ( ! $options['api_key'] ) { ?>
<p>
Dein API-Key hätte eigentlich beim aktivieren des Plugins automatisch für Dich erzeugt worden sein sollen, scheinbar klappte das aber nicht.
<br />
Du kannst den Vorgang hier nochmal starten
<form method="post">
<input type="hidden" name="get_new_api_key" value="true">
<input type="submit" class="button button-primary" value="API-Key anfordern">
</form>
<hr />
Wenn das nichts bewirkt, kontaktiere uns per E-Mail:
<br />
<a href="mailto:netzwerk@bessermitfahren.de">
netzwerk@bessermitfahren.de
</a>
</p>
<form method="post">
<ul>
<li>
<label for="bmf_api_key">API Key (erforderlich)</label>
<input type="text" id="bmf_api_key" name="bmf_api_key"
value="<?php echo $options['api_key']; ?>" style="width: 260px">
</li>
<li>
<input type="submit" name="submit" id="bmf_submit" value="<?php _e( 'Speichern' ); ?>"
class="button button-primary">
</li>
</ul>
</form>
<?php } else { ?>
<?php if ( ! $options['agb_accepted'] ) { ?>
<div class="card">
<h2>Beachte BesserMitfahren.de ist nicht kommerziell, es gibt keine Gebühren und keine Werbung.</h2>
<p>
Darum gilt:
<ul>
<li>Um die Fahrten von BesserMitfahren.de auf Deiner Seite anzeigen zu dürfen, darfst Du keine Gebühren für
den
Zugang zur Liste der Fahrten erheben.
</li>
<li>Auch darf keine Werbung auf der Seite mit den Fahrten geschaltet sein (wenn Du auf anderen Seiten deiner
Webpräsenz Werbung hast, ist das natürlich dein Ding).
</li>
</ul>
</p>
<ul>
<li>
<form method="post">
<input type="checkbox" name="bow_to_rules" id="rules">
<label for="rules">
<?php printf(__( 'Ich habe die %s und obige Regeln verstanden und halte mich dran.'), '<a href="https://www.bessermitfahren.de/impressum" target="_blank">AGB</a>'); ?>
</label>
<hr/>
<input type="submit" value="<?php _e('Speichern'); ?>" class="button button-primary">
</form>
</li>
</ul>
</div>
<?php } else { ?>
<div class="card">
<p>
Einfach den Shortcode <code>[bmf_list]</code> in den Text eines Posts oder einer Seite einfügen.
<hr>
Du kannst Start- beziehungsweise Zielorte vorausgewählt angeben:
<ul>
<li>Alle Fahrten ab Berlin vorausgewählt:
<code>[bmf_list from='Berlin']</code>
</li>
<li>Alle Fahrten nach Leipzig vorausgewählt:
<code>[bmf_list to='Leipzig']</code>
</li>
<li>Alle Fahrten ab dem <?php echo date('d.m.Y',strtotime('+5 days')); ?> vorausgewählt:
<code>[bmf_list date='<?php echo date('d.m.Y',strtotime('+5 days')); ?>']</code>
</li>
</ul>
</p>
</div>
<div class="card">
<h2>
<?php _e( 'Standardwerte' ); ?>
</h2>
<p>Du kannst einen Standardwert für Abfahrt, Ziel und/oder Datum hinterlegen. Dieser wird verwendet,
wenn der Shortcode keine Vorgabe enthält.</p>
<form method="post">
<ul>
<li>
<label for="bmf_from">Abfahrtsort (optional)</label>
<input type="text" id="bmf_from" name="bmf_from" value="<?php echo $options['place_from']; ?>">
</li>
<li>
<label for="bmf_to">Zielort (optional)</label>
<input type="text" id="bmf_to" name="bmf_to" value="<?php echo $options['place_to']; ?>">
</li>
</li>
<li>
<label for="bmf_date">Datum (optional)</label>
<input type="date" id="bmf_date" name="bmf_date" value="<?php echo $options['date']; ?>">
</li>
<li>
<input type="submit" name="submit" id="bmf_submit" value="<?php _e( 'Speichern' ); ?>"
class="button button-primary">
</li>
</ul>
</form>
</div>
<div class="card">
<h2>
<?php _e( 'Stylesheet anpassen' ); ?>
</h2>
<p>
Da Wordpress Themes mitunter sehr unterschiedliche Basisstile haben, kommt es immer mal wieder vor, dass die Ausgabe dieses Plugins nicht optimal aussieht.
<br />
In diesem Fall kannst Du hier zusaetzliche CSS Regeln eintragen, die für die Liste angewendet werden sollen.
</p>
<form method="post">
<ul>
<li>
<label for="bmf_extra_style">CSS Regeln (optional)</label>
</li>
<li>
<textarea name="bmf_extra_style" id="bmf_extra_style" style="width: 100%" rows="10"><?php
echo str_ireplace(array( '}', '} '),"}\n",$options['extra_style']);
?></textarea>
</li>
<li>
<input type="submit" name="submit" id="bmf_submit" value="<?php _e( 'Speichern' ); ?>"
class="button button-primary">
</li>
</ul>
</form>
</div>
<div class="card">
<h2>
<?php _e('API Key'); ?>
</h2>
<p>
Das ist Dein API Schlüssel. Sollte es damit Probleme geben (er zum Beispiel nicht automatisch erzeugt werden),
dann kontaktiere uns per E-Mail:
<br/>
<a href="mailto:netzwerk@bessermitfahren.de">
netzwerk@bessermitfahren.de
</a>
</p>
<ul>
<form method="post">
<li>
<label for="bmf_api_key">API Key (erforderlich)</label>
<input type="text" id="bmf_api_key" name="bmf_api_key"
value="<?php echo $options['api_key']; ?>" style="width: 260px">
</li>
<li>
<input type="submit" name="submit" id="bmf_submit" value="<?php _e( 'Speichern' ); ?>"
class="button button-primary">
</li>
</form>
<li>
<form method="post">
<input type="hidden" name="get_new_api_key" value="true">
<input type="submit" class="button button-primary" value="API-Key neu anfordern">
</form>
</li>
</ul>
</div>
<?php } ?>
<?php }
if ( $options['api_key'] && $options['agb_accepted'] ) { ?>
<script type="text/javascript">
jQuery('#bmf_needs_configuration').remove();
</script>
<?php } ?>
</div>