]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/options-discussion.php
Wordpress 2.0.11
[autoinstalls/wordpress.git] / wp-admin / options-discussion.php
1 <?php
2 require_once('admin.php');
3
4 $title = __('Discussion Options');
5 $parent_file = 'options-general.php';
6
7 include('admin-header.php');
8
9 if ($action == 'retrospam') {
10         if ( $_GET['move'] == 'true' ) {
11                 retrospam_mgr::move_spam( $_GET[ids] );
12         }
13         $retrospaminator = new retrospam_mgr();
14         $result = $retrospaminator->find_spam();
15         echo $retrospaminator->display_edit_form( $result );
16         include('./admin-footer.php');
17         exit;
18 }
19 ?>
20
21 <div class="wrap"> 
22 <h2><?php _e('Discussion Options') ?></h2> 
23 <form method="post" action="options.php"> 
24 <?php wp_nonce_field('update-options') ?>
25 <fieldset class="options">
26 <legend><?php _e('Usual settings for an article:<br /><small><em>(These settings may be overridden for individual articles.)</em></small>') ?></legend> 
27 <ul> 
28 <li> 
29 <label for="default_pingback_flag"> 
30 <input name="default_pingback_flag" type="checkbox" id="default_pingback_flag" value="1" <?php checked('1', get_settings('default_pingback_flag')); ?> /> 
31 <?php _e('Attempt to notify any Weblogs linked to from the article (slows down posting.)') ?></label> 
32 </li> 
33 <li> 
34 <label for="default_ping_status"> 
35 <input name="default_ping_status" type="checkbox" id="default_ping_status" value="open" <?php checked('open', get_settings('default_ping_status')); ?> /> 
36 <?php _e('Allow link notifications from other Weblogs (pingbacks and trackbacks.)') ?></label> 
37 </li> 
38 <li> 
39 <label for="default_comment_status"> 
40 <input name="default_comment_status" type="checkbox" id="default_comment_status" value="open" <?php checked('open', get_settings('default_comment_status')); ?> /> 
41 <?php _e('Allow people to post comments on the article') ?></label> 
42 </li> 
43 </ul> 
44 </fieldset>
45 <fieldset class="options">
46 <legend><?php _e('E-mail me whenever:') ?></legend> 
47 <ul> 
48 <li> 
49 <label for="comments_notify"> 
50 <input name="comments_notify" type="checkbox" id="comments_notify" value="1" <?php checked('1', get_settings('comments_notify')); ?> /> 
51 <?php _e('Anyone posts a comment') ?> </label> 
52 </li> 
53 <li> 
54 <label for="moderation_notify"> 
55 <input name="moderation_notify" type="checkbox" id="moderation_notify" value="1" <?php checked('1', get_settings('moderation_notify')); ?> /> 
56 <?php _e('A comment is held for moderation') ?> </label> 
57 </li> 
58 </ul> 
59 </fieldset>
60 <fieldset class="options">
61 <legend><?php _e('Before a comment appears:') ?></legend> 
62 <ul>
63 <li>
64 <label for="comment_moderation"> 
65 <input name="comment_moderation" type="checkbox" id="comment_moderation" value="1" <?php checked('1', get_settings('comment_moderation')); ?> /> 
66 <?php _e('An administrator must approve the comment (regardless of any matches below)') ?> </label> 
67 </li> 
68 <li><label for="require_name_email"><input type="checkbox" name="require_name_email" id="require_name_email" value="1" <?php checked('1', get_settings('require_name_email')); ?> /> <?php _e('Comment author must fill out name and e-mail') ?></label></li> 
69 <li><label for="comment_whitelist"><input type="checkbox" name="comment_whitelist" id="comment_whitelist" value="1" <?php checked('1', get_settings('comment_whitelist')); ?> /> <?php _e('Comment author must have a previously approved comment') ?></label></li> 
70 </ul> 
71 </fieldset>
72 <fieldset class="options">
73 <legend><?php _e('Comment Moderation') ?></legend>
74 <p><?php printf(__('Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)'), '<input name="comment_max_links" type="text" id="comment_max_links" size="3" value="' . get_settings('comment_max_links'). '" />' ) ?></p>
75
76 <p><?php _e('When a comment contains any of these words in its content, name, URI, e-mail, or IP, hold it in the moderation queue: (Separate multiple words with new lines.) <a href="http://codex.wordpress.org/Spam_Words">Common spam words</a>.') ?></p>
77 <p> 
78 <textarea name="moderation_keys" cols="60" rows="4" id="moderation_keys" style="width: 98%; font-size: 12px;" class="code"><?php form_option('moderation_keys'); ?></textarea> 
79 </p> 
80 <p>
81 <a id="retrospambutton" href="options-discussion.php?action=retrospam"><?php _e('Check past comments against moderation list'); ?></a>
82 </p> 
83 </fieldset>
84 <fieldset class="options">
85 <legend><?php _e('Comment Blacklist') ?></legend>
86 <p><?php _e('This is a list of words that you want completely blacklisted from your blog. Be very careful what you add here, because if a comment matches something here it will be completely nuked and there will be no notification. Remember that partial words can match, so if there is any chance something here might match it would be better to put it in the moderation box above.') ?></p>
87 <p> 
88 <textarea name="blacklist_keys" cols="60" rows="4" id="blacklist_keys" style="width: 98%; font-size: 12px;" class="code"><?php form_option('blacklist_keys'); ?></textarea> 
89 </p>
90 <p><label for="open_proxy_check"> 
91 <input name="open_proxy_check" type="checkbox" id="open_proxy_check" value="1" <?php checked('1', get_settings('open_proxy_check')); ?> /> 
92 <?php _e('Blacklist comments from open and insecure proxies.') ?></label></p>
93 </fieldset>
94 <p class="submit">
95 <input type="hidden" name="action" value="update" /> 
96 <input type="hidden" name="page_options" value="default_pingback_flag,default_ping_status,default_comment_status,comments_notify,moderation_notify,comment_moderation,require_name_email,comment_whitelist,comment_max_links,moderation_keys,blacklist_keys,open_proxy_check" /> 
97 <input type="submit" name="Submit" value="<?php _e('Update Options') ?>" /> 
98 </p> 
99 </form> 
100 </div>
101 <?php include('./admin-footer.php'); ?>