~canonical-sysadmins/wordpress/4.7.4

« back to all changes in this revision

Viewing changes to wp-admin/import.php

  • Committer: Jacek Nykis
  • Date: 2015-01-05 16:17:05 UTC
  • Revision ID: jacek.nykis@canonical.com-20150105161705-w544l1h5mcg7u4w9
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Import WordPress Administration Screen
 
4
 *
 
5
 * @package WordPress
 
6
 * @subpackage Administration
 
7
 */
 
8
 
 
9
define('WP_LOAD_IMPORTERS', true);
 
10
 
 
11
/** Load WordPress Bootstrap */
 
12
require_once( dirname( __FILE__ ) . '/admin.php' );
 
13
 
 
14
if ( !current_user_can('import') )
 
15
        wp_die(__('You do not have sufficient permissions to import content in this site.'));
 
16
 
 
17
$title = __('Import');
 
18
 
 
19
get_current_screen()->add_help_tab( array(
 
20
        'id'      => 'overview',
 
21
        'title'   => __('Overview'),
 
22
        'content' => '<p>' . __('This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.') . '</p>' .
 
23
                '<p>' . __('In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently.') . '</p>',
 
24
) );
 
25
 
 
26
get_current_screen()->set_help_sidebar(
 
27
        '<p><strong>' . __('For more information:') . '</strong></p>' .
 
28
        '<p>' . __('<a href="http://codex.wordpress.org/Tools_Import_Screen" target="_blank">Documentation on Import</a>') . '</p>' .
 
29
        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
 
30
);
 
31
 
 
32
if ( current_user_can( 'install_plugins' ) )
 
33
        $popular_importers = wp_get_popular_importers();
 
34
else
 
35
        $popular_importers = array();
 
36
 
 
37
// Detect and redirect invalid importers like 'movabletype', which is registered as 'mt'
 
38
if ( ! empty( $_GET['invalid'] ) && isset( $popular_importers[ $_GET['invalid'] ] ) ) {
 
39
        $importer_id = $popular_importers[ $_GET['invalid'] ]['importer-id'];
 
40
        if ( $importer_id != $_GET['invalid'] ) { // Prevent redirect loops.
 
41
                wp_redirect( admin_url( 'admin.php?import=' . $importer_id ) );
 
42
                exit;
 
43
        }
 
44
        unset( $importer_id );
 
45
}
 
46
 
 
47
add_thickbox();
 
48
wp_enqueue_script( 'plugin-install' );
 
49
 
 
50
require_once( ABSPATH . 'wp-admin/admin-header.php' );
 
51
$parent_file = 'tools.php';
 
52
?>
 
53
 
 
54
<div class="wrap">
 
55
<h2><?php echo esc_html( $title ); ?></h2>
 
56
<?php if ( ! empty( $_GET['invalid'] ) ) : ?>
 
57
        <div class="error"><p><strong><?php _e('ERROR:')?></strong> <?php printf( __('The <strong>%s</strong> importer is invalid or is not installed.'), esc_html( $_GET['invalid'] ) ); ?></p></div>
 
58
<?php endif; ?>
 
59
<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>
 
60
 
 
61
<?php
 
62
 
 
63
$importers = get_importers();
 
64
 
 
65
// If a popular importer is not registered, create a dummy registration that links to the plugin installer.
 
66
foreach ( $popular_importers as $pop_importer => $pop_data ) {
 
67
        if ( isset( $importers[ $pop_importer ] ) )
 
68
                continue;
 
69
        if ( isset( $importers[ $pop_data['importer-id'] ] ) )
 
70
                continue;
 
71
        $importers[ $pop_data['importer-id'] ] = array( $pop_data['name'], $pop_data['description'], 'install' => $pop_data['plugin-slug'] );
 
72
}
 
73
 
 
74
if ( empty( $importers ) ) {
 
75
        echo '<p>' . __('No importers are available.') . '</p>'; // TODO: make more helpful
 
76
} else {
 
77
        uasort( $importers, '_usort_by_first_member' );
 
78
?>
 
79
<table class="widefat importers">
 
80
 
 
81
<?php
 
82
        $alt = '';
 
83
        foreach ($importers as $importer_id => $data) {
 
84
                $action = '';
 
85
                if ( isset( $data['install'] ) ) {
 
86
                        $plugin_slug = $data['install'];
 
87
                        if ( file_exists( WP_PLUGIN_DIR . '/' . $plugin_slug ) ) {
 
88
                                // Looks like Importer is installed, But not active
 
89
                                $plugins = get_plugins( '/' . $plugin_slug );
 
90
                                if ( !empty($plugins) ) {
 
91
                                        $keys = array_keys($plugins);
 
92
                                        $plugin_file = $plugin_slug . '/' . $keys[0];
 
93
                                        $action = '<a href="' . esc_url(wp_nonce_url(admin_url('plugins.php?action=activate&plugin=' . $plugin_file . '&from=import'), 'activate-plugin_' . $plugin_file)) .
 
94
                                                                                        '"title="' . esc_attr__('Activate importer') . '"">' . $data[0] . '</a>';
 
95
                                }
 
96
                        }
 
97
                        if ( empty($action) ) {
 
98
                                if ( is_main_site() ) {
 
99
                                        $action = '<a href="' . esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $plugin_slug .
 
100
                                                                                '&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox" title="' .
 
101
                                                                                esc_attr__('Install importer') . '">' . $data[0] . '</a>';
 
102
                                } else {
 
103
                                        $action = $data[0];
 
104
                                        $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' ) );
 
105
                                }
 
106
                        }
 
107
                } else {
 
108
                        $action = "<a href='" . esc_url( "admin.php?import=$importer_id" ) . "' title='" . esc_attr( wptexturize( strip_tags( $data[1] ) ) ) ."'>{$data[0]}</a>";
 
109
                }
 
110
 
 
111
                $alt = $alt ? '' : ' class="alternate"';
 
112
                echo "
 
113
                        <tr$alt>
 
114
                                <td class='import-system row-title'>$action</td>
 
115
                                <td class='desc'>{$data[1]}</td>
 
116
                        </tr>";
 
117
        }
 
118
?>
 
119
 
 
120
</table>
 
121
<?php
 
122
}
 
123
 
 
124
if ( current_user_can('install_plugins') )
 
125
        echo '<p>' . sprintf( __('If the importer you need is not listed, <a href="%s">search the plugin directory</a> to see if an importer is available.'), esc_url( network_admin_url( 'plugin-install.php?tab=search&type=tag&s=importer' ) ) ) . '</p>';
 
126
?>
 
127
 
 
128
</div>
 
129
 
 
130
<?php
 
131
 
 
132
include( ABSPATH . 'wp-admin/admin-footer.php' );