| 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 |
• <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 |
• <a href="https://wordpress.org/support/plugin/statify" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Support', 'statify' ); ?></a> |
| 45 |
</p> |
| 46 |
|