is there any way how to safely get content of the publish box?

For example via some hook or filter? I wasn't able to find anything.
I need to place in in some different place.
is there any way how to safely get content of the publish box?

For example via some hook or filter? I wasn't able to find anything.
I need to place in in some different place.
add_action( 'post_submitbox_misc_actions', 'show_current_filter' );
add_action( 'post_submitbox_start', 'show_current_filter' );
function show_current_filter()
{
$post = get_post();
print '<pre>' . $post->ID . ' : ' . current_filter() . '</pre>';
}