Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/blueversion/wp-content/plugins/wpforms/src/Pro/Forms/Fields/Layout/ |
Upload File : |
<?php
namespace WPForms\Pro\Forms\Fields\Layout;
/**
* Layout field's Process class.
*
* @since 1.8.9
*/
class Process {
/**
* Initialize.
*
* @since 1.8.9
*/
public function init() {
$this->hooks();
}
/**
* Hooks.
*
* @since 1.8.9
*/
private function hooks() {
add_filter( 'wpforms_pro_admin_entries_export_ajax_form_data', [ Helpers::class, 'reorder_fields_within_rows' ], 30 );
add_filter( 'wpforms_process_before_form_data', [ Helpers::class, 'reorder_fields_within_rows' ], 30 );
add_filter( 'wpforms_emails_notifications_form_data', [ Helpers::class, 'reorder_fields_within_rows' ], 30 );
add_filter( 'wpforms_pro_admin_entries_edit_form_data', [ Helpers::class, 'reorder_fields_within_rows' ], 30 );
add_filter( 'wpforms_entry_preview_form_data', [ Helpers::class, 'reorder_fields_within_rows' ], 30 );
}
}