Lines:
1 to 100 of 260
<?php //phpcs:disable VariableAnalysis // There are "undefined" variables here because they're defined in the code that includes this file as a template. ?> <div id="akismet-plugin-container"> <div class="akismet-masthead"> <div class="akismet-masthead__inside-container"> <div class="akismet-masthead__logo-container"> <img class="akismet-masthead__logo" src="<?php echo esc_url( plugins_url( '../_inc/img/logo-full-2x.png', __FILE__ ) ); ?>" alt="Akismet" /> </div> </div> </div> <div class="akismet-lower"> <?php if ( Akismet::get_api_key() ) { ?> <?php Akismet_Admin::display_status(); ?> <?php } ?> <?php if ( ! empty( $notices ) ) { ?> <?php foreach ( $notices as $notice ) { ?> <?php Akismet::view( 'notice', $notice ); ?> <?php } ?> <?php } ?> <div class="akismet-card"> <div class="akismet-section-header"> <div class="akismet-section-header__label"> <span><?php esc_html_e( 'Statistics', 'akismet' ); ?></span> </div> <?php if ( $stat_totals && isset( $stat_totals['all'] ) && (int) $stat_totals['all']->spam > 0 ) : ?> <div class="akismet-section-header__actions"> <a href="<?php echo esc_url( Akismet_Admin::get_page_url( 'stats' ) ); ?>"> <?php esc_html_e( 'Detailed Stats', 'akismet' ); ?> </a> </div> </div> <!-- close akismet-section-header --> <div class="akismet-new-snapshot"> <iframe allowtransparency="true" scrolling="no" frameborder="0" style="width: 100%; height: 220px; overflow: hidden;" src="<?php echo esc_url( sprintf( 'https://tools.akismet.com/1.0/snapshot.php?blog=%s&api_key=%s&height=200&locale=%s', urlencode( get_option( 'home' ) ), Akismet::get_api_key(), get_locale() ) ); ?>"></iframe> <ul> <li> <h3><?php esc_html_e( 'Past six months' , 'akismet');?></h3> <span><?php echo number_format( $stat_totals['6-months']->spam );?></span> <?php echo esc_html( _n( 'Spam blocked', 'Spam blocked', $stat_totals['6-months']->spam, 'akismet' ) ); ?> </li> <li> <h3><?php esc_html_e( 'All time' , 'akismet');?></h3> <span><?php echo number_format( $stat_totals['all']->spam );?></span> <?php echo esc_html( _n( 'Spam blocked', 'Spam blocked', $stat_totals['all']->spam, 'akismet' ) ); ?> </li> <li> <h3><?php esc_html_e( 'Accuracy' , 'akismet');?></h3> <span><?php echo floatval( $stat_totals['all']->accuracy ); ?>%</span> <?php printf( _n( '%s missed spam', '%s missed spam', $stat_totals['all']->missed_spam, 'akismet' ), number_format( $stat_totals['all']->missed_spam ) ); ?> | <?php printf( _n( '%s false positive', '%s false positives', $stat_totals['all']->false_positives, 'akismet' ), number_format( $stat_totals['all']->false_positives ) ); ?> </li> </ul> </div> <!-- close akismet-new-snapshot --> <?php else : ?> </div> <!-- close akismet-section-header --> <div class="inside"> <p>Akismet is active and ready to stop spam. Your site's spam statistics will be displayed here.</p> </div> <?php endif; ?> </div> <!-- close akismet-card --> <?php if ( $akismet_user ) : ?> <div class="akismet-card"> <div class="akismet-section-header"> <div class="akismet-section-header__label"> <span><?php esc_html_e( 'Settings' , 'akismet'); ?></span> </div> </div> <div class="inside"> <form action="<?php echo esc_url( Akismet_Admin::get_page_url() ); ?>" method="POST"> <table cellspacing="0" class="akismet-settings"> <tbody> <?php if ( ! Akismet::predefined_api_key() ) { ?> <tr> <th class="akismet-api-key" width="10%" align="left" scope="row"> <label for="key"><?php esc_html_e( 'API Key', 'akismet' ); ?></label> </th> <td width="5%"/> <td align="left"> <span class="api-key"><input id="key" name="key" type="text" size="15" value="<?php echo esc_attr( get_option('wordpress_api_key') ); ?>" class="<?php echo esc_attr( 'regular-text code ' . $akismet_user->status ); ?>"></span> </td> </tr> <?php } ?> <?php if ( isset( $_GET['ssl_status'] ) ) { ?> <tr> <th align="left" scope="row"><?php esc_html_e( 'SSL Status', 'akismet' ); ?></th> <td></td> <td align="left"> <p> <?php
Called by
Invoked by
Calls
Call hooks
1 to 1 of 1