PluginProbe ʕ •ᴥ•ʔ
Akismet Anti-spam: Spam Protection / 4.1.11
Akismet Anti-spam: Spam Protection v4.1.11
5.7 3.0.4 3.0.5 3.1 3.1.1 3.1.10 3.1.11 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2 3.3 3.3.1 3.3.2 3.3.3 3.3.4 4.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.0.7 4.0.8 4.1 4.1.1 4.1.10 4.1.11 4.1.12 4.1.2 4.1.3 4.1.4 4.1.5 4.1.6 4.1.7 4.1.8 4.1.9 4.2 4.2.1 4.2.2 4.2.3 4.2.4 4.2.5 5.0 5.0.1 5.0.2 5.1 5.2 5.3 5.3.1 5.3.2 5.3.3 5.3.4 5.3.5 5.3.6 5.3.7 5.4 5.5 5.6 trunk 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.4.0 2.4.1 2.5.0 2.5.1 2.5.10 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.7 2.5.8 2.5.9 2.6.0 2.6.1 3.0.0 3.0.0-RC1 3.0.1 3.0.2 3.0.3
akismet / views / start.php
akismet / views Last commit date
activate.php 6 years ago config.php 7 years ago connect-jp.php 6 years ago enter.php 4 years ago get.php 7 years ago notice.php 4 years ago predefined.php 6 years ago setup.php 6 years ago start.php 6 years ago stats.php 5 years ago title.php 6 years ago
start.php
31 lines
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 ?>
7 <div id="akismet-plugin-container">
8 <div class="akismet-masthead">
9 <div class="akismet-masthead__inside-container">
10 <div class="akismet-masthead__logo-container">
11 <img class="akismet-masthead__logo" src="<?php echo esc_url( plugins_url( '../_inc/img/logo-full-2x.png', __FILE__ ) ); ?>" alt="Akismet" />
12 </div>
13 </div>
14 </div>
15 <div class="akismet-lower">
16 <?php Akismet_Admin::display_status();?>
17 <div class="akismet-boxes">
18 <?php
19
20 if ( Akismet::predefined_api_key() ) {
21 Akismet::view( 'predefined' );
22 } elseif ( $akismet_user && in_array( $akismet_user->status, array( 'active', 'active-dunning', 'no-sub', 'missing', 'cancelled', 'suspended' ) ) ) {
23 Akismet::view( 'connect-jp', compact( 'akismet_user' ) );
24 } else {
25 Akismet::view( 'activate' );
26 }
27
28 ?>
29 </div>
30 </div>
31 </div>