i try to analyse a plugin operations , and , at some point we fill a form to be process , but i don't know by who the form is processed as i have this kind of html form , so i wonder how i can know the final php file who handle realy my form.
<form method="post" action="<?php echo esc_url( admin_url( 'admin-
post.php' ) ); ?>">
<input type="hidden" name="action" value="check_imported">
<input type="hidden" name="importer" value="<?php echo esc_attr(
$uid ); ?>">
<?php wp_nonce_field( 'check_imported', 'check_imported', false );
?>
<table class="import">
thank you for your help.