menu_factory = $menu_factory; } /** * Define Ajax hooks. */ public function add_hooks() { add_action( 'wp_ajax_wpml_update_mcs_cf', array( $this, 'update_mcs_cf' ) ); } /** * Update custom fields form. */ public function update_mcs_cf() { if ( isset( $_POST['nonce'] ) && wp_verify_nonce( $_POST['nonce'], 'icl_' . $_POST['type'] . '_translation_nonce' ) ) { $args = array( 'items_per_page' => intval( $_POST['items_per_page'] ), 'page' => intval( $_POST['paged'] ), 'search' => isset( $_POST['search'] ) ? sanitize_text_field( $_POST['search'] ) : '', 'hide_system_fields' => ! isset( $_POST['show_system_fields'] ) || ! filter_var( $_POST['show_system_fields'], FILTER_VALIDATE_BOOLEAN ), ); $menu_item = null; if ( 'cf' === $_POST['type'] ) { $menu_item = $this->menu_factory->create_post(); } elseif ( 'tcf' === $_POST['type'] ) { $menu_item = $this->menu_factory->create_term(); } if ( $menu_item ) { $result = array(); ob_start(); $menu_item->init_data( $args ); $menu_item->render_body(); $result['body'] = ob_get_clean(); ob_start(); $menu_item->render_pagination( $args['items_per_page'], $args['page'] ); $result['pagination'] = ob_get_clean(); wp_send_json_success( $result ); } } wp_send_json_error( array( 'message' => __( 'Invalid Request.', 'wpml-translation-management' ), ) ); } }