Make WordPress Core

Ticket #35191: 35191.4.6.diff

File 35191.4.6.diff, 9.5 KB (added by afercia, 8 years ago)
  • src/wp-admin/css/common.css

     
    22762276
    22772277.importers td {
    22782278        padding-right: 14px;
     2279        line-height: 1.5em;
    22792280}
    22802281
    22812282.importers {
     
    22832284        width: auto;
    22842285}
    22852286
     2287.importer-title,
     2288.importer-desc,
     2289.importer-status,
     2290.importer-action {
     2291        display: block;
     2292}
     2293
     2294.importer-action {
     2295        margin-bottom: 1em;
     2296        color: #ddd;
     2297}
     2298
    22862299#post-body #post-body-content #namediv h3, /* Back-compat for pre-4.4 */
    22872300#post-body #post-body-content #namediv h2 {
    22882301        margin-top: 0;
  • src/wp-admin/import.php

     
    3030        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
    3131);
    3232
    33 if ( current_user_can( 'install_plugins' ) )
     33if ( current_user_can( 'install_plugins' ) ) {
     34        // List of popular importer plugins from the WordPress.org API.
    3435        $popular_importers = wp_get_popular_importers();
    35 else
    36         $popular_importers = array();
     36} else {
     37        $popular_importers = array();
     38}
    3739
    3840// Detect and redirect invalid importers like 'movabletype', which is registered as 'mt'
    3941if ( ! empty( $_GET['invalid'] ) && isset( $popular_importers[ $_GET['invalid'] ] ) ) {
     
    6668<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>
    6769
    6870<?php
    69 
     71// Registered (already installed) importers. They're stored in the global $wp_importers.
    7072$importers = get_importers();
    7173
    7274// If a popular importer is not registered, create a dummy registration that links to the plugin installer.
     
    7577                continue;
    7678        if ( isset( $importers[ $pop_data['importer-id'] ] ) )
    7779                continue;
     80
     81        // Fill the array of registered (already installed) importers with data of the popular importers from the WordPress.org API.
    7882        $importers[ $pop_data['importer-id'] ] = array( $pop_data['name'], $pop_data['description'], 'install' => $pop_data['plugin-slug'] );
    7983}
    8084
     
    8791
    8892<?php
    8993        foreach ($importers as $importer_id => $data) {
    90                 $action = '';
     94                $plugin_slug = $action = $status = $status_class = '';
     95
    9196                if ( isset( $data['install'] ) ) {
    9297                        $plugin_slug = $data['install'];
     98
    9399                        if ( file_exists( WP_PLUGIN_DIR . '/' . $plugin_slug ) ) {
    94                                 // Looks like Importer is installed, But not active
     100                                // Looks like an importer is installed, but not active.
    95101                                $plugins = get_plugins( '/' . $plugin_slug );
    96102                                if ( !empty($plugins) ) {
    97103                                        $keys = array_keys($plugins);
    98104                                        $plugin_file = $plugin_slug . '/' . $keys[0];
    99                                         $action = '<a href="' . esc_url(wp_nonce_url(admin_url('plugins.php?action=activate&plugin=' . $plugin_file . '&from=import'), 'activate-plugin_' . $plugin_file)) .
    100                                                                                         '"title="' . esc_attr__('Activate importer') . '"">' . $data[0] . '</a>';
     105                                        $status = _x( 'Inactive', 'importer plugin' );
     106                                        $status_class = ' importer-inactive';
     107                                        $url = esc_url( wp_nonce_url( add_query_arg( array(
     108                                                'action' => 'activate',
     109                                                'plugin' => $plugin_file,
     110                                                'from'   => 'import',
     111                                        ), admin_url( 'plugins.php' ) ), 'activate-plugin_' . $plugin_file ) );
     112                                        $action = sprintf( '<a href="%1$s">%2$s</a>', $url, __( 'Activate' ) );
    101113                                }
    102114                        }
     115
    103116                        if ( empty($action) ) {
    104117                                if ( is_main_site() ) {
    105                                         $action = '<a href="' . esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $plugin_slug .
    106                                                                                 '&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox open-plugin-details-modal" title="' .
    107                                                                                 esc_attr__('Install importer') . '">' . $data[0] . '</a>';
     118                                        $url = esc_url( wp_nonce_url( add_query_arg( array(
     119                                                'action' => 'install-plugin',
     120                                                'plugin' => $plugin_slug,
     121                                                'from'   => 'import',
     122                                        ), self_admin_url( 'update.php' ) ), 'install-plugin_' . $plugin_slug ) );
     123                                        $action = sprintf( '<a href="%1$s">%2$s</a>', $url, __( 'Install Now' ) );
    108124                                } else {
    109                                         $action = $data[0];
    110                                         $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' ) );
     125                                        $action = sprintf( __( 'This importer is not installed. Please install importers from <a href="%s">the main site</a>.' ),
     126                                                get_admin_url( get_current_network_id(), 'import.php' )
     127                                        );
    111128                                }
     129
     130                                $status = _x( 'Not installed', 'importer plugin' );
    112131                        }
    113132                } else {
    114                         $action = "<a href='" . esc_url( "admin.php?import=$importer_id" ) . "' title='" . esc_attr( wptexturize( strip_tags( $data[1] ) ) ) ."'>{$data[0]}</a>";
     133                        $status = _x( 'Active', 'importer plugin' );
     134                        $status_class = ' importer-active';
     135                        $url = esc_url( add_query_arg( array(
     136                                'import' => $importer_id,
     137                        ), self_admin_url( 'admin.php' ) ) );
     138                        $action = sprintf( '<a href="%1$s">%2$s</a>', $url, __( 'Run' ) );
    115139                }
    116140
     141                if ( '' !== $plugin_slug ) {
     142                        $url = esc_url( add_query_arg( array(
     143                                'tab'       => 'plugin-information',
     144                                'plugin'    => $plugin_slug,
     145                                'from'      => 'import',
     146                                'TB_iframe' => 'true',
     147                                'width'     => 600,
     148                                'height'    => 550,
     149                        ), network_admin_url( 'plugin-install.php' ) ) );
     150                        $action .= sprintf( ' | <a href="%1$s" class="thickbox open-plugin-details-modal">%2$s</a>', $url, __( 'Details' ) );
     151                }
     152
    117153                echo "
    118                         <tr>
    119                                 <td class='import-system row-title'>$action</td>
    120                                 <td class='desc'>{$data[1]}</td>
     154                        <tr class='importer-item{$status_class}'>
     155                                <td class='import-system'>
     156                                        <span class='importer-title row-title'>{$data[0]}</span>
     157                                        <span class='importer-action'>{$action}</span>
     158                                </td>
     159                                <td class='desc'>
     160                                        <span class='importer-status'>{$status}</span>
     161                                        <span class='importer-desc'>{$data[1]}</span>
     162                                </td>
    121163                        </tr>";
    122164        }
    123165?>
  • 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                ),
  • src/wp-includes/pluggable.php

     
    10491049        if ( -1 == $action )
    10501050                _doing_it_wrong( __FUNCTION__, __( 'You should specify a nonce action to be verified by using the first parameter.' ), '3.2.0' );
    10511051
    1052         $adminurl = strtolower(admin_url());
    1053         $referer = strtolower(wp_get_referer());
    10541052        $result = isset($_REQUEST[$query_arg]) ? wp_verify_nonce($_REQUEST[$query_arg], $action) : false;
    10551053
    10561054        /**