[ Index ]

PHP Cross Reference of WordPress 3.0 beta 1

[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/wp-admin/ -> tools.php (source)

   1  <?php
   2  /**
   3   * Tools Administration Panel.
   4   *
   5   * @package WordPress
   6   * @subpackage Administration
   7   */
   8  
   9  /** WordPress Administration Bootstrap */
  10  require_once ('admin.php');
  11  
  12  $title = __('Tools');
  13  wp_enqueue_script( 'wp-gears' );
  14  
  15  require_once ('admin-header.php');
  16  
  17  ?>
  18  <div class="wrap">
  19  <?php screen_icon(); ?>
  20  <h2><?php echo esc_html( $title ); ?></h2>
  21  
  22  <?php
  23  if ( ! $is_opera ) {
  24  ?>
  25  <div class="tool-box">
  26      <div id="gears-msg1">
  27      <h3 class="title"><?php _e('Turbo:'); ?> <?php _e('Speed up WordPress'); ?></h3>
  28      <p><?php _e('WordPress has support for Gears, which adds new features to your web browser.'); ?><br />
  29      <a href="http://gears.google.com/" target="_blank" style="font-weight:normal;"><?php _e('More information...'); ?></a></p>
  30      <p><?php _e('After you install and enable Gears, most of WordPress&#8217; images, scripts, and CSS files will be stored locally on your computer. This speeds up page load time.'); ?></p>
  31      <p><strong><?php _e('Don&#8217;t install on a public or shared computer.'); ?></strong></p>
  32      <div class="buttons"><button onclick="window.location = 'http://gears.google.com/?action=install&amp;return=<?php echo urlencode( admin_url() ); ?>';" class="button"><?php _e('Install Now'); ?></button></div>
  33      </div>
  34  
  35      <div id="gears-msg2" style="display:none;">
  36      <h3 class="title"><?php _e('Turbo:'); ?> <?php _e('Gears Status'); ?></h3>
  37      <p><?php _e('Gears is installed on this computer, but is not enabled for use with WordPress.'); ?></p>
  38      <p><?php _e('To enable it click the button below.'); ?></p>
  39      <p><strong><?php _e('Note: Do not enable Gears if this is a public or shared computer!'); ?></strong></p>
  40      <div class="buttons"><button class="button" onclick="wpGears.getPermission();"><?php _e('Enable Gears'); ?></button></div>
  41      </div>
  42  
  43      <div id="gears-msg3" style="display:none;">
  44      <h3 class="title"><?php _e('Turbo:'); ?> <?php _e('Gears Status'); ?></h3>
  45      <p><?php
  46  
  47      if ( $is_chrome )
  48          _e('Gears is installed and enabled on this computer. You can disable it from the Under the Hood tab in Chrome&#8217;s Options menu.');
  49      elseif ( $is_safari )
  50          _e('Gears is installed and enabled on this computer. You can disable it from the Safari menu.');
  51      else
  52          _e('Gears is installed and enabled on this computer. You can disable it from your browser&#8217;s Tools menu.');
  53  
  54      ?></p>
  55      <p><?php _e('If there are any errors try disabling Gears, reloading the page, and re-enabling Gears.'); ?></p>
  56      <p><?php _e('Local storage status:'); ?> <span id="gears-wait"><span style="color:#f00;"><?php _e('Updating files:'); ?></span> <span id="gears-upd-number"></span></span></p>
  57      </div>
  58  
  59      <div id="gears-msg4" style="display:none;">
  60      <h3 class="title"><?php _e('Turbo:'); ?> <?php _e('Gears Status'); ?></h3>
  61      <p><?php _e('Your browser&#8217;s settings do not permit this website to use Google Gears.'); ?></p>
  62      <p><?php
  63  
  64      if ( $is_chrome )
  65           _e('To allow it, change the Gears settings in your browser&#8217;s Options, Under the Hood menu and reload this page.');
  66      elseif ( $is_safari )
  67           _e('To allow it, change the Gears settings in the Safari menu and reload this page.');
  68      else
  69          _e('To allow it, change the Gears settings in your browser&#8217;s Tools menu and reload this page.');
  70  
  71      ?></p>
  72      <p><strong><?php _e('Note: Do not enable Gears if this is a public or shared computer!'); ?></strong></p>
  73      </div>
  74      <script type="text/javascript">wpGears.message();</script>
  75  </div>
  76  <?php } ?>
  77  
  78  <?php if ( current_user_can('edit_posts') ) : ?>
  79  <div class="tool-box">
  80      <h3 class="title"><?php _e('Press This') ?></h3>
  81      <p><?php _e('Press This is a bookmarklet: a little app that runs in your browser and lets you grab bits of the web.');?></p>
  82  
  83      <p><?php _e('Use Press This to clip text, images and videos from any web page. Then edit and add more straight from Press This before you save or publish it in a post on your blog.'); ?></p>
  84      <p><?php _e('Drag-and-drop the following link to your bookmarks bar or right click it and add it to your favorites for a posting shortcut.') ?></p>
  85      <p class="pressthis"><a href="<?php echo htmlspecialchars( get_shortcut_link() ); ?>" title="<?php echo esc_attr(__('Press This')) ?>"><?php _e('Press This') ?></a></p>
  86  </div>
  87  <?php
  88  endif;
  89  
  90  $cats = get_taxonomy('category');
  91  $tags = get_taxonomy('post_tag');
  92  
  93  if ( current_user_can($cats->manage_cap) || current_user_can($tags->manage_cap) ) : ?>
  94  <div class="tool-box">
  95      <h3 class="title"><?php _e('Category&#47;Tag Conversion') ?></h3>
  96      <p><?php printf(__('Use this to convert <a href="%s">categories to tags</a>, or <a href="%s">tags to categories</a>.'), 'admin.php?import=wp-cat2tag', 'admin.php?import=wp-cat2tag&amp;step=3'); ?></p>
  97  </div>
  98  <?php
  99  endif;
 100  
 101  do_action( 'tool_box' );
 102  ?>
 103  </div>
 104  <?php
 105  include ('admin-footer.php');
 106  ?>


Generated: Mon Apr 5 14:26:09 2010 Cross-referenced by PHPXref 0.7