| [ XREF Home ] [ Index ] |
PHP Cross Reference of WordPress TrunkProvided by Yoast |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * WordPress Export Administration Screen 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 function add_js() { 20 ?> 21 <script type="text/javascript"> 22 //<![CDATA[ 23 jQuery(document).ready(function($){ 24 var form = $('#export-filters'), 25 filters = form.find('.export-filters'); 26 filters.hide(); 27 form.find('input:radio').change(function() { 28 filters.slideUp('fast'); 29 switch ( $(this).val() ) { 30 case 'posts': $('#post-filters').slideDown(); break; 31 case 'pages': $('#page-filters').slideDown(); break; 32 } 33 }); 34 }); 35 //]]> 36 </script> 37 <?php 38 } 39 add_action( 'admin_head', 'add_js' ); 40 41 add_contextual_help( $current_screen, 42 '<p>' . __('You can export a file of your site’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 choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.') . '</p>' . 43 '<p>' . __('Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.') . '</p>' . 44 '<p><strong>' . __('For more information:') . '</strong></p>' . 45 '<p>' . __('<a href="http://codex.wordpress.org/Tools_Export_Screen" target="_blank">Documentation on Export</a>') . '</p>' . 46 '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 47 ); 48 49 if ( isset( $_GET['download'] ) ) { 50 $args = array(); 51 52 if ( ! isset( $_GET['content'] ) || 'all' == $_GET['content'] ) { 53 $args['content'] = 'all'; 54 } else if ( 'posts' == $_GET['content'] ) { 55 $args['content'] = 'post'; 56 57 if ( $_GET['cat'] ) 58 $args['category'] = (int) $_GET['cat']; 59 60 if ( $_GET['post_author'] ) 61 $args['author'] = (int) $_GET['post_author']; 62 63 if ( $_GET['post_start_date'] || $_GET['post_end_date'] ) { 64 $args['start_date'] = $_GET['post_start_date']; 65 $args['end_date'] = $_GET['post_end_date']; 66 } 67 68 if ( $_GET['post_status'] ) 69 $args['status'] = $_GET['post_status']; 70 } else if ( 'pages' == $_GET['content'] ) { 71 $args['content'] = 'page'; 72 73 if ( $_GET['page_author'] ) 74 $args['author'] = (int) $_GET['page_author']; 75 76 if ( $_GET['page_start_date'] || $_GET['page_end_date'] ) { 77 $args['start_date'] = $_GET['page_start_date']; 78 $args['end_date'] = $_GET['page_end_date']; 79 } 80 81 if ( $_GET['page_status'] ) 82 $args['status'] = $_GET['page_status']; 83 } else { 84 $args['content'] = $_GET['content']; 85 } 86 87 export_wp( $args ); 88 die(); 89 } 90 91 require_once ('admin-header.php'); 92 93 function export_date_options() { 94 global $wpdb, $wp_locale; 95 96 $months = $wpdb->get_results( " 97 SELECT DISTINCT YEAR( post_date ) AS year, MONTH( post_date ) AS month 98 FROM $wpdb->posts 99 WHERE post_type = 'post' AND post_status != 'auto-draft' 100 ORDER BY post_date DESC 101 " ); 102 103 $month_count = count( $months ); 104 if ( !$month_count || ( 1 == $month_count && 0 == $months[0]->month ) ) 105 return; 106 107 foreach ( $months as $date ) { 108 if ( 0 == $date->year ) 109 continue; 110 111 $month = zeroise( $date->month, 2 ); 112 echo '<option value="' . $date->year . '-' . $month . '">' . $wp_locale->get_month( $month ) . ' ' . $date->year . '</option>'; 113 } 114 } 115 ?> 116 117 <div class="wrap"> 118 <?php screen_icon(); ?> 119 <h2><?php echo esc_html( $title ); ?></h2> 120 121 <p><?php _e('When you click the button below WordPress will create an XML file for you to save to your computer.'); ?></p> 122 <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> 123 <p><?php _e('Once you’ve saved the download file, you can use the Import function in another WordPress installation to import this site.'); ?></p> 124 125 <h3><?php _e( 'Choose what to export' ); ?></h3> 126 <form action="" method="get" id="export-filters"> 127 <input type="hidden" name="download" value="true" /> 128 <p><label><input type="radio" name="content" value="all" checked="checked" /> <?php _e( 'All content' ); ?></label> 129 <span class="description"><?php _e( 'This will contain all of your posts, pages, comments, custom fields, terms, navigation menus and custom posts.' ); ?></span></p> 130 131 <p><label><input type="radio" name="content" value="posts" /> <?php _e( 'Posts' ); ?></label></p> 132 <ul id="post-filters" class="export-filters"> 133 <li> 134 <label><?php _e( 'Categories:' ); ?></label> 135 <?php wp_dropdown_categories( array( 'show_option_all' => __('All') ) ); ?> 136 </li> 137 <li> 138 <label><?php _e( 'Authors:' ); ?></label> 139 <?php 140 $authors = $wpdb->get_col( "SELECT DISTINCT post_author FROM {$wpdb->posts} WHERE post_type = 'post'" ); 141 wp_dropdown_users( array( 'include' => $authors, 'name' => 'post_author', 'multi' => true, 'show_option_all' => __('All') ) ); 142 ?> 143 </li> 144 <li> 145 <label><?php _e( 'Date range:' ); ?></label> 146 <select name="post_start_date"> 147 <option value="0"><?php _e( 'Start Date' ); ?></option> 148 <?php export_date_options(); ?> 149 </select> 150 <select name="post_end_date"> 151 <option value="0"><?php _e( 'End Date' ); ?></option> 152 <?php export_date_options(); ?> 153 </select> 154 </li> 155 <li> 156 <label><?php _e( 'Status:' ); ?></label> 157 <select name="post_status"> 158 <option value="0"><?php _e( 'All' ); ?></option> 159 <?php $post_stati = get_post_stati( array( 'internal' => false ), 'objects' ); 160 foreach ( $post_stati as $status ) : ?> 161 <option value="<?php echo esc_attr( $status->name ); ?>"><?php echo esc_html( $status->label ); ?></option> 162 <?php endforeach; ?> 163 </select> 164 </li> 165 </ul> 166 167 <p><label><input type="radio" name="content" value="pages" /> <?php _e( 'Pages' ); ?></label></p> 168 <ul id="page-filters" class="export-filters"> 169 <li> 170 <label><?php _e( 'Authors:' ); ?></label> 171 <?php 172 $authors = $wpdb->get_col( "SELECT DISTINCT post_author FROM {$wpdb->posts} WHERE post_type = 'page'" ); 173 wp_dropdown_users( array( 'include' => $authors, 'name' => 'page_author', 'multi' => true, 'show_option_all' => __('All') ) ); 174 ?> 175 </li> 176 <li> 177 <label><?php _e( 'Date range:' ); ?></label> 178 <select name="page_start_date"> 179 <option value="0"><?php _e( 'Start Date' ); ?></option> 180 <?php export_date_options(); ?> 181 </select> 182 <select name="page_end_date"> 183 <option value="0"><?php _e( 'End Date' ); ?></option> 184 <?php export_date_options(); ?> 185 </select> 186 </li> 187 <li> 188 <label><?php _e( 'Status:' ); ?></label> 189 <select name="page_status"> 190 <option value="0"><?php _e( 'All' ); ?></option> 191 <?php foreach ( $post_stati as $status ) : ?> 192 <option value="<?php echo esc_attr( $status->name ); ?>"><?php echo esc_html( $status->label ); ?></option> 193 <?php endforeach; ?> 194 </select> 195 </li> 196 </ul> 197 198 <?php foreach ( get_post_types( array( '_builtin' => false, 'can_export' => true ), 'objects' ) as $post_type ) : ?> 199 <p><label><input type="radio" name="content" value="<?php echo esc_attr( $post_type->name ); ?>" /> <?php echo esc_html( $post_type->label ); ?></label></p> 200 <?php endforeach; ?> 201 202 <?php submit_button( __('Download Export File'), 'secondary' ); ?> 203 </form> 204 </div> 205 206 <?php include ('admin-footer.php'); ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Jun 1 08:30:02 2011 |
Cross-referenced by PHPXref 0.7 Provided by Yoast and awesome WordPress Hosting |