<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[13573] trunk/wp-admin: add features to export, see #10317</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/13573">13573</a></dd>
<dt>Author</dt> <dd>wpmuguru</dd>
<dt>Date</dt> <dd>2010-03-03 16:45:40 +0000 (Wed, 03 Mar 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>add features to export, see <a href="http://trac.wordpress.org/ticket/10317">#10317</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminexportphp">trunk/wp-admin/export.php</a></li>
<li><a href="#trunkwpadminincludesexportphp">trunk/wp-admin/includes/export.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminexportphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/export.php (13572 => 13573)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/export.php        2010-03-03 07:57:44 UTC (rev 13572)
+++ trunk/wp-admin/export.php        2010-03-03 16:45:40 UTC (rev 13573)
</span><span class="lines">@@ -17,14 +17,42 @@
</span><span class="cx"> $title = __('Export');
</span><span class="cx"> 
</span><span class="cx"> if ( isset( $_GET['download'] ) ) {
</span><del>-        $author = isset($_GET['author']) ? $_GET['author'] : 'all';
-        export_wp( $author );
</del><ins>+                $author = isset($_GET['author']) ? $_GET['author'] : 'all';
+                $category = isset($_GET['category']) ? $_GET['category'] : 'all';
+                $post_type = isset($_GET['post_type']) ? stripslashes_deep($_GET['post_type']) : 'all';
+                $status = isset($_GET['status']) ? stripslashes_deep($_GET['status']) : 'all';
+                $mm_start = isset($_GET['mm_start']) ? $_GET['mm_start'] : 'all';
+                $mm_end = isset($_GET['mm_end']) ? $_GET['mm_end'] : 'all';
+                $aa_start = isset($_GET['aa_start']) ? intval($_GET['aa_start']) : 0;
+                $aa_end = isset($_GET['aa_end']) ? intval($_GET['aa_end']) : 0;
+                if($mm_start != 'all' &amp;&amp; $aa_start &gt; 0) {
+                        $start_date = sprintf( &quot;%04d-%02d-%02d&quot;, $aa_start, $mm_start, 1 );
+                } else {
+                        $start_date = 'all';
+                }
+                if($mm_end != 'all' &amp;&amp; $aa_end &gt; 0) {
+                        if($mm_end == 12) {
+                                $mm_end = 1;
+                                $aa_end++;
+                        } else {
+                                $mm_end++;
+                        }
+                        $end_date = sprintf( &quot;%04d-%02d-%02d&quot;, $aa_end, $mm_end, 1 );
+                } else {
+                        $end_date = 'all';
+                }
+        export_wp( $author, $category, $post_type, $status, $start_date, $end_date );
</ins><span class="cx">         die();
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> require_once ('admin-header.php');
</span><del>-?&gt;
</del><span class="cx"> 
</span><ins>+$months = &quot;&quot;;
+for ( $i = 1; $i &lt; 13; $i++ ) {
+        $months .= &quot;\t\t\t&lt;option value=\&quot;&quot; . zeroise($i, 2) . '&quot;&gt;' . 
+                $wp_locale-&gt;get_month_abbrev( $wp_locale-&gt;get_month( $i ) ) . &quot;&lt;/option&gt;\n&quot;;
+} ?&gt;
+
</ins><span class="cx"> &lt;div class=&quot;wrap&quot;&gt;
</span><span class="cx"> &lt;?php screen_icon(); ?&gt;
</span><span class="cx"> &lt;h2&gt;&lt;?php echo esc_html( $title ); ?&gt;&lt;/h2&gt;
</span><span class="lines">@@ -37,6 +65,23 @@
</span><span class="cx"> 
</span><span class="cx"> &lt;table class=&quot;form-table&quot;&gt;
</span><span class="cx"> &lt;tr&gt;
</span><ins>+&lt;th&gt;&lt;label for=&quot;mm_start&quot;&gt;&lt;?php _e('Restrict Date'); ?&gt;&lt;/label&gt;&lt;/th&gt;
+&lt;td&gt;&lt;strong&gt;&lt;?php _e('Start:'); ?&gt;&lt;/strong&gt; &lt;?php _e('Month'); ?&gt;&amp;nbsp;
+&lt;select name=&quot;mm_start&quot; id=&quot;mm_start&quot;&gt;
+&lt;option value=&quot;all&quot; selected=&quot;selected&quot;&gt;&lt;?php _e('All Dates'); ?&gt;&lt;/option&gt;
+&lt;?php echo $months; ?&gt;
+&lt;/select&gt;&amp;nbsp;&lt;?php _e('Year'); ?&gt;&amp;nbsp;
+&lt;input type=&quot;text&quot; id=&quot;aa_start&quot; name=&quot;aa_start&quot; value=&quot;&quot; size=&quot;4&quot; maxlength=&quot;5&quot; /&gt;
+&lt;/td&gt;
+&lt;td&gt;&lt;strong&gt;&lt;?php _e('End:'); ?&gt;&lt;/strong&gt; &lt;?php _e('Month'); ?&gt;&amp;nbsp;
+&lt;select name=&quot;mm_end&quot; id=&quot;mm_end&quot;&gt;
+&lt;option value=&quot;all&quot; selected=&quot;selected&quot;&gt;&lt;?php _e('All Dates'); ?&gt;&lt;/option&gt;
+&lt;?php echo $months; ?&gt;
+&lt;/select&gt;&amp;nbsp;&lt;?php _e('Year'); ?&gt;&amp;nbsp;
+&lt;input type=&quot;text&quot; id=&quot;aa_end&quot; name=&quot;aa_end&quot; value=&quot;&quot; size=&quot;4&quot; maxlength=&quot;5&quot; /&gt;
+&lt;/td&gt;
+&lt;/tr&gt;
+&lt;tr&gt;
</ins><span class="cx"> &lt;th&gt;&lt;label for=&quot;author&quot;&gt;&lt;?php _e('Restrict Author'); ?&gt;&lt;/label&gt;&lt;/th&gt;
</span><span class="cx"> &lt;td&gt;
</span><span class="cx"> &lt;select name=&quot;author&quot; id=&quot;author&quot;&gt;
</span><span class="lines">@@ -45,12 +90,50 @@
</span><span class="cx"> $authors = $wpdb-&gt;get_col( &quot;SELECT post_author FROM $wpdb-&gt;posts GROUP BY post_author&quot; );
</span><span class="cx"> foreach ( $authors as $id ) {
</span><span class="cx">         $o = get_userdata( $id );
</span><del>-        echo &quot;&lt;option value='&quot; . esc_attr($o-&gt;ID) . &quot;'&gt;$o-&gt;display_name&lt;/option&gt;&quot;;
</del><ins>+        echo &quot;&lt;option value='{$o-&gt;ID}'&gt;{$o-&gt;display_name}&lt;/option&gt;\n&quot;;
</ins><span class="cx"> }
</span><span class="cx"> ?&gt;
</span><span class="cx"> &lt;/select&gt;
</span><span class="cx"> &lt;/td&gt;
</span><span class="cx"> &lt;/tr&gt;
</span><ins>+&lt;tr&gt;
+&lt;th&gt;&lt;label for=&quot;category&quot;&gt;&lt;?php _e('Restrict Category'); ?&gt;&lt;/label&gt;&lt;/th&gt;
+&lt;td&gt;
+&lt;select name=&quot;category&quot; id=&quot;category&quot;&gt;
+&lt;option value=&quot;all&quot; selected=&quot;selected&quot;&gt;&lt;?php _e('All Categories'); ?&gt;&lt;/option&gt;
+&lt;?php
+$categories = (array) get_categories('get=all');
+if($categories) {
+        foreach ( $categories as $cat ) {
+                echo &quot;&lt;option value='{$cat-&gt;term_taxonomy_id}'&gt;{$cat-&gt;name}&lt;/option&gt;\n&quot;;
+        }
+}
+?&gt;
+&lt;/select&gt;
+&lt;/td&gt;
+&lt;/tr&gt;
+&lt;tr&gt;
+&lt;th&gt;&lt;label for=&quot;post_type&quot;&gt;&lt;?php _e('Restrict Content'); ?&gt;&lt;/label&gt;&lt;/th&gt;
+&lt;td&gt;
+&lt;select name=&quot;post_type&quot; id=&quot;post_type&quot;&gt;
+&lt;option value=&quot;all&quot; selected=&quot;selected&quot;&gt;&lt;?php _e('All Content'); ?&gt;&lt;/option&gt;
+&lt;option value=&quot;page&quot;&gt;&lt;?php _e('Pages'); ?&gt;&lt;/option&gt;
+&lt;option value=&quot;post&quot;&gt;&lt;?php _e('Posts'); ?&gt;&lt;/option&gt;
+&lt;/select&gt;
+&lt;/td&gt;
+&lt;/tr&gt;
+&lt;tr&gt;
+&lt;th&gt;&lt;label for=&quot;status&quot;&gt;&lt;?php _e('Restrict Status'); ?&gt;&lt;/label&gt;&lt;/th&gt;
+&lt;td&gt;
+&lt;select name=&quot;status&quot; id=&quot;status&quot;&gt;
+&lt;option value=&quot;all&quot; selected=&quot;selected&quot;&gt;&lt;?php _e('All Statuses'); ?&gt;&lt;/option&gt;
+&lt;option value=&quot;draft&quot;&gt;&lt;?php _e('Draft'); ?&gt;&lt;/option&gt;
+&lt;option value=&quot;private&quot;&gt;&lt;?php _e('Privately published'); ?&gt;&lt;/option&gt;
+&lt;option value=&quot;publish&quot;&gt;&lt;?php _e('Published'); ?&gt;&lt;/option&gt;
+&lt;option value=&quot;future&quot;&gt;&lt;?php _e('Scheduled'); ?&gt;&lt;/option&gt;
+&lt;/select&gt;
+&lt;/td&gt;
+&lt;/tr&gt;
</ins><span class="cx"> &lt;/table&gt;
</span><span class="cx"> &lt;p class=&quot;submit&quot;&gt;&lt;input type=&quot;submit&quot; name=&quot;submit&quot; class=&quot;button&quot; value=&quot;&lt;?php esc_attr_e('Download Export File'); ?&gt;&quot; /&gt;
</span><span class="cx"> &lt;input type=&quot;hidden&quot; name=&quot;download&quot; value=&quot;true&quot; /&gt;
</span></span></pre></div>
<a id="trunkwpadminincludesexportphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/export.php (13572 => 13573)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/export.php        2010-03-03 07:57:44 UTC (rev 13572)
+++ trunk/wp-admin/includes/export.php        2010-03-03 16:45:40 UTC (rev 13573)
</span><span class="lines">@@ -23,22 +23,43 @@
</span><span class="cx">  *
</span><span class="cx">  * @param unknown_type $author
</span><span class="cx">  */
</span><del>-function export_wp($author='') {
</del><ins>+function export_wp($author='', $category='', $post_type='', $status='', $start_date='', $end_date='') {
</ins><span class="cx"> global $wpdb, $post_ids, $post, $wp_taxonomies;
</span><span class="cx"> 
</span><span class="cx"> do_action('export_wp');
</span><span class="cx"> 
</span><del>-$filename = 'wordpress.' . date('Y-m-d') . '.xml';
</del><ins>+if(strlen($start_date) &gt; 4 &amp;&amp; strlen($end_date) &gt; 4) {
+        $filename = 'wordpress.' . $start_date . '.' . $end_date . '.xml';
+} else {
+        $filename = 'wordpress.' . date('Y-m-d') . '.xml';
+}
</ins><span class="cx"> 
</span><span class="cx"> header('Content-Description: File Transfer');
</span><span class="cx"> header(&quot;Content-Disposition: attachment; filename=$filename&quot;);
</span><span class="cx"> header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
</span><span class="cx"> 
</span><del>-$where = '';
-if ( $author and $author != 'all' ) {
-        $author_id = (int) $author;
-        $where = $wpdb-&gt;prepare(&quot; WHERE post_author = %d &quot;, $author_id);
-}
</del><ins>+if ( $post_type and $post_type != 'all' ) { 
+                $where = $wpdb-&gt;prepare(&quot;WHERE post_type = %s &quot;, $post_type); 
+} else { 
+                $where = &quot;WHERE post_type != 'revision' &quot;; 
+} 
+if ( $author and $author != 'all' ) { 
+                $author_id = (int) $author; 
+                $where .= $wpdb-&gt;prepare(&quot;AND post_author = %d &quot;, $author_id); 
+} 
+if ( $start_date and $start_date != 'all' ) { 
+                $where .= $wpdb-&gt;prepare(&quot;AND post_date &gt;= %s &quot;, $start_date); 
+} 
+if ( $end_date and $end_date != 'all' ) { 
+                $where .= $wpdb-&gt;prepare(&quot;AND post_date &lt; %s &quot;, $end_date); 
+} 
+if ( $category and $category != 'all' ) { 
+                $taxomony_id = (int) $category; 
+                $where .= $wpdb-&gt;prepare(&quot;AND ID IN (SELECT object_id FROM {$wpdb-&gt;term_relationships} &quot; . &quot;WHERE term_taxonomy_id = %d) &quot;, $taxomony_id); 
+} 
+if ( $status and $status != 'all' ) { 
+                $where .= $wpdb-&gt;prepare(&quot;AND post_status = %s &quot;, $status); 
+} 
</ins><span class="cx"> 
</span><span class="cx"> // grab a snapshot of post IDs, just in case it changes during the export
</span><span class="cx"> $post_ids = $wpdb-&gt;get_col(&quot;SELECT ID FROM $wpdb-&gt;posts $where ORDER BY post_date_gmt ASC&quot;);
</span><span class="lines">@@ -300,9 +321,6 @@
</span><span class="cx">                         $where = &quot;WHERE ID IN (&quot;.join(',', $next_posts).&quot;)&quot;;
</span><span class="cx">                         $posts = $wpdb-&gt;get_results(&quot;SELECT * FROM $wpdb-&gt;posts $where ORDER BY post_date_gmt ASC&quot;);
</span><span class="cx">                                 foreach ($posts as $post) {
</span><del>-                        // Don't export revisions.  They bloat the export.
-                        if ( 'revision' == $post-&gt;post_type )
-                                continue;
</del><span class="cx">                         setup_postdata($post);
</span><span class="cx"> 
</span><span class="cx">                         $is_sticky = 0;
</span></span></pre>
</div>
</div>

</body>
</html>