acf/internal_post_type_list/current_screen action-hookACF 1.0

Usage

add_action( 'acf/internal_post_type_list/current_screen', 'wp_kama_acf_internal_post_type_list_current_screen_action' );

/**
 * Function for `acf/internal_post_type_list/current_screen` action-hook.
 * 
 * @param  $post_type 
 *
 * @return void
 */
function wp_kama_acf_internal_post_type_list_current_screen_action( $post_type ){
	// action...
}
$post_type
-

Where the hook is called

ACF_Admin_Internal_Post_Type_List::current_screen()
acf/internal_post_type_list/current_screen
acf/includes/admin/admin-internal-post-type-list.php 177
do_action( 'acf/internal_post_type_list/current_screen', $this->post_type );

Where the hook is used in Advanced Custom Fields PRO

acf/pro/acf-pro.php 70
add_action( 'acf/internal_post_type_list/current_screen', array( $this, 'invalid_license_redirect_notice' ) );