Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_upload_bits

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1686      $wp_filetype = wp_check_filetype( $name );
1687      if ( ! $wp_filetype['ext'] && ! current_user_can( 'unfiltered_upload' ) )
1688           return array( 'error' => __( 'Invalid file type' ) );
1689
1690      $upload = wp_upload_dir( $time );
1691
1692      if ( $upload['error'] !== false )
1693           return $upload;
1694
1695      $upload_bits_error = apply_filters( 'wp_upload_bits', array( 'name' => $name, 'bits' => $bits, 'time' => $time ) );
1696      if ( !is_array( $upload_bits_error ) ) {
1697           $upload[ 'error' ] = $upload_bits_error;
1698           return $upload;
1699      }
1700
1701      $filename = wp_unique_filename( $upload['path'], $name );
1702
1703      $new_file = $upload['path'] . "/$filename";
1704      if ( ! wp_mkdir_p( dirname( $new_file ) ) ) {