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
1854       * Filter whether to treat the upload bits as an error.
1855       *
1856       * Passing a non-array to the filter will effectively short-circuit preparing
1857       * the upload bits, returning that value instead.
1858       *
1859       * @since 3.0.0
1860       *
1861       * @param mixed $upload_bits_error An array of upload bits data, or a non-array error to return.
1862       */
1863      $upload_bits_error = apply_filters( 'wp_upload_bits', array( 'name' => $name, 'bits' => $bits, 'time' => $time ) );
1864      if ( !is_array( $upload_bits_error ) ) {
1865           $upload[ 'error' ] = $upload_bits_error;
1866           return $upload;
1867      }
1868
1869      $filename = wp_unique_filename( $upload['path'], $name );
1870
1871      $new_file = $upload['path'] . "/$filename";
1872      if ( ! wp_mkdir_p( dirname( $new_file ) ) ) {