| 1 |
<?php |
| 2 |
/** |
| 3 |
* Generate the XML for export for posts and form actions. |
| 4 |
* |
| 5 |
* @phpcs:disable Generic.WhiteSpace.ScopeIndent.Incorrect |
| 6 |
* |
| 7 |
* @package Formidable |
| 8 |
*/ |
| 9 |
|
| 10 |
if ( ! defined( 'ABSPATH' ) ) { |
| 11 |
die( 'You are not allowed to call this page directly.' ); |
| 12 |
} |
| 13 |
|
| 14 |
if ( ! $item_ids ) { |
| 15 |
return; |
| 16 |
} |
| 17 |
|
| 18 |
global $wp_query; |
| 19 |
// Fake being in the loop. |
| 20 |
$wp_query->in_the_loop = true; |
| 21 |
|
| 22 |
// fetch 20 posts at a time rather than loading the entire table into memory |
| 23 |
while ( $next_posts = array_splice( $item_ids, 0, 20 ) ) { |
| 24 |
$posts = FrmDb::get_results( $wpdb->posts, array( 'ID' => $next_posts ) ); |
| 25 |
|
| 26 |
// Begin Loop |
| 27 |
foreach ( $posts as $post ) { |
| 28 |
setup_postdata( $post ); |
| 29 |
$is_sticky = is_sticky( $post->ID ) ? 1 : 0; |
| 30 |
?> |
| 31 |
<view> |
| 32 |
<title><?php echo esc_html( apply_filters( 'the_title_rss', $post->post_title ) ); ?></title> |
| 33 |
<link><?php the_permalink_rss(); ?></link> |
| 34 |
<post_author><?php echo FrmXMLHelper::cdata( get_the_author_meta( 'login' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></post_author> |
| 35 |
<description></description> |
| 36 |
<content><?php echo FrmXMLHelper::cdata( apply_filters( 'the_content_export', $post->post_content ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></content> |
| 37 |
<excerpt><?php echo FrmXMLHelper::cdata( apply_filters( 'the_excerpt_export', $post->post_excerpt ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></excerpt> |
| 38 |
<post_id><?php echo esc_html( $post->ID ); ?></post_id> |
| 39 |
<post_date><?php echo esc_html( $post->post_date ); ?></post_date> |
| 40 |
<post_date_gmt><?php echo esc_html( $post->post_date_gmt ); ?></post_date_gmt> |
| 41 |
<comment_status><?php echo esc_html( $post->comment_status ); ?></comment_status> |
| 42 |
<ping_status><?php echo esc_html( $post->ping_status ); ?></ping_status> |
| 43 |
<post_name><?php echo esc_html( $post->post_name ); ?></post_name> |
| 44 |
<status><?php echo esc_html( $post->post_status ); ?></status> |
| 45 |
<post_parent><?php echo esc_html( $post->post_parent ); ?></post_parent> |
| 46 |
<menu_order><?php echo esc_html( $post->menu_order ); ?></menu_order> |
| 47 |
<post_type><?php echo esc_html( $post->post_type ); ?></post_type> |
| 48 |
<post_password><?php echo FrmXMLHelper::cdata( $post->post_password ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></post_password> |
| 49 |
<is_sticky><?php echo esc_html( $is_sticky ); ?></is_sticky> |
| 50 |
<?php if ( 'attachment' === $post->post_type ) : ?> |
| 51 |
<attachment_url><?php echo esc_url( wp_get_attachment_url( $post->ID ) ); ?></attachment_url> |
| 52 |
<?php |
| 53 |
endif; |
| 54 |
|
| 55 |
$postmeta = FrmDb::get_results( $wpdb->postmeta, array( 'post_id' => $post->ID ) ); |
| 56 |
|
| 57 |
foreach ( $postmeta as $meta ) : |
| 58 |
if ( apply_filters( 'wxr_export_skip_postmeta', false, $meta->meta_key, $meta ) ) { |
| 59 |
continue; |
| 60 |
} |
| 61 |
?> |
| 62 |
<postmeta> |
| 63 |
<meta_key><?php echo esc_html( $meta->meta_key ); ?></meta_key> |
| 64 |
<meta_value><?php echo FrmXMLHelper::cdata( $meta->meta_value ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></meta_value> |
| 65 |
</postmeta> |
| 66 |
<?php |
| 67 |
endforeach; |
| 68 |
|
| 69 |
$taxonomies = get_object_taxonomies( $post->post_type ); |
| 70 |
|
| 71 |
if ( ! empty( $taxonomies ) ) { |
| 72 |
$terms = wp_get_object_terms( $post->ID, $taxonomies ); |
| 73 |
|
| 74 |
foreach ( (array) $terms as $term ) { |
| 75 |
?> |
| 76 |
<category domain="<?php echo esc_attr( $term->taxonomy ); ?>" nicename="<?php echo esc_attr( $term->slug ); ?>"><?php echo FrmXMLHelper::cdata( $term->name ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></category> |
| 77 |
<?php |
| 78 |
} |
| 79 |
} |
| 80 |
|
| 81 |
if ( 'frm_display' === $post->post_type && is_callable( 'FrmViewsLayout::get_layouts_for_view' ) ) { |
| 82 |
$layouts = FrmViewsLayout::get_layouts_for_view( $post->ID ); |
| 83 |
|
| 84 |
if ( is_array( $layouts ) ) { |
| 85 |
foreach ( $layouts as $layout ) { |
| 86 |
?> |
| 87 |
<layout> |
| 88 |
<type><?php echo esc_html( $layout->type ); ?></type> |
| 89 |
<data><?php echo FrmXMLHelper::cdata( $layout->data ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></data> |
| 90 |
</layout> |
| 91 |
<?php |
| 92 |
} |
| 93 |
} |
| 94 |
} |
| 95 |
?> |
| 96 |
</view> |
| 97 |
<?php |
| 98 |
}//end foreach |
| 99 |
}//end while |
| 100 |
|
| 101 |
if ( empty( $taxonomies ) ) { |
| 102 |
return; |
| 103 |
} |
| 104 |
|
| 105 |
global $frm_inc_tax; |
| 106 |
|
| 107 |
if ( empty( $frm_inc_tax ) ) { |
| 108 |
$frm_inc_tax = array(); |
| 109 |
} |
| 110 |
|
| 111 |
$parent_slugs = FrmXMLController::get_parent_terms_slugs( $terms ); |
| 112 |
|
| 113 |
foreach ( (array) $terms as $term ) { |
| 114 |
if ( in_array( $term->term_id, $frm_inc_tax, true ) ) { |
| 115 |
continue; |
| 116 |
} |
| 117 |
|
| 118 |
$frm_inc_tax[] = $term->term_id; |
| 119 |
$label = 'category' === $term->taxonomy || 'tag' === $term->taxonomy ? $term->taxonomy : 'term'; |
| 120 |
?> |
| 121 |
<term><term_id><?php echo esc_html( $term->term_id ); ?></term_id><term_taxonomy><?php echo esc_html( $term->taxonomy ); ?></term_taxonomy><?php |
| 122 |
if ( ! empty( $parent_slugs[ $term->parent ] ) ) { |
| 123 |
echo '<term_parent>' . esc_html( $parent_slugs[ $term->parent ] ) . '</term_parent>'; |
| 124 |
} |
| 125 |
|
| 126 |
if ( ! empty( $term->name ) ) { |
| 127 |
echo '<term_name>' . FrmXMLHelper::cdata( $term->name ) . '</term_name>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 128 |
} |
| 129 |
|
| 130 |
if ( ! empty( $term->description ) ) { |
| 131 |
echo '<term_description>' . FrmXMLHelper::cdata( $term->description ) . '</term_description>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 132 |
} |
| 133 |
echo '<term_slug>' . esc_html( $term->slug ) . '</term_slug>'; |
| 134 |
echo '</term>'; |
| 135 |
}//end foreach |
| 136 |
|