]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/plugins/akismet/views/config.php
WordPress 3.9-scripts
[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> <?php printf( __( 'Spam in the <a href="%s">spam folder</a> older than 15 days is deleted automatically.' , 'akismet'), admin_url( 'edit-comments.php?comment_status=spam' ) );?></span>
92                                                                                                 </td>
93                                                                                         </tr>
94                                                                                 </tbody>
95                                                                         </table>
96                                                                 </div>
97                                                                 <div id="major-publishing-actions">
98                                                                         <?php if ( !defined( 'WPCOM_API_KEY' ) ):?>
99                                                                         <div id="delete-action">
100                                                                                 <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>
101                                                                         </div>
102                                                                         <?php endif; ?>
103                                                                         <?php wp_nonce_field(Akismet_Admin::NONCE) ?>
104                                                                         <div id="publishing-action">
105                                                                                         <input type="hidden" name="action" value="enter-key">
106                                                                                         <input type="submit" name="submit" id="submit" class="button button-primary" value="<?php esc_attr_e('Save Changes', 'akismet');?>">
107
108                                                                         </div>
109                                                                         <div class="clear"></div>
110                                                                 </div>
111                                                         </form>
112                                                 </div>
113                                         </div>
114                                 </div>
115                                 <div class="postbox-container" style="width:44%;">
116                                         <div id="normal-sortables" class="meta-box-sortables ui-sortable">
117                                                 <div id="referrers" class="postbox ">
118                                                         <div class="handlediv" title="Click to toggle"><br></div>
119                                                         <h3 class="hndle"><span><?php esc_html_e( 'Account' , 'akismet');?></span></h3>
120                                                         <div class="inside">
121                                                                 <table cellspacing="0">
122                                                                         <tbody>
123                                                                                 <tr>
124                                                                                         <th scope="row" align="left"><?php esc_html_e( 'Subscription Type' , 'akismet');?></th>
125                                                                                         <td width="5%"/>
126                                                                                         <td align="left">
127                                                                                                 <span><?php echo $akismet_user->account_name; ?></span>
128                                                                                         </td>
129                                                                                 </tr>
130                                                                                 <tr>
131                                                                                         <th scope="row" align="left"><?php esc_html_e( 'Status' , 'akismet');?></th>
132                                                                                         <td width="5%"/>
133                                                                                         <td align="left">
134                                                                                                 <span><?php 
135                                                                                                         if ( 'cancelled' == $akismet_user->status ) :
136                                                                                                                 esc_html_e( 'Cancelled', 'akismet' ); 
137                                                                                                         elseif ( 'suspended' == $akismet_user->status ) :
138                                                                                                                 esc_html_e( 'Suspended', 'akismet' );
139                                                                                                         elseif ( 'missing' == $akismet_user->status ) :
140                                                                                                                 esc_html_e( 'Missing', 'akismet' ); 
141                                                                                                         elseif ( 'no-sub' == $akismet_user->status ) :
142                                                                                                                 esc_html_e( 'No Subscription Found', 'akismet' );
143                                                                                                         else :
144                                                                                                                 esc_html_e( 'Active', 'akismet' );  
145                                                                                                         endif; ?></span>
146                                                                                         </td>
147                                                                                 </tr>
148                                                                                 <?php if ( $akismet_user->next_billing_date ) : ?>
149                                                                                 <tr>
150                                                                                         <th scope="row" align="left"><?php esc_html_e( 'Next Billing Date' , 'akismet');?></th>
151                                                                                         <td width="5%"/>
152                                                                                         <td align="left">
153                                                                                                 <span><?php echo date( 'F j, Y', $akismet_user->next_billing_date ); ?></span>
154                                                                                         </td>
155                                                                                 </tr>
156                                                                                 <?php endif; ?>
157                                                                         </tbody>
158                                                                 </table>
159                                                         </div>
160                                                         <div id="major-publishing-actions">
161                                                                 <div id="publishing-action">
162                                                                         <?php Akismet::view( 'get', array( 'text' => ( $akismet_user->account_type == 'free-api-key' && $akismet_user->status == 'active' ? __( 'Upgrade' , 'akismet') : __( 'Change' , 'akismet') ), 'redirect' => 'upgrade' ) ); ?>
163                                                                 </div>
164                                                                 <div class="clear"></div>
165                                                         </div>
166                                                 </div>
167                                         </div>
168                                 </div>
169                         </div>
170
171                 <?php endif;?>
172
173         </div>
174 </div>