]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/plugins/akismet/views/config.php
WordPress 4.1.1
[autoinstalls/wordpress.git] / wp-content / plugins / akismet / views / config.php
1 <div class="wrap">
2
3         <h2><?php esc_html_e( 'Akismet' , 'akismet');?></h2>
4
5         <div class="have-key">
6
7                 <?php if ( $stat_totals && isset( $stat_totals['all'] ) && (int) $stat_totals['all']->spam > 0 ) : ?>
8
9                         <div class="new-snapshot stats">
10
11                                 <span style="float:right;margin:10px 15px -5px 0px">
12                                         <a href="<?php echo esc_url( Akismet_Admin::get_page_url( 'stats' ) ); ?>" class=""><?php esc_html_e( 'Summaries' , 'akismet');?></a>
13                                 </span>
14
15                                 <iframe allowtransparency="true" scrolling="no" frameborder="0" style="width: 100%; height: 215px; overflow: hidden;" src="<?php printf( '//akismet.com/web/1.0/snapshot.php?blog=%s&api_key=%s&height=180&locale=%s', urlencode( get_bloginfo('url') ), Akismet::get_api_key(), get_locale() );?>"></iframe>
16                                 <ul>
17                                         <li>
18                                                 <h3><?php esc_html_e( 'Past six months' , 'akismet');?></h3>
19                                                 <span><?php echo number_format( $stat_totals['6-months']->spam );?></span>
20                                                 <?php esc_html_e( 'Spam blocked' , 'akismet');?>
21                                         </li>
22                                         <li>
23                                                 <h3><?php esc_html_e( 'All time' , 'akismet');?></h3>
24                                                 <span><?php echo number_format( $stat_totals['all']->spam );?></span>
25                                                 <?php esc_html_e( 'Spam blocked' , 'akismet');?>
26                                         </li>
27                                         <li>
28                                                 <h3><?php esc_html_e( 'Accuracy' , 'akismet');?></h3>
29                                                 <span><?php echo $stat_totals['all']->accuracy; ?>%</span>
30                                                 <?php printf(
31                                                         esc_html(
32                                                                 _n( '%s missed spam, %s false positive', '%s missed spam, %s false positives', $stat_totals['all']->false_positives , 'akismet')
33                                                         ),
34                                                         number_format( $stat_totals['all']->missed_spam ),
35                                                         number_format( $stat_totals['all']->false_positives )
36                                                 ); ?>
37                                         </li>
38                                 </ul>
39                                 <div class="clearfix"></div>
40                         </div>
41                 <?php endif;?>
42
43                 <?php if ( $akismet_user ):?>
44
45                         <div id="wpcom-stats-meta-box-container" class="metabox-holder"><?php
46                                 wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
47                                 wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
48                                 ?>
49                                 <script type="text/javascript">
50                                 jQuery(document).ready( function($) {
51                                         jQuery('.if-js-closed').removeClass('if-js-closed').addClass('closed');
52                                         if(typeof postboxes !== 'undefined')
53                                                 postboxes.add_postbox_toggles( 'plugins_page_akismet-key-config' );
54                                 });
55                                 </script>
56                                 <div class="postbox-container" style="width: 55%;margin-right: 10px;">
57                                         <div id="normal-sortables" class="meta-box-sortables ui-sortable">
58                                                 <div id="referrers" class="postbox ">
59                                                         <div class="handlediv" title="Click to toggle"><br></div>
60                                                         <h3 class="hndle"><span><?php esc_html_e( 'Settings' , 'akismet');?></span></h3>
61                                                         <form name="akismet_conf" id="akismet-conf" action="<?php echo esc_url( Akismet_Admin::get_page_url() ); ?>" method="POST">
62                                                                 <div class="inside">
63                                                                         <table cellspacing="0" class="akismet-settings">
64                                                                                 <tbody>
65                                                                                         <?php if ( !defined( 'WPCOM_API_KEY' ) ):?>
66                                                                                         <tr>
67                                                                                                 <th width="10%" align="left" scope="row"><?php esc_html_e('API Key', 'akismet');?></th>
68                                                                                                 <td width="5%"/>
69                                                                                                 <td align="left">
70                                                                                                         <span class="api-key"><input id="key" name="key" type="text" size="15" maxlength="12" value="<?php echo esc_attr( get_option('wordpress_api_key') ); ?>" class="regular-text code <?php echo $akismet_user->status;?>"></span>
71                                                                                                 </td>
72                                                                                         </tr>
73                                                                                         <?php endif; ?>
74                                                                                         <tr>
75                                                                                                 <th align="left" scope="row"><?php esc_html_e('Comments', 'akismet');?></th>
76                                                                                                 <td></td>
77                                                                                                 <td align="left">
78                                                                                                         <p>
79                                                                                                                 <label for="akismet_show_user_comments_approved" title="<?php esc_attr_e( 'Show approved comments' , 'akismet'); ?>"><input name="akismet_show_user_comments_approved" id="akismet_show_user_comments_approved" value="1" type="checkbox" <?php checked('1', get_option('akismet_show_user_comments_approved')); ?>> <?php esc_html_e('Show the number of approved comments beside each comment author', 'akismet'); ?></label>
80                                                                                                         </p>
81                                                                                                 </td>
82                                                                                         </tr>
83                                                                                         <tr>
84                                                                                                 <th class="strictness" align="left" scope="row"><?php esc_html_e('Strictness', 'akismet'); ?></th>
85                                                                                                 <td></td>
86                                                                                                 <td align="left">
87                                                                                                         <fieldset><legend class="screen-reader-text"><span><?php esc_html_e('Akismet anti-spam strictness', 'akismet'); ?></span></legend>
88                                                                                                         <p><label for="akismet_strictness_1"><input type="radio" name="akismet_strictness" id="akismet_strictness_1" value="1" <?php checked('1', get_option('akismet_strictness')); ?> /> <?php esc_html_e('Silently discard the worst and most pervasive spam so I never see it.', 'akismet'); ?></label></p>
89                                                                                                         <p><label for="akismet_strictness_0"><input type="radio" name="akismet_strictness" id="akismet_strictness_0" value="0" <?php checked('0', get_option('akismet_strictness')); ?> /> <?php esc_html_e('Always put spam in the Spam folder for review.', 'akismet'); ?></label></p>
90                                                                                                         </fieldset>
91                                                                                                         <span class="note"><strong><?php esc_html_e('Note:', 'akismet');?></strong>
92                                                                                                         <?php
93                                                                                                         
94                                                                                                         $delete_interval = max( 1, intval( apply_filters( 'akismet_delete_comment_interval', 15 ) ) );
95                                                                                                         
96                                                                                                         printf(
97                                                                                                                 _n(
98                                                                                                                         'Spam in the <a href="%s">spam folder</a> older than 1 day is deleted automatically.',
99                                                                                                                         'Spam in the <a href="%1$s">spam folder</a> older than %2$d days is deleted automatically.',
100                                                                                                                         $delete_interval,
101                                                                                                                         'akismet'
102                                                                                                                 ),
103                                                                                                                 admin_url( 'edit-comments.php?comment_status=spam' ),
104                                                                                                                 $delete_interval
105                                                                                                         );
106                                                                                                         
107                                                                                                         ?>
108                                                                                                 </td>
109                                                                                         </tr>
110                                                                                 </tbody>
111                                                                         </table>
112                                                                 </div>
113                                                                 <div id="major-publishing-actions">
114                                                                         <?php if ( !defined( 'WPCOM_API_KEY' ) ):?>
115                                                                         <div id="delete-action">
116                                                                                 <a class="submitdelete deletion" href="<?php echo esc_url( Akismet_Admin::get_page_url( 'delete_key' ) ); ?>"><?php esc_html_e('Disconnect this account', 'akismet'); ?></a>
117                                                                         </div>
118                                                                         <?php endif; ?>
119                                                                         <?php wp_nonce_field(Akismet_Admin::NONCE) ?>
120                                                                         <div id="publishing-action">
121                                                                                         <input type="hidden" name="action" value="enter-key">
122                                                                                         <input type="submit" name="submit" id="submit" class="button button-primary" value="<?php esc_attr_e('Save Changes', 'akismet');?>">
123
124                                                                         </div>
125                                                                         <div class="clear"></div>
126                                                                 </div>
127                                                         </form>
128                                                 </div>
129                                         </div>
130                                 </div>
131                                 <div class="postbox-container" style="width:44%;">
132                                         <div id="normal-sortables" class="meta-box-sortables ui-sortable">
133                                                 <div id="referrers" class="postbox ">
134                                                         <div class="handlediv" title="Click to toggle"><br></div>
135                                                         <h3 class="hndle"><span><?php esc_html_e( 'Account' , 'akismet');?></span></h3>
136                                                         <div class="inside">
137                                                                 <table cellspacing="0">
138                                                                         <tbody>
139                                                                                 <tr>
140                                                                                         <th scope="row" align="left"><?php esc_html_e( 'Subscription Type' , 'akismet');?></th>
141                                                                                         <td width="5%"/>
142                                                                                         <td align="left">
143                                                                                                 <span><?php echo $akismet_user->account_name; ?></span>
144                                                                                         </td>
145                                                                                 </tr>
146                                                                                 <tr>
147                                                                                         <th scope="row" align="left"><?php esc_html_e( 'Status' , 'akismet');?></th>
148                                                                                         <td width="5%"/>
149                                                                                         <td align="left">
150                                                                                                 <span><?php 
151                                                                                                         if ( 'cancelled' == $akismet_user->status ) :
152                                                                                                                 esc_html_e( 'Cancelled', 'akismet' ); 
153                                                                                                         elseif ( 'suspended' == $akismet_user->status ) :
154                                                                                                                 esc_html_e( 'Suspended', 'akismet' );
155                                                                                                         elseif ( 'missing' == $akismet_user->status ) :
156                                                                                                                 esc_html_e( 'Missing', 'akismet' ); 
157                                                                                                         elseif ( 'no-sub' == $akismet_user->status ) :
158                                                                                                                 esc_html_e( 'No Subscription Found', 'akismet' );
159                                                                                                         else :
160                                                                                                                 esc_html_e( 'Active', 'akismet' );  
161                                                                                                         endif; ?></span>
162                                                                                         </td>
163                                                                                 </tr>
164                                                                                 <?php if ( $akismet_user->next_billing_date ) : ?>
165                                                                                 <tr>
166                                                                                         <th scope="row" align="left"><?php esc_html_e( 'Next Billing Date' , 'akismet');?></th>
167                                                                                         <td width="5%"/>
168                                                                                         <td align="left">
169                                                                                                 <span><?php echo date( 'F j, Y', $akismet_user->next_billing_date ); ?></span>
170                                                                                         </td>
171                                                                                 </tr>
172                                                                                 <?php endif; ?>
173                                                                         </tbody>
174                                                                 </table>
175                                                         </div>
176                                                         <div id="major-publishing-actions">
177                                                                 <div id="publishing-action">
178                                                                         <?php Akismet::view( 'get', array( 'text' => ( $akismet_user->account_type == 'free-api-key' && $akismet_user->status == 'active' ? __( 'Upgrade' , 'akismet') : __( 'Change' , 'akismet') ), 'redirect' => 'upgrade' ) ); ?>
179                                                                 </div>
180                                                                 <div class="clear"></div>
181                                                         </div>
182                                                 </div>
183                                         </div>
184                                 </div>
185                         </div>
186
187                 <?php endif;?>
188
189         </div>
190 </div>