~canonical-sysadmins/wordpress/4.2.4

« back to all changes in this revision

Viewing changes to wp-admin/tools.php

  • Committer: Paul Gear
  • Date: 2015-04-24 01:35:20 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: paul.gear@canonical.com-20150424013520-w4p9ksth76zh6opw
Merge new upstream release 4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
get_current_screen()->set_help_sidebar(
27
27
        '<p><strong>' . __('For more information:') . '</strong></p>' .
28
 
        '<p>' . __('<a href="http://codex.wordpress.org/Tools_Screen" target="_blank">Documentation on Tools</a>') . '</p>' .
 
28
        '<p>' . __('<a href="https://codex.wordpress.org/Tools_Screen" target="_blank">Documentation on Tools</a>') . '</p>' .
29
29
        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
30
30
);
31
31
 
36
36
<h2><?php echo esc_html( $title ); ?></h2>
37
37
 
38
38
<?php if ( current_user_can('edit_posts') ) : ?>
39
 
<div class="tool-box">
40
 
        <h3 class="title"><?php _e('Press This') ?></h3>
41
 
        <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>
42
 
 
43
 
        <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>
44
 
        <p class="description"><?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>
45
 
        <p class="pressthis"><a onclick="return false;" oncontextmenu="if(window.navigator.userAgent.indexOf('WebKit')!=-1||window.navigator.userAgent.indexOf('MSIE')!=-1){jQuery('.pressthis-code').show().find('textarea').focus().select();return false;}" href="<?php echo htmlspecialchars( get_shortcut_link() ); ?>"><span><?php _e('Press This') ?></span></a></p>
46
 
        <div class="pressthis-code" style="display:none;">
47
 
        <p class="description"><?php _e('If your bookmarks toolbar is hidden: copy the code below, open your Bookmarks manager, create new bookmark, type Press This into the name field and paste the code into the URL field.') ?></p>
48
 
        <p><textarea rows="5" cols="120" readonly="readonly"><?php echo htmlspecialchars( get_shortcut_link() ); ?></textarea></p>
49
 
        </div>
 
39
<div class="card pressthis">
 
40
        <h3><?php _e('Press This') ?></h3>
 
41
        <p><?php _e( 'Press This is a little tool that lets you grab bits of the web and create new posts with ease.' );?></p>
 
42
        <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>
 
43
 
 
44
 
 
45
        <form>
 
46
                <h3><?php _e( 'Install Press This' ); ?></h3>
 
47
                <h4><?php _e( 'Bookmarklet' ); ?></h4>
 
48
                <p><?php _e( 'Drag the bookmarklet below to your bookmarks bar. Then, when you&#8217;re on a page you want to share, simply &#8220;press&#8221; it.' ); ?></p>
 
49
 
 
50
                <p class="pressthis-bookmarklet-wrapper">
 
51
                        <a class="pressthis-bookmarklet" onclick="return false;" href="<?php echo htmlspecialchars( get_shortcut_link() ); ?>"><span><?php _e( 'Press This' ); ?></span></a>
 
52
                        <button type="button" class="button button-secondary pressthis-js-toggle js-show-pressthis-code-wrap" aria-expanded="false" aria-controls="pressthis-code-wrap">
 
53
                                <span class="dashicons dashicons-clipboard"></span>
 
54
                                <span class="screen-reader-text"><?php _e( 'Copy &#8220;Press This&#8221; bookmarklet code' ) ?></span>
 
55
                        </button>
 
56
                </p>
 
57
 
 
58
                <div class="hidden js-pressthis-code-wrap clear" id="pressthis-code-wrap">
 
59
                        <p id="pressthis-code-desc">
 
60
                                <?php _e( 'If you can&#8217;t drag the bookmarklet to your bookmarks, copy the following code and create a new bookmark. Paste the code into the new bookmark&#8217;s URL field.' ) ?>
 
61
                        </p>
 
62
                        <p>
 
63
                                <textarea class="js-pressthis-code" rows="5" cols="120" readonly="readonly" aria-labelledby="pressthis-code-desc"><?php echo htmlspecialchars( get_shortcut_link() ); ?></textarea>
 
64
                        </p>
 
65
                </div>
 
66
 
 
67
                <h4><?php _e( 'Direct link (best for mobile)' ); ?></h4>
 
68
                <p><?php _e( 'Follow the link to open Press This. Then add it to your device&#8217;s bookmarks or home screen.' ); ?></p>
 
69
 
 
70
                <p>
 
71
                        <a class="button button-secondary" href="<?php echo htmlspecialchars( admin_url( 'press-this.php' ) ); ?>"><?php _e( 'Open Press This' ) ?></a>
 
72
                </p>
 
73
                <script>
 
74
                        jQuery( document ).ready( function( $ ) {
 
75
                                var $showPressThisWrap = $( '.js-show-pressthis-code-wrap' );
 
76
                                var $pressthisCode = $( '.js-pressthis-code' );
 
77
 
 
78
                                $showPressThisWrap.on( 'click', function( event ) {
 
79
                                        var $this = $( this );
 
80
 
 
81
                                        $this.parent().next( '.js-pressthis-code-wrap' ).slideToggle( 200 );
 
82
                                        $this.attr( 'aria-expanded', $this.attr( 'aria-expanded' ) === 'false' ? 'true' : 'false' );
 
83
                                });
 
84
 
 
85
                                // Select Press This code when focusing (tabbing) or clicking the textarea.
 
86
                                $pressthisCode.on( 'click focus', function() {
 
87
                                        var self = this;
 
88
                                        setTimeout( function() { self.select(); }, 50 );
 
89
                                });
 
90
 
 
91
                        });
 
92
                </script>
 
93
        </form>
50
94
</div>
51
95
<?php
52
96
endif;
55
99
$cats = get_taxonomy('category');
56
100
$tags = get_taxonomy('post_tag');
57
101
if ( current_user_can($cats->cap->manage_terms) || current_user_can($tags->cap->manage_terms) ) : ?>
58
 
<div class="tool-box">
 
102
<div class="card">
59
103
    <h3 class="title"><?php _e( 'Categories and Tags Converter' ) ?></h3>
60
104
    <p><?php printf( __('If you want to convert your categories to tags (or vice versa), use the <a href="%s">Categories and Tags Converter</a> available from the Import screen.'), 'import.php' ); ?></p>
61
105
</div>