Uname: Linux premium294.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
Software: LiteSpeed
PHP version: 8.1.32 [ PHP INFO ] PHP os: Linux
Server Ip: 104.21.48.1
Your Ip: 216.73.216.223
User: mjbynoyq (1574) | Group: mjbynoyq (1570)
Safe Mode: OFF
Disable Function:
NONE

name : items_xml.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}

if ( ! $item_ids ) {
    return;
}
$item_form_id = 0;

// fetch 20 posts at a time rather than loading the entire table into memory
while ( $next_set = array_splice( $item_ids, 0, 20 ) ) {
$entries = FrmDb::get_results(
	'frm_items',
    array(
		'or'             => 1,
		'id'             => $next_set,
		'parent_item_id' => $next_set,
	)
);

// Begin Loop
foreach ( $entries as $entry ) {
		if ( $item_form_id != $entry->form_id ) {
			$where        = array( 'form_id' => absint( $entry->form_id ) );
			$fields       = FrmDb::get_var( 'frm_fields', $where, '*', array( 'order_by' => 'field_order' ), '', 'associative_results' );
			$item_form_id = $entry->form_id;
			}
		?>
	<item>
		<id><?php echo absint( $entry->id ); ?></id>
		<item_key><?php echo FrmXMLHelper::cdata( $entry->item_key ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></item_key>
		<name><?php echo FrmXMLHelper::cdata( $entry->name ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></name>
		<description><?php echo FrmXMLHelper::cdata( $entry->description ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></description>
		<created_at><?php echo esc_html( $entry->created_at ); ?></created_at>
		<updated_at><?php echo esc_html( $entry->updated_at ); ?></updated_at>
		<form_id><?php echo absint( $entry->form_id ); ?></form_id>
		<post_id><?php echo absint( $entry->post_id ); ?></post_id>
		<ip><?php echo esc_html( $entry->ip ); ?></ip>
		<is_draft><?php echo absint( $entry->is_draft ); ?></is_draft>
		<user_id><?php echo FrmXMLHelper::cdata( FrmFieldsHelper::get_user_display_name( $entry->user_id, 'user_login' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></user_id>
		<updated_by><?php echo FrmXMLHelper::cdata( FrmFieldsHelper::get_user_display_name( $entry->updated_by, 'user_login' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></updated_by>
		<parent_item_id><?php echo absint( $entry->parent_item_id ); ?></parent_item_id>

		<?php
		$metas = FrmDb::get_results( $wpdb->prefix . 'frm_item_metas', array( 'item_id' => $entry->id ), 'meta_value, field_id' );

		foreach ( $metas as $meta ) {
		?>
		<item_meta>
			<field_id><?php echo absint( $meta->field_id ); ?></field_id>
		    <meta_value><?php
			if ( isset( $fields[ $meta->field_id ] ) ) {
				$meta->meta_value = FrmProFieldsHelper::get_export_val( $meta->meta_value, $fields[ $meta->field_id ] );
			}

			echo FrmXMLHelper::cdata( $meta->meta_value ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped

			unset( $meta );
		    ?></meta_value>
		</item_meta>
<?php } ?>
	</item>
			<?php
			unset( $metas );

			if ( ! empty( $entry->post_id ) ) {
				$old_ids  = $item_ids;
				$item_ids = array( $entry->post_id );
				include FrmAppHelper::plugin_path() . '/classes/views/xml/posts_xml.php';
				$item_ids = $old_ids;
				}

			unset( $entry );
}
}

if ( isset( $fields ) ) {
    unset( $fields );
}
© 2025 XylotrechusZ