| [ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 3 //phpcs:disable VariableAnalysis 4 // There are "undefined" variables here because they're defined in the code that includes this file as a template. 5 ?> 6 <div id="akismet-plugin-container"> 7 <?php if ( has_action( 'akismet_header' ) ) : ?> 8 <?php do_action( 'akismet_header' ); ?> 9 <?php else : ?> 10 <div class="akismet-masthead"> 11 <div class="akismet-masthead__inside-container"> 12 <?php Akismet::view( 'logo' ); ?> 13 </div> 14 </div> 15 <?php endif; ?> 16 <div class="akismet-lower"> 17 <?php Akismet_Admin::display_status(); ?> 18 <div class="akismet-boxes"> 19 <?php 20 if ( Akismet::predefined_api_key() ) { 21 Akismet::view( 'predefined' ); 22 } elseif ( $akismet_user && in_array( $akismet_user->status, array( Akismet::USER_STATUS_ACTIVE, Akismet::USER_STATUS_NO_SUB, Akismet::USER_STATUS_MISSING, Akismet::USER_STATUS_CANCELLED, Akismet::USER_STATUS_SUSPENDED ) ) ) { 23 Akismet::view( 'connect-jp', compact( 'akismet_user' ) ); 24 } else { 25 Akismet::view( 'activate' ); 26 } 27 ?> 28 </div> 29 </div> 30 <?php Akismet::view( 'footer' ); ?> 31 </div>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated : Fri Jun 19 08:20:10 2026 | Cross-referenced by PHPXref |