Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: image_editor_default_mime_type

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
379                /**
380                 * Filters default mime type prior to getting the file extension.
381                 *
382                 * @see wp_get_mime_types()
383                 *
384                 * @since 3.5.0
385                 *
386                 * @param string $mime_type Mime type string.
387                 */
388                $mime_type = apply_filters( 'image_editor_default_mime_type', $this->default_mime_type );
389                $new_ext   = $this->get_extension( $mime_type );
390           }
391
392           // Ensure both $filename and $new_ext are not empty.
393           // $this->get_extension() returns false on error which would effectively remove the extension
394           // from $filename. That shouldn't happen, files without extensions are not supported.
395           if ( $filename && $new_ext ) {
396                $dir = pathinfo( $filename, PATHINFO_DIRNAME );
397                $ext = pathinfo( $filename, PATHINFO_EXTENSION );