PluginProbe
Statify / 1.6.3
Statify v1.6.3
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.php

widget-back.php in Statify 1.6.3, at views/widget-back.php

46 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Statify: Widget Backend View
4 *
5 * This file contains the viewmodel for the plugin's widget backend.
6 *
7 * @package Statify
8 */
9
10 // Quit if accessed outside WP context.
11 class_exists( 'Statify' ) || exit; ?>
12
13 <fieldset>
14 <label for="statify_days">
15 <input name="statify[days]" id="statify_days" type="number" min="1"
16 value="<?php echo esc_attr( Statify::$_options['days'] ); ?>">
17 <?php esc_html_e( 'days', 'statify' ); ?> -
18 <?php esc_html_e( 'Period of data saving', 'statify' ); ?>
19 </label>
20 <label for="statify_limit">
21 <input name="statify[limit]" id="statify_limit" type="number" min="1" max="100"
22 value="<?php echo esc_attr( Statify::$_options['limit'] ); ?>">
23 <?php esc_html_e( 'Number of entries in top lists', 'statify' ); ?>
24 </label>
25 <label for="statify_today">
26 <input type="checkbox" name="statify[today]" id="statify_today" value="1" <?php checked( Statify::$_options['today'], 1 ); ?> />
27 <?php esc_html_e( 'Entries in top lists only for today', 'statify' ); ?>
28 </label>
29 <label for="statify_snippet">
30 <input type="checkbox" name="statify[snippet]" id="statify_snippet" value="1" <?php checked( Statify::$_options['snippet'], 1 ); ?> />
31 <?php esc_html_e( 'Page tracking via JavaScript', 'statify' ); ?>
32 <small>(<?php esc_html_e( 'recommended if caching is in use', 'statify' ); ?>)</small>
33 </label>
34 <label for="statify_blacklist">
35 <input type="checkbox" name="statify[blacklist]" id="statify_blacklist" value="1" <?php checked( Statify::$_options['blacklist'], 1 ); ?> />
36 <?php esc_html_e( 'Skip tracking for referrers listed in the comment blacklist', 'statify' ); ?>
37 </label>
38 </fieldset>
39 <?php wp_nonce_field( 'statify-dashboard' ); ?>
40
41 <p class="meta-links">
42 <a href="<?php esc_html_e( 'https://wordpress.org/plugins/statify/', 'statify' ); ?>" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Documentation', 'statify' ); ?></a>
43 &bull; <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=TD4AMD2D8EMZW" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Donate', 'statify' ); ?></a>
44 &bull; <a href="https://wordpress.org/support/plugin/statify" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Support', 'statify' ); ?></a>
45 </p>
46