]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/import.php
WordPress 4.2.1
[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 <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 striped">
80
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                                 }
95                         }
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                                 }
105                         }
106                 } else {
107                         $action = "<a href='" . esc_url( "admin.php?import=$importer_id" ) . "' title='" . esc_attr( wptexturize( strip_tags( $data[1] ) ) ) ."'>{$data[0]}</a>";
108                 }
109
110                 echo "
111                         <tr>
112                                 <td class='import-system row-title'>$action</td>
113                                 <td class='desc'>{$data[1]}</td>
114                         </tr>";
115         }
116 ?>
117
118 </table>
119 <?php
120 }
121
122 if ( current_user_can('install_plugins') )
123         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>';
124 ?>
125
126 </div>
127
128 <?php
129
130 include( ABSPATH . 'wp-admin/admin-footer.php' );