2008-09-30 23:39:13 +02:00
< ? php
/**
* Turbo Administration Panel .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
require_once ( 'admin.php' );
2008-11-27 22:11:25 +01:00
$title = __ ( 'Tools' );
2008-10-02 19:24:20 +02:00
wp_enqueue_script ( 'wp-gears' );
2008-09-30 23:39:13 +02:00
require_once ( 'admin-header.php' );
2008-11-27 22:11:25 +01:00
?>
2008-11-28 11:14:43 +01:00
< div class = " wrap " >
2009-09-16 05:13:21 +02:00
< ? php screen_icon (); ?>
2009-05-18 17:11:07 +02:00
< h2 >< ? php echo esc_html ( $title ); ?> </h2>
2008-11-28 11:14:43 +01:00
< div class = " tool-box " >
2008-11-27 22:11:25 +01:00
< ? php
2008-09-30 23:39:13 +02:00
if ( ! $is_opera ) {
?>
< div id = " gears-msg1 " >
2008-11-28 11:14:43 +01:00
< h3 class = " title " >< ? php _e ( 'Turbo:' ); ?> <?php _e('Speed up WordPress'); ?></h3>
2008-09-30 23:39:13 +02:00
< p >< ? php _e ( 'WordPress now has support for Gears, which adds new features to your web browser.' ); ?> <br />
< a href = " http://gears.google.com/ " target = " _blank " style = " font-weight:normal; " >< ? php _e ( 'More information...' ); ?> </a></p>
< p >< ? php _e ( 'After you install and enable Gears, most of WordPress’ images, scripts, and CSS files will be stored locally on your computer. This speeds up page load time.' ); ?> </p>
2008-10-02 19:24:20 +02:00
< p >< strong >< ? php _e ( 'Don’t install on a public or shared computer.' ); ?> </strong></p>
< div class = " buttons " >< button onclick = " window.location = 'http://gears.google.com/?action=install&return=<?php echo urlencode( admin_url() ); ?>'; " class = " button " >< ? php _e ( 'Install Now' ); ?> </button></div>
2008-09-30 23:39:13 +02:00
</ div >
< div id = " gears-msg2 " style = " display:none; " >
2008-11-28 11:14:43 +01:00
< h3 class = " title " >< ? php _e ( 'Turbo:' ); ?> <?php _e('Gears Status'); ?></h3>
2008-09-30 23:39:13 +02:00
< p >< ? php _e ( 'Gears is installed on this computer, but is not enabled for use with WordPress.' ); ?> </p>
< p >< ? php _e ( 'To enable it click the button below.' ); ?> </p>
2008-12-09 22:43:54 +01:00
< p >< strong >< ? php _e ( 'Note: Do not enable Gears if this is a public or shared computer!' ); ?> </strong></p>
2008-10-02 19:24:20 +02:00
< div class = " buttons " >< button class = " button " onclick = " wpGears.getPermission(); " >< ? php _e ( 'Enable Gears' ); ?> </button></div>
2008-09-30 23:39:13 +02:00
</ div >
< div id = " gears-msg3 " style = " display:none; " >
2008-11-28 11:14:43 +01:00
< h3 class = " title " >< ? php _e ( 'Turbo:' ); ?> <?php _e('Gears Status'); ?></h3>
2008-09-30 23:39:13 +02:00
< p >< ? php
if ( $is_chrome )
2009-03-08 07:53:18 +01:00
_e ( 'Gears is installed and enabled on this computer. You can disable it from the Under the Hood tab in Chrome’s Options menu.' );
2008-09-30 23:39:13 +02:00
elseif ( $is_safari )
_e ( 'Gears is installed and enabled on this computer. You can disable it from the Safari menu.' );
else
_e ( 'Gears is installed and enabled on this computer. You can disable it from your browser’s Tools menu.' );
?> </p>
< p >< ? php _e ( 'If there are any errors try disabling Gears, reloading the page, and re-enabling Gears.' ); ?> </p>
< 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>
</ div >
< div id = " gears-msg4 " style = " display:none; " >
2008-11-28 11:14:43 +01:00
< h3 class = " title " >< ? php _e ( 'Turbo:' ); ?> <?php _e('Gears Status'); ?></h3>
2008-12-07 10:19:11 +01:00
< p >< ? php _e ( 'Your browser’s settings do not permit this website to use Google Gears.' ); ?> </p>
2008-09-30 23:39:13 +02:00
< p >< ? php
if ( $is_chrome )
2008-12-07 10:19:11 +01:00
_e ( 'To allow it, change the Gears settings in your browser’s Options, Under the Hood menu and reload this page.' );
2008-09-30 23:39:13 +02:00
elseif ( $is_safari )
2008-12-07 10:19:11 +01:00
_e ( 'To allow it, change the Gears settings in the Safari menu and reload this page.' );
2008-09-30 23:39:13 +02:00
else
2008-12-07 10:19:11 +01:00
_e ( 'To allow it, change the Gears settings in your browser’s Tools menu and reload this page.' );
2008-09-30 23:39:13 +02:00
?> </p>
2008-12-09 22:43:54 +01:00
< p >< strong >< ? php _e ( 'Note: Do not enable Gears if this is a public or shared computer!' ); ?> </strong></p>
2008-09-30 23:39:13 +02:00
</ div >
2008-11-28 11:14:43 +01:00
< script type = " text/javascript " > wpGears . message (); </ script >
2008-10-01 00:23:59 +02:00
< ? php } else {
_e ( 'Turbo is not available for your browser.' );
2008-11-28 11:14:43 +01:00
} ?>
</ div >
2009-04-01 07:41:52 +02:00
< ? php if ( current_user_can ( 'edit_posts' ) ) : ?>
2008-11-28 11:14:43 +01:00
< div class = " tool-box " >
< h3 class = " title " >< ? php _e ( 'Press This' ) ?> </h3>
2008-12-07 11:23:43 +01:00
< 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>
2008-12-09 19:03:31 +01:00
2008-12-07 11:23:43 +01:00
< 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>
2008-11-28 11:14:43 +01:00
< 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>
2009-05-05 21:43:53 +02:00
< p class = " pressthis " >< a href = " <?php echo htmlspecialchars( get_shortcut_link() ); ?> " title = " <?php echo esc_attr(__('Press This')) ?> " >< ? php _e ( 'Press This' ) ?> </a></p>
2008-11-28 11:14:43 +01:00
</ div >
2009-05-29 21:15:32 +02:00
< ? php
endif ;
2010-02-27 05:04:36 +01:00
$cats = get_taxonomy ( 'category' );
$tags = get_taxonomy ( 'post_tag' );
if ( current_user_can ( $cats -> manage_cap ) || current_user_can ( $tags -> manage_cap ) ) : ?>
< div class = " tool-box " >
< h3 class = " title " >< ? php _e ( 'Category/Tag Conversion' ) ?> </h3>
< 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&step=3' ); ?> </p>
</ div >
< ? php
endif ;
2009-05-29 21:15:32 +02:00
do_action ( 'tool_box' );
?>
2008-11-28 11:14:43 +01:00
</ div >
2008-11-27 22:11:25 +01:00
< ? php
2008-10-01 00:23:59 +02:00
include ( 'admin-footer.php' );
2008-12-07 11:23:43 +01:00
?>