]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/options-privacy.php
Wordpress 3.0.6
[autoinstalls/wordpress.git] / wp-admin / options-privacy.php
index ac6810b3a065359f1d986cd63b2cd79f0127a03f..caac6a1d619feff6bd0b1f3fd42899a4c04eb82e 100644 (file)
@@ -1,32 +1,57 @@
 <?php
 <?php
+/**
+ * Privacy Options Settings Administration Panel.
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
+
+/** Load WordPress Administration Bootstrap */
 require_once('./admin.php');
 
 require_once('./admin.php');
 
-$title = __('Privacy Options');
+if ( ! current_user_can( 'manage_options' ) )
+       wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
+
+$title = __('Privacy Settings');
 $parent_file = 'options-general.php';
 
 $parent_file = 'options-general.php';
 
+add_contextual_help($current_screen,
+       '<p>' . __('You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the second option here. Note that your privacy is not complete; your site is still visible on the web.') . '</p>' .
+       '<p>' . __('When this setting is in effect a reminder is shown in the header of these administration screens that says, &#8220;Search Engines Blocked,&#8221; to remind you that your site is not being crawled.') . '</p>' .
+       '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>' .
+       '<p><strong>' . __('For more information:') . '</strong></p>' .
+       '<p>' . __('<a href="http://codex.wordpress.org/Settings_Privacy_SubPanel" target="_blank">Privacy Settings Documentation</a>') . '</p>' .
+       '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
+);
+
 include('./admin-header.php');
 ?>
 
 <div class="wrap">
 include('./admin-header.php');
 ?>
 
 <div class="wrap">
-<h2><?php _e('Privacy Options') ?></h2>
+<?php screen_icon(); ?>
+<h2><?php echo esc_html( $title ); ?></h2>
+
 <form method="post" action="options.php">
 <form method="post" action="options.php">
-<?php wp_nonce_field('update-options') ?>
-<table class="optiontable">
+<?php settings_fields('privacy'); ?>
+
+<table class="form-table">
 <tr valign="top">
 <tr valign="top">
-<th scope="row"><?php _e('Blog visibility:') ?> </th>
-<td>
-<p><input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> />
-<label for="blog-public"><?php _e('I would like my blog to be visible to everyone, including search engines (like Google, Sphere, Technorati) and archivers');?></label></p>
-<p><input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked('0', get_option('blog_public')); ?> />
-<label for="blog-norobots"><?php _e('I would like to block search engines, but allow normal visitors'); ?></label></p>
+<th scope="row"><?php _e('Site Visibility') ?> </th>
+<td><fieldset><legend class="screen-reader-text"><span><?php _e('Site Visibility') ?> </span></legend>
+<input id="blog-public" type="radio" name="blog_public" value="1" <?php checked('1', get_option('blog_public')); ?> />
+<label for="blog-public"><?php _e('I would like my site to be visible to everyone, including search engines (like Google, Bing, Technorati) and archivers');?></label><br/>
+<input id="blog-norobots" type="radio" name="blog_public" value="0" <?php checked('0', get_option('blog_public')); ?> />
+<label for="blog-norobots"><?php _e('I would like to block search engines, but allow normal visitors'); ?></label>
 <?php do_action('blog_privacy_selector'); ?>
 <?php do_action('blog_privacy_selector'); ?>
-</td>
+</fieldset></td>
 </tr>
 </tr>
+<?php do_settings_fields('privacy', 'default'); ?>
 </table>
 
 </table>
 
-<p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Options &raquo;') ?>" />
-<input type="hidden" name="action" value="update" />
-<input type="hidden" name="page_options" value="blog_public" />
+<?php do_settings_sections('privacy'); ?>
+
+<p class="submit">
+       <input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />
 </p>
 </form>
 
 </p>
 </form>