PluginProbe
Statify / 1.4.1
Statify v1.4.1
2.0.2 2.0.1 trunk 0.7 0.8 0.9 1.0 1.2.8 1.3.0 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.6.3 1.7.0 1.7.1 1.7.2 All 32 releases
statify / views / widget_back.view.php

widget_back.view.php in Statify 1.4.1, at views/widget_back.view.php

56 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3
4 /* Quit */
5 class_exists('Statify') OR exit; ?>
6
7
8 <table class="form-table">
9 <tr valign="top">
10 <td>
11 <fieldset>
12 <label for="statify_days">
13 <select name="statify[days]" id="statify_days">
14 <?php foreach( array(7, 14, 21, 30, 84, 183, 365) as $days ) { ?>
15 <option value="<?php echo $days ?>" <?php selected( Statify::$_options['days'], $days ); ?>>
16 <?php echo sprintf( '%d %s', $days, esc_html__('days', 'statify') ); ?>
17 </option>
18 <?php } ?>
19 </select>
20 <?php esc_html_e('Period of data saving', 'statify'); ?>
21 </label>
22
23 <label for="statify_limit">
24 <select name="statify[limit]" id="statify_limit">
25 <?php foreach( range(0, 12) as $amount ) { ?>
26 <option <?php selected( Statify::$_options['limit'], $amount ); ?>>
27 <?php echo $amount; ?>
28 </option>
29 <?php } ?>
30 </select>
31 <?php esc_html_e('Number of entries in top lists', 'statify'); ?>
32 </label>
33
34 <label for="statify_today">
35 <input type="checkbox" name="statify[today]" id="statify_today" value="1" <?php checked( Statify::$_options['today'], 1 ); ?> />
36 <?php esc_html_e('Entries in top lists only for today', 'statify'); ?>
37 </label>
38
39 <label for="statify_snippet">
40 <input type="checkbox" name="statify[snippet]" id="statify_snippet" value="1" <?php checked( Statify::$_options['snippet'], 1 ); ?> />
41 <?php esc_html_e('Page tracking via JavaScript', 'statify'); ?>
42 <small>(<?php esc_html_e('recommended if caching is in use', 'statify'); ?>)</small>
43 </label>
44 </fieldset>
45 </td>
46 </tr>
47 </table>
48
49
50 <p class="meta-links">
51 <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=ZAQUT9RLPW8QN" target="_blank">PayPal</a> &bull;
52 <a href="https://flattr.com/t/1733733" target="_blank">Flattr</a>
53 <?php if ( strpos(get_locale(), 'de') !== false ) { ?>
54 &bull; <a href="https://github.com/sergejmueller/statify/wiki" target="_blank">Wiki</a>
55 <?php } ?>
56 </p>