activate.php
1 year ago
compatible-plugins.php
1 year ago
config.php
1 year ago
connect-jp.php
1 year ago
enter.php
2 years ago
get.php
1 year ago
logo.php
2 years ago
notice.php
1 year ago
predefined.php
1 year ago
setup.php
1 year ago
start.php
1 year ago
stats.php
1 year ago
title.php
6 years ago
stats.php
13 lines
| 1 | <div id="akismet-plugin-container"> |
| 2 | <div class="akismet-masthead"> |
| 3 | <div class="akismet-masthead__inside-container"> |
| 4 | <?php Akismet::view( 'logo', array( 'include_logo_link' => true ) ); ?> |
| 5 | <div class="akismet-masthead__back-link-container"> |
| 6 | <a class="akismet-masthead__back-link" href="<?php echo esc_url( Akismet_Admin::get_page_url() ); ?>"><?php esc_html_e( 'Back to settings', 'akismet' ); ?></a> |
| 7 | </div> |
| 8 | </div> |
| 9 | </div> |
| 10 | <?php /* name attribute on iframe is used as a cache-buster here to force Firefox to load the new style charts: https://bugzilla.mozilla.org/show_bug.cgi?id=356558 */ ?> |
| 11 | <iframe id="stats-iframe" src="<?php echo esc_url( sprintf( 'https://tools.akismet.com/1.0/user-stats.php?blog=%s&token=%s&locale=%s&is_redecorated=1', urlencode( get_option( 'home' ) ), urlencode( Akismet::get_access_token() ), esc_attr( get_user_locale() ) ) ); ?>" name="<?php echo esc_attr( 'user-stats- ' . filemtime( __FILE__ ) ); ?>" width="100%" height="2500px" frameborder="0" title="<?php echo esc_attr__( 'Akismet detailed stats', 'akismet' ); ?>"></iframe> |
| 12 | </div> |
| 13 |