X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/7f1521bf193b382565eb753043c161f4cb3fcda7..e3ff8f35458a959c1879c0a4976701ed8dcfe651:/wp-admin/export.php?ds=inline diff --git a/wp-admin/export.php b/wp-admin/export.php index daba6e36..c1d4d8b5 100644 --- a/wp-admin/export.php +++ b/wp-admin/export.php @@ -10,7 +10,7 @@ require_once( dirname( __FILE__ ) . '/admin.php' ); if ( !current_user_can('export') ) - wp_die(__('You do not have sufficient permissions to export the content of this site.')); + wp_die(__('Sorry, you are not allowed to export the content of this site.')); /** Load WordPress export API */ require_once( ABSPATH . 'wp-admin/includes/export.php' ); @@ -31,6 +31,7 @@ function export_add_js() { form.find('input:radio').change(function() { filters.slideUp('fast'); switch ( $(this).val() ) { + case 'attachment': $('#attachment-filters').slideDown(); break; case 'posts': $('#post-filters').slideDown(); break; case 'pages': $('#page-filters').slideDown(); break; } @@ -50,8 +51,8 @@ get_current_screen()->add_help_tab( array( get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . - '

' . __('Documentation on Export') . '

' . - '

' . __('Support Forums') . '

' + '

' . __('Documentation on Export') . '

' . + '

' . __('Support Forums') . '

' ); // If the 'download' URL parameter is set, a WXR export file is baked and returned. @@ -89,12 +90,20 @@ if ( isset( $_GET['download'] ) ) { if ( $_GET['page_status'] ) $args['status'] = $_GET['page_status']; - } else { + } elseif ( 'attachment' == $_GET['content'] ) { + $args['content'] = 'attachment'; + + if ( $_GET['attachment_start_date'] || $_GET['attachment_end_date'] ) { + $args['start_date'] = $_GET['attachment_start_date']; + $args['end_date'] = $_GET['attachment_end_date']; + } + } + else { $args['content'] = $_GET['content']; } /** - * Filter the export args. + * Filters the export args. * * @since 3.5.0 * @@ -143,45 +152,58 @@ function export_date_options( $post_type = 'post' ) { ?>
-

+

-

+

+
+ -

-

+

+

  • - +
  • - - + get_col( "SELECT DISTINCT post_author FROM {$wpdb->posts} WHERE post_type = 'post'" ); - wp_dropdown_users( array( 'include' => $authors, 'name' => 'post_author', 'multi' => true, 'show_option_all' => __('All') ) ); -?> + wp_dropdown_users( array( + 'include' => $authors, + 'name' => 'post_author', + 'multi' => true, + 'show_option_all' => __( 'All' ), + 'show' => 'display_name_with_login', + ) ); ?> +
  • - - + - + +
  • - - false ), 'objects' ); foreach ( $post_stati as $status ) : ?> @@ -194,26 +216,36 @@ function export_date_options( $post_type = 'post' ) {

    • - - + get_col( "SELECT DISTINCT post_author FROM {$wpdb->posts} WHERE post_type = 'page'" ); - wp_dropdown_users( array( 'include' => $authors, 'name' => 'page_author', 'multi' => true, 'show_option_all' => __('All') ) ); -?> + wp_dropdown_users( array( + 'include' => $authors, + 'name' => 'page_author', + 'multi' => true, + 'show_option_all' => __( 'All' ), + 'show' => 'display_name_with_login', + ) ); ?> +
    • - - + - + +
    • - - @@ -226,9 +258,29 @@ function export_date_options( $post_type = 'post' ) {

      +

      +
        +
      • +
        + + + + + +
        +
      • +
      + +