Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: sanitize_file_name

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

This hook occurs 2 times in this file.

Line Code
2059           }
2060      }
2061
2062      // Split the filename into a base and extension[s].
2063      $parts = explode( '.', $filename );
2064
2065      // Return if only one extension.
2066      if ( count( $parts ) <= 2 ) {
2067           /** This filter is documented in wp-includes/formatting.php */
2068           return apply_filters( 'sanitize_file_name', $filename, $filename_raw );
2069      }
2070
2071      // Process multiple extensions.
2072      $filename  = array_shift( $parts );
2073      $extension = array_pop( $parts );
2074      $mimes     = get_allowed_mime_types();
2075
2076      /*
2077       * Loop over any intermediate extensions. Postfix them with a trailing underscore
 
Line Code
2099
2100      /**
2101       * Filters a sanitized filename string.
2102       *
2103       * @since 2.8.0
2104       *
2105       * @param string $filename     Sanitized filename.
2106       * @param string $filename_raw The filename prior to sanitization.
2107       */
2108      return apply_filters( 'sanitize_file_name', $filename, $filename_raw );
2109 }
2110
2111 /**
2112  * Sanitizes a username, stripping out unsafe characters.
2113  *
2114  * Removes tags, percent-encoded characters, HTML entities, and if strict is enabled,
2115  * will only keep alphanumeric, _, space, ., -, @. After sanitizing, it passes the username,
2116  * raw username (the username in the parameter), and the value of $strict as parameters
2117  * for the {@see 'sanitize_user'} filter.