check backend post type

PHP
function this_screen() {
  $current_screen = get_current_screen();
  if( $current_screen ->id === "page" ) {
    include_once 'page_admin.php';
  }
}
add_action( 'current_screen', 'this_screen' );
Source

Also in PHP: