Make WordPress Core

Ticket #35191: 35191.patch

File 35191.patch, 8.7 KB (added by afercia, 9 years ago)
  • src/wp-admin/css/common.css

     
    21672167        display: block;
    21682168}
    21692169
    2170 .importers td {
    2171         padding-right: 14px;
     2170.importers {
     2171        margin-bottom: 2em;
    21722172}
    21732173
    2174 .importers {
    2175         font-size: 16px;
    2176         width: auto;
     2174.importer-title,
     2175.importer-desc,
     2176.importer-status,
     2177.importer-action {
     2178        display: block;
     2179        margin: 0;
     2180        padding: 0;
    21772181}
    21782182
     2183.importer-action {
     2184        margin-bottom: 1em;
     2185}
     2186
    21792187#post-body #post-body-content #namediv h3, /* Back-compat for pre-4.4 */
    21802188#post-body #post-body-content #namediv h2 {
    21812189        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} else {
    3536        $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'] ] ) ) {
     
    5961<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>
    6062
    6163<?php
    62 
     64// Registered (already installed) importers. They're stored in the global $wp_importers.
    6365$importers = get_importers();
    6466
    6567// If a popular importer is not registered, create a dummy registration that links to the plugin installer.
     
    6870                continue;
    6971        if ( isset( $importers[ $pop_data['importer-id'] ] ) )
    7072                continue;
     73
     74        // Merge the importers from the WordPress.org API in the array of registered (already installed) importers.
    7175        $importers[ $pop_data['importer-id'] ] = array( $pop_data['name'], $pop_data['description'], 'install' => $pop_data['plugin-slug'] );
    7276}
    7377
     
    7680} else {
    7781        uasort( $importers, '_usort_by_first_member' );
    7882?>
    79 <table class="widefat importers striped">
     83<ul class="importers"><?php
     84foreach ( $importers as $importer_id => $data ) {
     85        $action = $status = $status_class = '';
    8086
    81 <?php
    82         foreach ($importers as $importer_id => $data) {
    83                 $action = '';
    84                 if ( isset( $data['install'] ) ) {
    85                         $plugin_slug = $data['install'];
    86                         if ( file_exists( WP_PLUGIN_DIR . '/' . $plugin_slug ) ) {
    87                                 // Looks like Importer is installed, But not active
    88                                 $plugins = get_plugins( '/' . $plugin_slug );
    89                                 if ( !empty($plugins) ) {
    90                                         $keys = array_keys($plugins);
    91                                         $plugin_file = $plugin_slug . '/' . $keys[0];
    92                                         $action = '<a href="' . esc_url(wp_nonce_url(admin_url('plugins.php?action=activate&plugin=' . $plugin_file . '&from=import'), 'activate-plugin_' . $plugin_file)) .
    93                                                                                         '"title="' . esc_attr__('Activate importer') . '"">' . $data[0] . '</a>';
    94                                 }
     87        if ( isset( $data['install'] ) ) {
     88                $plugin_slug = $data['install'];
     89                if ( file_exists( WP_PLUGIN_DIR . '/' . $plugin_slug ) ) {
     90                        // Looks like an importer is installed, but not active.
     91                        $plugins = get_plugins( '/' . $plugin_slug );
     92                        if ( ! empty( $plugins ) ) {
     93                                $keys = array_keys( $plugins );
     94                                $plugin_file = $plugin_slug . '/' . $keys[0];
     95                                $status = __( 'Installed and not activated.' );
     96                                $status_class = ' importer-inactive';
     97                                $action = '<a href="' . esc_url( wp_nonce_url( admin_url( 'plugins.php?action=activate&plugin=' . $plugin_file .
     98                                                                '&from=import' ), 'activate-plugin_' . $plugin_file ) ) . '">' . __( 'Activate and run the importer' ) . '</a>';
    9599                        }
    96                         if ( empty($action) ) {
    97                                 if ( is_main_site() ) {
    98                                         $action = '<a href="' . esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $plugin_slug .
    99                                                                                 '&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox" title="' .
    100                                                                                 esc_attr__('Install importer') . '">' . $data[0] . '</a>';
    101                                 } else {
    102                                         $action = $data[0];
    103                                         $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' ) );
    104                                 }
     100                }
     101                if ( empty( $action ) ) {
     102                        if ( is_main_site() ) {
     103                                $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">' . __( 'Details and installation' ) . '</a>';
     105                        } else {
     106                                $action = sprintf( __( 'This importer is not installed. Please install importers from <a href="%s">the main site</a>.' ),
     107                                                        get_admin_url( $current_site->blog_id, 'import.php' )
     108                                                );
    105109                        }
    106                 } else {
    107                         $action = "<a href='" . esc_url( "admin.php?import=$importer_id" ) . "' title='" . esc_attr( wptexturize( strip_tags( $data[1] ) ) ) ."'>{$data[0]}</a>";
     110                        $status = __( 'Not installed.' );
    108111                }
     112        } else {
     113                $action = '<a href="' . esc_url( 'admin.php?import=$importer_id' ) . '">' . __( 'Run the importer' ) . '</a>';
     114                $status = __( 'Installed and activated.' );
     115                $status_class = ' importer-active';
     116        }
    109117
    110                 echo "
    111                         <tr>
    112                                 <td class='import-system row-title'>$action</td>
    113                                 <td class='desc'>{$data[1]}</td>
    114                         </tr>";
    115         }
     118        echo "
     119        <li class='importer-item{$status_class}'>
     120                <span class='importer-title row-title'>{$data[0]}</span>
     121                <span class='importer-desc'>{$data[1]}</span>
     122                <span class='importer-status'>{$status}</span>
     123                <span class='importer-action'>{$action}</span>
     124        </li>";
     125}
    116126?>
    117127
    118 </table>
     128</ul>
    119129<?php
    120130}
    121131
  • 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                ),