wp/wp-admin/import.php
changeset 0 d970ebf37754
child 5 5e2f62d02dcd
equal deleted inserted replaced
-1:000000000000 0:d970ebf37754
       
     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="http://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 <?php screen_icon(); ?>
       
    56 <h2><?php echo esc_html( $title ); ?></h2>
       
    57 <?php if ( ! empty( $_GET['invalid'] ) ) : ?>
       
    58 	<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>
       
    59 <?php endif; ?>
       
    60 <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>
       
    61 
       
    62 <?php
       
    63 
       
    64 $importers = get_importers();
       
    65 
       
    66 // If a popular importer is not registered, create a dummy registration that links to the plugin installer.
       
    67 foreach ( $popular_importers as $pop_importer => $pop_data ) {
       
    68 	if ( isset( $importers[ $pop_importer ] ) )
       
    69 		continue;
       
    70 	if ( isset( $importers[ $pop_data['importer-id'] ] ) )
       
    71 		continue;
       
    72 	$importers[ $pop_data['importer-id'] ] = array( $pop_data['name'], $pop_data['description'], 'install' => $pop_data['plugin-slug'] );
       
    73 }
       
    74 
       
    75 if ( empty( $importers ) ) {
       
    76 	echo '<p>' . __('No importers are available.') . '</p>'; // TODO: make more helpful
       
    77 } else {
       
    78 	uasort($importers, create_function('$a, $b', 'return strnatcasecmp($a[0], $b[0]);'));
       
    79 ?>
       
    80 <table class="widefat importers" cellspacing="0">
       
    81 
       
    82 <?php
       
    83 	$alt = '';
       
    84 	foreach ($importers as $importer_id => $data) {
       
    85 		$action = '';
       
    86 		if ( isset( $data['install'] ) ) {
       
    87 			$plugin_slug = $data['install'];
       
    88 			if ( file_exists( WP_PLUGIN_DIR . '/' . $plugin_slug ) ) {
       
    89 				// Looks like Importer is installed, But not active
       
    90 				$plugins = get_plugins( '/' . $plugin_slug );
       
    91 				if ( !empty($plugins) ) {
       
    92 					$keys = array_keys($plugins);
       
    93 					$plugin_file = $plugin_slug . '/' . $keys[0];
       
    94 					$action = '<a href="' . esc_url(wp_nonce_url(admin_url('plugins.php?action=activate&plugin=' . $plugin_file . '&from=import'), 'activate-plugin_' . $plugin_file)) .
       
    95 											'"title="' . esc_attr__('Activate importer') . '"">' . $data[0] . '</a>';
       
    96 				}
       
    97 			}
       
    98 			if ( empty($action) ) {
       
    99 				if ( is_main_site() ) {
       
   100 					$action = '<a href="' . esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $plugin_slug .
       
   101 										'&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox" title="' .
       
   102 										esc_attr__('Install importer') . '">' . $data[0] . '</a>';
       
   103 				} else {
       
   104 					$action = $data[0];
       
   105 					$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' ) );
       
   106 				}
       
   107 			}
       
   108 		} else {
       
   109 			$action = "<a href='" . esc_url( "admin.php?import=$importer_id" ) . "' title='" . esc_attr( wptexturize( strip_tags( $data[1] ) ) ) ."'>{$data[0]}</a>";
       
   110 		}
       
   111 
       
   112 		$alt = $alt ? '' : ' class="alternate"';
       
   113 		echo "
       
   114 			<tr$alt>
       
   115 				<td class='import-system row-title'>$action</td>
       
   116 				<td class='desc'>{$data[1]}</td>
       
   117 			</tr>";
       
   118 	}
       
   119 ?>
       
   120 
       
   121 </table>
       
   122 <?php
       
   123 }
       
   124 
       
   125 if ( current_user_can('install_plugins') )
       
   126 	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>';
       
   127 ?>
       
   128 
       
   129 </div>
       
   130 
       
   131 <?php
       
   132 
       
   133 include( ABSPATH . 'wp-admin/admin-footer.php' );