]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/export.php
Wordpress 3.0.4-scripts
[autoinstalls/wordpress.git] / wp-admin / export.php
1 <?php
2 /**
3  * WordPress Export Administration Panel
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /** Load WordPress Bootstrap */
10 require_once ('admin.php');
11
12 if ( !current_user_can('export') )
13         wp_die(__('You do not have sufficient permissions to export the content of this site.'));
14
15 /** Load WordPress export API */
16 require_once('./includes/export.php');
17 $title = __('Export');
18
19 add_contextual_help($current_screen,
20         '<p>' . __('You can export a file of your site&#8217;s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can set filters to have the WXR file only include a certain date, author, category, tag, all posts or all pages, certain publishing statuses.') . '</p>' .
21         '<p>' . __('Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.') . '</p>' .
22         '<p><strong>' . __('For more information:') . '</strong></p>' .
23         '<p>' . __('<a href="http://codex.wordpress.org/Tools_Export_SubPanel" target="_blank">Export Documentation</a>') . '</p>' .
24         '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
25 );
26
27 if ( isset( $_GET['download'] ) ) {
28                 $author = isset($_GET['author']) ? $_GET['author'] : 'all';
29                 $taxonomy = array();
30                 foreach ( get_taxonomies( array( 'show_ui' => true ) ) as $tax )
31                         $taxonomy[ $tax ] = ! empty( $_GET['export_taxonomy'][ $tax ] ) ? $_GET['export_taxonomy'][ $tax ] : 'all';
32                 $post_type = isset($_GET['export_post_type']) ? stripslashes_deep($_GET['export_post_type']) : 'all';
33                 $status = isset($_GET['export_post_status']) ? stripslashes_deep($_GET['export_post_status']) : 'all';
34                 $mm_start = isset($_GET['mm_start']) ? $_GET['mm_start'] : 'all';
35                 $mm_end = isset($_GET['mm_end']) ? $_GET['mm_end'] : 'all';
36                 if( $mm_start != 'all' ) {
37                         $start_date = sprintf( "%04d-%02d-%02d", substr( $mm_start, 0, 4 ), substr( $mm_start, 5, 2 ), 1 );
38                 } else {
39                         $start_date = 'all';
40                 }
41                 if( $mm_end != 'all' ) {
42                         $end_date = sprintf( "%04d-%02d-%02d", substr( $mm_end, 0, 4 ), substr( $mm_end, 5, 2 ), 1 );
43                 } else {
44                         $end_date = 'all';
45                 }
46
47         export_wp( array( 'author' => $author, 'taxonomy' => $taxonomy, 'post_type' => $post_type, 'post_status' => $status, 'start_date' => $start_date, 'end_date' => $end_date ) );
48         die();
49 }
50
51 require_once ('admin-header.php');
52
53 $dateoptions = $edateoptions = '';
54 $types = "'" . implode("', '", get_post_types( array( 'public' => true, 'can_export' => true ), 'names' )) . "'";
55 $stati = "'" . implode("', '", get_post_stati( array( 'internal' => false ), 'names' )) . "'";
56 if ( $monthyears = $wpdb->get_results("SELECT DISTINCT YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, YEAR(DATE_ADD(post_date, INTERVAL 1 MONTH)) AS `eyear`, MONTH(DATE_ADD(post_date, INTERVAL 1 MONTH)) AS `emonth` FROM $wpdb->posts WHERE post_type IN ($types) AND post_status IN ($stati) ORDER BY post_date ASC ") ) {
57         foreach ( $monthyears as $k => $monthyear )
58                 $monthyears[$k]->lmonth = $wp_locale->get_month( $monthyear->month, 2 );
59         for( $s = 0, $e = count( $monthyears ) - 1; $e >= 0; $s++, $e-- ) {
60                 $dateoptions .= "\t<option value=\"" . $monthyears[$s]->year . '-' . zeroise( $monthyears[$s]->month, 2 ) . '">' . $monthyears[$s]->lmonth . ' ' . $monthyears[$s]->year . "</option>\n";
61                 $edateoptions .= "\t<option value=\"" . $monthyears[$e]->eyear . '-' . zeroise( $monthyears[$e]->emonth, 2 ) . '">' . $monthyears[$e]->lmonth . ' ' . $monthyears[$e]->year . "</option>\n";
62         }
63 }
64
65 ?>
66
67 <div class="wrap">
68 <?php screen_icon(); ?>
69 <h2><?php echo esc_html( $title ); ?></h2>
70
71 <p><?php _e('When you click the button below WordPress will create an XML file for you to save to your computer.'); ?></p>
72 <p><?php _e('This format, which we call WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags.'); ?></p>
73 <p><?php _e('Once you&#8217;ve saved the download file, you can use the Import function on another WordPress site to import this site.'); ?></p>
74 <form action="" method="get">
75 <h3><?php _e('Filters'); ?></h3>
76
77 <table class="form-table">
78 <tr>
79 <th><label for="mm_start"><?php _e('Start Date'); ?></label></th>
80 <td>
81 <select name="mm_start" id="mm_start">
82         <option value="all" selected="selected"><?php _e('All Dates'); ?></option>
83 <?php echo $dateoptions; ?>
84 </select>
85 </td>
86 </tr>
87 <tr>
88 <th><label for="mm_end" id="mm_end"><?php _e('End Date'); ?></label></th>
89 <td>
90 <select name="mm_end" id="mm_end">
91         <option value="all" selected="selected"><?php _e('All Dates'); ?></option>
92 <?php echo $edateoptions; ?>
93 </select>
94 </td>
95 </tr>
96 <tr>
97 <th><label for="author"><?php _e('Authors'); ?></label></th>
98 <td>
99 <select name="author" id="author">
100 <option value="all" selected="selected"><?php _e('All Authors'); ?></option>
101 <?php
102 $authors = $wpdb->get_results( "SELECT DISTINCT u.id, u.display_name FROM $wpdb->users u INNER JOIN $wpdb->posts p WHERE u.id = p.post_author ORDER BY u.display_name" );
103 foreach ( (array) $authors as $author ) {
104         echo "<option value='{$author->id}'>{$author->display_name}</option>\n";
105 }
106 ?>
107 </select>
108 </td>
109 </tr>
110 <?php foreach ( get_taxonomies( array( 'show_ui' => true ), 'objects' ) as $tax_obj ) {
111         $term_dropdown = wp_dropdown_categories( array( 'taxonomy' => $tax_obj->name, 'hide_if_empty' => true, 'show_option_all' => __( 'All Terms' ), 'name' => 'export_taxonomy[' . $tax_obj->name . ']', 'id' => 'taxonomy-' . $tax_obj->name, 'class' => '', 'echo' => false ) );
112         if ( $term_dropdown )
113                 echo '<tr><th><label for="taxonomy-' . $tax_obj->name . '">' . $tax_obj->labels->name . '</label></th><td>' . $term_dropdown . '</td></tr>';
114 }
115 ?>
116 <tr>
117 <th><label for="post_type"><?php _e('Content Types'); ?></label></th>
118 <td>
119 <select name="export_post_type" id="post_type">
120         <option value="all" selected="selected"><?php _e('All Content'); ?></option>
121         <?php foreach ( get_post_types( array( 'public' => true, 'can_export' => true ), 'objects' ) as $post_type_obj ) { ?>
122                 <option value="<?php echo $post_type_obj->name; ?>"><?php echo $post_type_obj->labels->name; ?></option>
123         <?php } ?>
124 </select>
125 </td>
126 </tr>
127 <tr>
128 <th><label for="status"><?php _e('Statuses'); ?></label></th>
129 <td>
130 <select name="export_post_status" id="status">
131         <option value="all" selected="selected"><?php _e('All Statuses'); ?></option>
132 <?php foreach ( get_post_stati( array( 'internal' => false ), 'objects' ) as $post_status_obj ) { ?>
133         <option value="<?php echo $post_status_obj->name; ?>"><?php echo $post_status_obj->label; ?></option>
134 <?php } ?>
135 </select>
136 </td>
137 </tr>
138 </table>
139 <p class="submit"><input type="submit" name="submit" class="button" value="<?php esc_attr_e('Download Export File'); ?>" />
140 <input type="hidden" name="download" value="true" />
141 </p>
142 </form>
143 </div>
144
145 <?php
146
147
148 include ('admin-footer.php');
149 ?>