| 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&hosted_button_id=ZAQUT9RLPW8QN" target="_blank">PayPal</a> • |
| 52 |
<a href="https://flattr.com/t/1733733" target="_blank">Flattr</a> |
| 53 |
<?php if ( strpos(get_locale(), 'de') !== false ) { ?> |
| 54 |
• <a href="https://github.com/sergejmueller/statify/wiki" target="_blank">Wiki</a> |
| 55 |
<?php } ?> |
| 56 |
</p> |