WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
970 | * @type string $name The original name of the file on the client machine. |
971 | * @type string $type The mime type of the file, if the browser provided this information. |
972 | * @type string $tmp_name The temporary filename of the file in which the uploaded file was stored on the server. |
973 | * @type int $size The size, in bytes, of the uploaded file. |
974 | * @type int $error The error code associated with this file upload. |
975 | * } |
976 | * @param string $new_file Filename of the newly-uploaded file. |
977 | * @param string $type Mime type of the newly-uploaded file. |
978 | */ |
979 | $move_new_file = apply_filters( 'pre_move_uploaded_file', null, $file, $new_file, $type ); |
980 |
|
981 | if ( null === $move_new_file ) { |
982 | if ( 'wp_handle_upload' === $action ) { |
983 | $move_new_file = @move_uploaded_file( $file['tmp_name'], $new_file ); |
984 | } else { |
985 | // Use copy and unlink because rename breaks streams. |
986 | // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged |
987 | $move_new_file = @copy( $file['tmp_name'], $new_file ); |
988 | unlink( $file['tmp_name'] ); |