| Server IP : 74.208.236.16 / Your IP : 216.73.216.174 Web Server : Apache System : Linux infongwp-us3 4.4.400-icpu-108 #2 SMP Wed Feb 11 10:12:42 UTC 2026 x86_64 User : u102440577 ( 7172810) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/44/d845879113/htdocs/app849812966/wp-content/plugins/statify/views/ |
Upload File : |
<?php /** * Statify: Widget Backend View * * This file contains the viewmodel for the plugin's widget backend. * * @package Statify */ // Quit if accessed outside WP context. class_exists( 'Statify' ) || exit; ?> <?php if ( current_user_can( 'manage_options' ) ) : ?> <p class="meta-links settings-link"> <a href="<?php echo esc_attr( add_query_arg( array( 'page' => 'statify-settings' ), admin_url( '/options-general.php' ) ) ); ?>" title="<?php esc_attr_e( 'Open full settings page', 'statify' ); ?>"> <span class="dashicons dashicons-admin-generic"></span> <?php esc_html_e( 'All Settings', 'statify' ); ?></a> </p> <br> <?php endif; ?> <h3><?php esc_html_e( 'Widget Settings', 'statify' ); ?></h3> <div> <label> <input name="statify[days_show]" type="number" min="1" value="<?php echo esc_attr( Statify::$_options['days_show'] ); ?>"> <?php esc_html_e( 'days', 'statify' ); ?> - <?php esc_html_e( 'Period of data display in Dashboard', 'statify' ); ?> </label> <label> <input name="statify[limit]" type="number" min="1" max="100" value="<?php echo esc_attr( Statify::$_options['limit'] ); ?>"> <?php esc_html_e( 'Number of entries in top lists', 'statify' ); ?> </label> <label> <input type="checkbox" name="statify[today]" value="1" <?php checked( Statify::$_options['today'], 1 ); ?>> <?php esc_html_e( 'Entries in top lists only for today', 'statify' ); ?> </label> <label> <input type="checkbox" name="statify[show_totals]" value="1" <?php checked( Statify::$_options['show_totals'], 1 ); ?>> <?php esc_html_e( 'Show totals', 'statify' ); ?> </label> </div> <?php wp_nonce_field( 'statify-dashboard' ); ?> <p class="meta-links"> <a href="<?php echo esc_url( __( 'https://statify.pluginkollektiv.org/', 'statify' ) ); ?>" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Documentation', 'statify' ); ?></a> • <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> • <a href="<?php echo esc_url( __( 'https://wordpress.org/support/plugin/statify', 'statify' ) ); ?>" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Support', 'statify' ); ?></a> </p>