[ Index ]

PHP Cross Reference of Wordpress 2.7.1

title

Body

[close]

/wp-admin/ -> options-discussion.php (source)

   1  <?php
   2  /**
   3   * Discussion settings administration panel.
   4   *
   5   * @package WordPress
   6   * @subpackage Administration
   7   */
   8  
   9  /** WordPress Administration Bootstrap */
  10  require_once ('admin.php');
  11  
  12  $title = __('Discussion Settings');
  13  $parent_file = 'options-general.php';
  14  
  15  include ('admin-header.php');
  16  ?>
  17  
  18  <div class="wrap">
  19  <?php screen_icon(); ?>
  20  <h2><?php echo wp_specialchars( $title ); ?></h2>
  21  
  22  <form method="post" action="options.php">
  23  <?php settings_fields('discussion'); ?>
  24  
  25  <table class="form-table">
  26  <tr valign="top">
  27  <th scope="row"><?php _e('Default article settings') ?></th>
  28  <td><fieldset><legend class="hidden"><?php _e('Default article settings') ?></legend>
  29  <label for="default_pingback_flag">
  30  <input name="default_pingback_flag" type="checkbox" id="default_pingback_flag" value="1" <?php checked('1', get_option('default_pingback_flag')); ?> />
  31  <?php _e('Attempt to notify any blogs linked to from the article (slows down posting.)') ?></label>
  32  <br />
  33  <label for="default_ping_status">
  34  <input name="default_ping_status" type="checkbox" id="default_ping_status" value="open" <?php checked('open', get_option('default_ping_status')); ?> />
  35  <?php _e('Allow link notifications from other blogs (pingbacks and trackbacks.)') ?></label>
  36  <br />
  37  <label for="default_comment_status">
  38  <input name="default_comment_status" type="checkbox" id="default_comment_status" value="open" <?php checked('open', get_option('default_comment_status')); ?> />
  39  <?php _e('Allow people to post comments on the article') ?></label>
  40  <br />
  41  <small><em><?php echo '(' . __('These settings may be overridden for individual articles.') . ')'; ?></em></small>
  42  </fieldset></td>
  43  </tr>
  44  <tr valign="top">
  45  <th scope="row"><?php _e('Other comment settings') ?></th>
  46  <td><fieldset><legend class="hidden"><?php _e('Other comment settings') ?></legend>
  47  <label for="require_name_email"><input type="checkbox" name="require_name_email" id="require_name_email" value="1" <?php checked('1', get_option('require_name_email')); ?> /> <?php _e('Comment author must fill out name and e-mail') ?></label>
  48  <br />
  49  <label for="comment_registration">
  50  <input name="comment_registration" type="checkbox" id="comment_registration" value="1" <?php checked('1', get_option('comment_registration')); ?> />
  51  <?php _e('Users must be registered and logged in to comment') ?>
  52  </label>
  53  <br />
  54  
  55  <label for="close_comments_for_old_posts">
  56  <input name="close_comments_for_old_posts" type="checkbox" id="close_comments_for_old_posts" value="1" <?php checked('1', get_option('close_comments_for_old_posts')); ?> />
  57  <?php printf( __('Automatically close comments on articles older than %s days'), '</label><input name="close_comments_days_old" type="text" id="close_comments_days_old" value="' . attribute_escape(get_option('close_comments_days_old')) . '" class="small-text" />') ?>
  58  <br />
  59  <label for="thread_comments">
  60  <input name="thread_comments" type="checkbox" id="thread_comments" value="1" <?php checked('1', get_option('thread_comments')); ?> />
  61  <?php
  62  
  63  $maxdeep = (int) apply_filters( 'thread_comments_depth_max', 10 );
  64  
  65  $thread_comments_depth = '</label><select name="thread_comments_depth" id="thread_comments_depth">';
  66  for ( $i = 1; $i <= $maxdeep; $i++ ) {
  67      $thread_comments_depth .= "<option value='$i'";
  68      if ( get_option('thread_comments_depth') == $i ) $thread_comments_depth .= " selected='selected'";
  69      $thread_comments_depth .= ">$i</option>";
  70  }
  71  $thread_comments_depth .= '</select>';
  72  
  73  printf( __('Enable threaded (nested) comments %s levels deep'), $thread_comments_depth );
  74  
  75  ?><br />
  76  <label for="page_comments">
  77  <input name="page_comments" type="checkbox" id="page_comments" value="1" <?php checked('1', get_option('page_comments')); ?> />
  78  <?php
  79  
  80  $default_comments_page = '</label><label for="default_comments_page"><select name="default_comments_page" id="default_comments_page"><option value="newest"';
  81  if ( 'newest' == get_option('default_comments_page') ) $default_comments_page .= ' selected="selected"';
  82  $default_comments_page .= '>' . __('last') . '</option><option value="oldest"';
  83  if ( 'oldest' == get_option('default_comments_page') ) $default_comments_page .= ' selected="selected"';
  84  $default_comments_page .= '>' . __('first') . '</option></select>';
  85  
  86  printf( __('Break comments into pages with %1$s comments per page and the %2$s page displayed by default'), '</label><label for="comments_per_page"><input name="comments_per_page" type="text" id="comments_per_page" value="' . attribute_escape(get_option('comments_per_page')) . '" class="small-text" />', $default_comments_page );
  87  
  88  ?></label>
  89  <br />
  90  <label for="comment_order"><?php
  91  
  92  $comment_order = '<select name="comment_order" id="comment_order"><option value="asc"';
  93  if ( 'asc' == get_option('comment_order') ) $comment_order .= ' selected="selected"';
  94  $comment_order .= '>' . __('older') . '</option><option value="desc"';
  95  if ( 'desc' == get_option('comment_order') ) $comment_order .= ' selected="selected"';
  96  $comment_order .= '>' . __('newer') . '</option></select>';
  97  
  98  printf( __('Comments should be displayed with the %s comments at the top of each page'), $comment_order );
  99  
 100  ?></label>
 101  </fieldset></td>
 102  </tr>
 103  <tr valign="top">
 104  <th scope="row"><?php _e('E-mail me whenever') ?></th>
 105  <td><fieldset><legend class="hidden"><?php _e('E-mail me whenever') ?></legend>
 106  <label for="comments_notify">
 107  <input name="comments_notify" type="checkbox" id="comments_notify" value="1" <?php checked('1', get_option('comments_notify')); ?> />
 108  <?php _e('Anyone posts a comment') ?> </label>
 109  <br />
 110  <label for="moderation_notify">
 111  <input name="moderation_notify" type="checkbox" id="moderation_notify" value="1" <?php checked('1', get_option('moderation_notify')); ?> />
 112  <?php _e('A comment is held for moderation') ?> </label>
 113  </fieldset></td>
 114  </tr>
 115  <tr valign="top">
 116  <th scope="row"><?php _e('Before a comment appears') ?></th>
 117  <td><fieldset><legend class="hidden"><?php _e('Before a comment appears') ?></legend>
 118  <label for="comment_moderation">
 119  <input name="comment_moderation" type="checkbox" id="comment_moderation" value="1" <?php checked('1', get_option('comment_moderation')); ?> />
 120  <?php _e('An administrator must always approve the comment') ?> </label>
 121  <br />
 122  <label for="comment_whitelist"><input type="checkbox" name="comment_whitelist" id="comment_whitelist" value="1" <?php checked('1', get_option('comment_whitelist')); ?> /> <?php _e('Comment author must have a previously approved comment') ?></label>
 123  </fieldset></td>
 124  </tr>
 125  <tr valign="top">
 126  <th scope="row"><?php _e('Comment Moderation') ?></th>
 127  <td><fieldset><legend class="hidden"><?php _e('Comment Moderation') ?></legend>
 128  <p><label for="comment_max_links"><?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" value="' . get_option('comment_max_links'). '" class="small-text" />' ) ?></label></p>
 129  
 130  <p><label for="moderation_keys"><?php _e('When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be held in the <a href="edit-comments.php?comment_status=moderated">moderation queue</a>. One word or IP per line. It will match inside words, so "press" will match "WordPress".') ?></label></p>
 131  <p>
 132  <textarea name="moderation_keys" rows="10" cols="50" id="moderation_keys" class="large-text code"><?php form_option('moderation_keys'); ?></textarea>
 133  </p>
 134  </fieldset></td>
 135  </tr>
 136  <tr valign="top">
 137  <th scope="row"><?php _e('Comment Blacklist') ?></th>
 138  <td><fieldset><legend class="hidden"><?php _e('Comment Blacklist') ?></legend>
 139  <p><label for="blacklist_keys"><?php _e('When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be marked as spam. One word or IP per line. It will match inside words, so "press" will match "WordPress".') ?></label></p>
 140  <p>
 141  <textarea name="blacklist_keys" rows="10" cols="50" id="blacklist_keys" class="large-text code"><?php form_option('blacklist_keys'); ?></textarea>
 142  </p>
 143  </fieldset></td>
 144  </tr>
 145  <?php do_settings_fields('discussion', 'default'); ?>
 146  </table>
 147  
 148  <h3><?php _e('Avatars') ?></h3>
 149  
 150  <p><?php _e('An avatar is an image that follows you from weblog to weblog appearing beside your name when you comment on avatar enabled sites.  Here you can enable the display of avatars for people who comment on your blog.'); ?></p>
 151  
 152  <?php // the above would be a good place to link to codex documentation on the gravatar functions, for putting it in themes. anything like that? ?>
 153  
 154  <table class="form-table">
 155  <tr valign="top">
 156  <th scope="row"><?php _e('Avatar Display') ?></th>
 157  <td><fieldset><legend class="hidden"><?php _e('Avatar display') ?></legend>
 158  <?php
 159      $yesorno = array(0 => __("Don&#8217;t show Avatars"), 1 => __('Show Avatars'));
 160      foreach ( $yesorno as $key => $value) {
 161          $selected = (get_option('show_avatars') == $key) ? 'checked="checked"' : '';
 162          echo "\n\t<label><input type='radio' name='show_avatars' value='$key' $selected/> $value</label><br />";
 163      }
 164  ?>
 165  </fieldset></td>
 166  </tr>
 167  <tr valign="top">
 168  <th scope="row"><?php _e('Maximum Rating') ?></th>
 169  <td><fieldset><legend class="hidden"><?php _e('Maximum Rating') ?></legend>
 170  
 171  <?php
 172  $ratings = array( 'G' => __('G &#8212; Suitable for all audiences'), 'PG' => __('PG &#8212; Possibly offensive, usually for audiences 13 and above'), 'R' => __('R &#8212; Intended for adult audiences above 17'), 'X' => __('X &#8212; Even more mature than above'));
 173  foreach ($ratings as $key => $rating) :
 174      $selected = (get_option('avatar_rating') == $key) ? 'checked="checked"' : '';
 175      echo "\n\t<label><input type='radio' name='avatar_rating' value='$key' $selected/> $rating</label><br />";
 176  endforeach;
 177  ?>
 178  
 179  </fieldset></td>
 180  </tr>
 181  <tr valign="top">
 182  <th scope="row"><?php _e('Default Avatar') ?></th>
 183  <td class="defaultavatarpicker"><fieldset><legend class="hidden"><?php _e('Default Avatar') ?></legend>
 184  
 185  <?php _e('For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their e-mail address.'); ?><br />
 186  
 187  <?php
 188  $avatar_defaults = array(
 189      'mystery' => __('Mystery Man'),
 190      'blank' => __('Blank'),
 191      'gravatar_default' => __('Gravatar Logo'),
 192      'identicon' => __('Identicon (Generated)'),
 193      'wavatar' => __('Wavatar (Generated)'),
 194      'monsterid' => __('MonsterID (Generated)')
 195  );
 196  $avatar_defaults = apply_filters('avatar_defaults', $avatar_defaults);
 197  $default = get_option('avatar_default');
 198  if ( empty($default) )
 199      $default = 'mystery';
 200  $size = 32;
 201  $avatar_list = '';
 202  foreach ( $avatar_defaults as $default_key => $default_name ) {
 203      $selected = ($default == $default_key) ? 'checked="checked" ' : '';
 204      $avatar_list .= "\n\t<label><input type='radio' name='avatar_default' id='avatar_{$default_key}' value='{$default_key}' {$selected}/> ";
 205  
 206      $avatar = get_avatar( $user_email, $size, $default_key );
 207      $avatar_list .= preg_replace("/src='(.+?)'/", "src='\$1&amp;forcedefault=1'", $avatar);
 208  
 209      $avatar_list .= ' ' . $default_name . '</label>';
 210      $avatar_list .= '<br />';
 211  }
 212  echo apply_filters('default_avatar_select', $avatar_list);
 213  ?>
 214  
 215  </fieldset></td>
 216  </tr>
 217  <?php do_settings_fields('discussion', 'avatars'); ?>
 218  </table>
 219  
 220  <?php do_settings_sections('discussion'); ?>
 221  
 222  <p class="submit">
 223  <input type="submit" name="Submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
 224  </p>
 225  </form>
 226  </div>
 227  
 228  <?php include ('./admin-footer.php'); ?>


Generated: Mon Mar 23 16:23:02 2009 Cross-referenced by PHPXref 0.7