Make WordPress Core

Ticket #35191: 35191.2.patch

File 35191.2.patch, 8.2 KB (added by afercia, 8 years ago)
  • src/wp-admin/css/common.css

     
    21732173
    21742174.importers td {
    21752175        padding-right: 14px;
     2176        line-height: 1.5em;
    21762177}
    21772178
    21782179.importers {
     
    21802181        width: auto;
    21812182}
    21822183
     2184.importer-title,
     2185.importer-desc,
     2186.importer-status,
     2187.importer-action {
     2188        display: block;
     2189        margin: 0;
     2190        padding: 0;
     2191}
     2192
     2193.importer-action {
     2194        margin-bottom: 1em;
     2195}
     2196
    21832197#post-body #post-body-content #namediv h3, /* Back-compat for pre-4.4 */
    21842198#post-body #post-body-content #namediv h2 {
    21852199        margin-top: 0;
  • src/wp-admin/import.php

     
    2929        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
    3030);
    3131
    32 if ( current_user_can( 'install_plugins' ) )
     32if ( current_user_can( 'install_plugins' ) ) {
     33        // List of popular importer plugins from the WordPress.org API.
    3334        $popular_importers = wp_get_popular_importers();
    34 else
    35         $popular_importers = array();
     35} else {
     36        $popular_importers = array();
     37}
    3638
    3739// Detect and redirect invalid importers like 'movabletype', which is registered as 'mt'
    3840if ( ! empty( $_GET['invalid'] ) && isset( $popular_importers[ $_GET['invalid'] ] ) ) {
     
    6466<p><?php _e('If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:'); ?></p>
    6567
    6668<?php
    67 
     69// Registered (already installed) importers. They're stored in the global $wp_importers.
    6870$importers = get_importers();
    6971
    7072// If a popular importer is not registered, create a dummy registration that links to the plugin installer.
     
    7375                continue;
    7476        if ( isset( $importers[ $pop_data['importer-id'] ] ) )
    7577                continue;
     78
     79        // Merge the importers from the WordPress.org API in the array of registered (already installed) importers.
    7680        $importers[ $pop_data['importer-id'] ] = array( $pop_data['name'], $pop_data['description'], 'install' => $pop_data['plugin-slug'] );
    7781}
    7882
     
    8589
    8690<?php
    8791        foreach ($importers as $importer_id => $data) {
    88                 $action = '';
     92                $action = $status = $status_class = '';
     93
    8994                if ( isset( $data['install'] ) ) {
    9095                        $plugin_slug = $data['install'];
    9196                        if ( file_exists( WP_PLUGIN_DIR . '/' . $plugin_slug ) ) {
    92                                 // Looks like Importer is installed, But not active
     97                                // Looks like an importer is installed, but not active.
    9398                                $plugins = get_plugins( '/' . $plugin_slug );
    9499                                if ( !empty($plugins) ) {
    95100                                        $keys = array_keys($plugins);
    96101                                        $plugin_file = $plugin_slug . '/' . $keys[0];
    97                                         $action = '<a href="' . esc_url(wp_nonce_url(admin_url('plugins.php?action=activate&plugin=' . $plugin_file . '&from=import'), 'activate-plugin_' . $plugin_file)) .
    98                                                                                         '"title="' . esc_attr__('Activate importer') . '"">' . $data[0] . '</a>';
     102                                        $status = _x( 'Installed and not activated', 'importer plugin' );
     103                                        $status_class = ' importer-inactive';
     104                                        $action = '<a href="' . esc_url( wp_nonce_url( admin_url( 'plugins.php?action=activate&plugin=' . $plugin_file .
     105                                                '&from=import' ), 'activate-plugin_' . $plugin_file ) ) . '">' . __( 'Activate and run the importer' ) . '</a>';
    99106                                }
    100107                        }
    101108                        if ( empty($action) ) {
    102109                                if ( is_main_site() ) {
    103110                                        $action = '<a href="' . esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $plugin_slug .
    104                                                                                 '&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox open-plugin-details-modal" title="' .
    105                                                                                 esc_attr__('Install importer') . '">' . $data[0] . '</a>';
     111                                                '&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox">' . __( 'Details and installation' ) . '</a>';
    106112                                } else {
    107                                         $action = $data[0];
    108                                         $data[1] = sprintf( __( 'This importer is not installed. Please install importers from <a href="%s">the main site</a>.' ), get_admin_url( $current_site->blog_id, 'import.php' ) );
     113                                        $action = sprintf( __( 'This importer is not installed. Please install importers from <a href="%s">the main site</a>.' ),
     114                                                get_admin_url( $current_site->blog_id, 'import.php' )
     115                                        );
    109116                                }
     117                                $status = _x( 'Not installed', 'importer plugin' );
    110118                        }
    111119                } else {
    112                         $action = "<a href='" . esc_url( "admin.php?import=$importer_id" ) . "' title='" . esc_attr( wptexturize( strip_tags( $data[1] ) ) ) ."'>{$data[0]}</a>";
     120                        $action = '<a href="' . esc_url( 'admin.php?import=$importer_id' ) . '">' . __( 'Run the importer' ) . '</a>';
     121                        $status = _x( 'Installed and activated', 'importer plugin' );
     122                        $status_class = ' importer-active';
    113123                }
    114124
    115125                echo "
    116                         <tr>
    117                                 <td class='import-system row-title'>$action</td>
    118                                 <td class='desc'>{$data[1]}</td>
     126                        <tr class='importer-item{$status_class}'>
     127                                <td class='import-system'>
     128                                        <span class='importer-title row-title'>{$data[0]}</span>
     129                                        <span class='importer-status'>{$status}</span>
     130                                </td>
     131                                <td class='desc'>
     132                                        <span class='importer-desc'>{$data[1]}</span>
     133                                        <span class='importer-action'>{$action}</span>
     134                                </td>
    119135                        </tr>";
    120136        }
    121137?>
  • src/wp-admin/includes/import.php

     
    157157                // slug => name, description, plugin slug, and register_importer() slug
    158158                'blogger' => array(
    159159                        'name' => __( 'Blogger' ),
    160                         'description' => __( 'Install the Blogger importer to import posts, comments, and users from a Blogger blog.' ),
     160                        'description' => __( 'Import posts, comments, and users from a Blogger blog.' ),
    161161                        'plugin-slug' => 'blogger-importer',
    162162                        'importer-id' => 'blogger',
    163163                ),
    164164                'wpcat2tag' => array(
    165165                        'name' => __( 'Categories and Tags Converter' ),
    166                         'description' => __( 'Install the category/tag converter to convert existing categories to tags or tags to categories, selectively.' ),
     166                        'description' => __( 'Convert existing categories to tags or tags to categories, selectively.' ),
    167167                        'plugin-slug' => 'wpcat2tag-importer',
    168168                        'importer-id' => 'wp-cat2tag',
    169169                ),
    170170                'livejournal' => array(
    171171                        'name' => __( 'LiveJournal' ),
    172                         'description' => __( 'Install the LiveJournal importer to import posts from LiveJournal using their API.' ),
     172                        'description' => __( 'Import posts from LiveJournal using their API.' ),
    173173                        'plugin-slug' => 'livejournal-importer',
    174174                        'importer-id' => 'livejournal',
    175175                ),
    176176                'movabletype' => array(
    177177                        'name' => __( 'Movable Type and TypePad' ),
    178                         'description' => __( 'Install the Movable Type importer to import posts and comments from a Movable Type or TypePad blog.' ),
     178                        'description' => __( 'Import posts and comments from a Movable Type or TypePad blog.' ),
    179179                        'plugin-slug' => 'movabletype-importer',
    180180                        'importer-id' => 'mt',
    181181                ),
    182182                'opml' => array(
    183183                        'name' => __( 'Blogroll' ),
    184                         'description' => __( 'Install the blogroll importer to import links in OPML format.' ),
     184                        'description' => __( 'Import links in OPML format.' ),
    185185                        'plugin-slug' => 'opml-importer',
    186186                        'importer-id' => 'opml',
    187187                ),
    188188                'rss' => array(
    189189                        'name' => __( 'RSS' ),
    190                         'description' => __( 'Install the RSS importer to import posts from an RSS feed.' ),
     190                        'description' => __( 'Import posts from an RSS feed.' ),
    191191                        'plugin-slug' => 'rss-importer',
    192192                        'importer-id' => 'rss',
    193193                ),
    194194                'tumblr' => array(
    195195                        'name' => __( 'Tumblr' ),
    196                         'description' => __( 'Install the Tumblr importer to import posts &amp; media from Tumblr using their API.' ),
     196                        'description' => __( 'Import posts &amp; media from Tumblr using their API.' ),
    197197                        'plugin-slug' => 'tumblr-importer',
    198198                        'importer-id' => 'tumblr',
    199199                ),
    200200                'wordpress' => array(
    201201                        'name' => 'WordPress',
    202                         'description' => __( 'Install the WordPress importer to import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.' ),
     202                        'description' => __( 'Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.' ),
    203203                        'plugin-slug' => 'wordpress-importer',
    204204                        'importer-id' => 'wordpress',
    205205                ),