2008-09-30 21:39:13 +00:00
<? php
/**
2010-03-01 07:15:15 +00:00
* Tools Administration Panel.
2008-09-30 21:39:13 +00:00
*
* @package WordPress
* @subpackage Administration
*/
/** WordPress Administration Bootstrap */
2010-04-18 06:14:45 +00:00
require_once ( './admin.php' );
2008-09-30 21:39:13 +00:00
2008-11-27 21:11:25 +00:00
$title = __ ( 'Tools' );
2008-09-30 21:39:13 +00:00
2010-04-18 06:14:45 +00:00
require_once ( './admin-header.php' );
2008-09-30 21:39:13 +00:00
2008-11-27 21:11:25 +00:00
?>
2008-11-28 10:14:43 +00:00
<div class="wrap">
2009-09-16 03:13:21 +00:00
<?php screen_icon(); ?>
2009-05-18 15:11:07 +00:00
<h2><?php echo esc_html( $title ); ?></h2>
2008-11-28 10:14:43 +00:00
2009-04-01 05:41:52 +00:00
<?php if ( current_user_can('edit_posts') ) : ?>
2008-11-28 10:14:43 +00:00
<div class="tool-box">
<h3 class="title"><?php _e('Press This') ?></h3>
2008-12-07 10:23:43 +00: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 18:03:31 +00:00
2010-04-30 03:17:49 +00: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 site.'); ?></p>
2008-11-28 10:14:43 +00: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 19:43:53 +00: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 10:14:43 +00:00
</div>
2009-05-29 19:15:32 +00:00
<?php
endif;
do_action( 'tool_box' );
?>
2008-11-28 10:14:43 +00:00
</div>
2008-11-27 21:11:25 +00:00
<?php
2010-04-18 06:14:45 +00:00
include('./admin-footer.php');
2008-12-07 10:23:43 +00:00
?>