]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/import.php
Wordpress 4.5.3-scripts
[autoinstalls/wordpress.git] / wp-admin / import.php
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="https://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 <h1><?php echo esc_html( $title ); ?></h1>
56 <?php if ( ! empty( $_GET['invalid'] ) ) : ?>
57         <div class="error">
58                 <p><strong><?php _e( 'ERROR:' ); ?></strong> <?php
59                         /* translators: %s: importer slug */
60                         printf( __( 'The %s importer is invalid or is not installed.' ), '<strong>' . esc_html( $_GET['invalid'] ) . '</strong>' );
61                 ?></p>
62         </div>
63 <?php endif; ?>
64 <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>
65
66 <?php
67
68 $importers = get_importers();
69
70 // If a popular importer is not registered, create a dummy registration that links to the plugin installer.
71 foreach ( $popular_importers as $pop_importer => $pop_data ) {
72         if ( isset( $importers[ $pop_importer ] ) )
73                 continue;
74         if ( isset( $importers[ $pop_data['importer-id'] ] ) )
75                 continue;
76         $importers[ $pop_data['importer-id'] ] = array( $pop_data['name'], $pop_data['description'], 'install' => $pop_data['plugin-slug'] );
77 }
78
79 if ( empty( $importers ) ) {
80         echo '<p>' . __('No importers are available.') . '</p>'; // TODO: make more helpful
81 } else {
82         uasort( $importers, '_usort_by_first_member' );
83 ?>
84 <table class="widefat importers striped">
85
86 <?php
87         foreach ($importers as $importer_id => $data) {
88                 $action = '';
89                 if ( isset( $data['install'] ) ) {
90                         $plugin_slug = $data['install'];
91                         if ( file_exists( WP_PLUGIN_DIR . '/' . $plugin_slug ) ) {
92                                 // Looks like Importer is installed, But not active
93                                 $plugins = get_plugins( '/' . $plugin_slug );
94                                 if ( !empty($plugins) ) {
95                                         $keys = array_keys($plugins);
96                                         $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>';
99                                 }
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 open-plugin-details-modal" title="' .
105                                                                                 esc_attr__('Install importer') . '">' . $data[0] . '</a>';
106                                 } 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' ) );
109                                 }
110                         }
111                 } else {
112                         $action = "<a href='" . esc_url( "admin.php?import=$importer_id" ) . "' title='" . esc_attr( wptexturize( strip_tags( $data[1] ) ) ) ."'>{$data[0]}</a>";
113                 }
114
115                 echo "
116                         <tr>
117                                 <td class='import-system row-title'>$action</td>
118                                 <td class='desc'>{$data[1]}</td>
119                         </tr>";
120         }
121 ?>
122
123 </table>
124 <?php
125 }
126
127 if ( current_user_can('install_plugins') )
128         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>';
129 ?>
130
131 </div>
132
133 <?php
134
135 include( ABSPATH . 'wp-admin/admin-footer.php' );