]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/functions.php
WordPress 3.9
[autoinstalls/wordpress.git] / wp-includes / functions.php
index 9b0335b684cf2b27b76964168cc536de20cd6929..88e59fb1ac884486a0eebe68ebef2821ecf81eee 100644 (file)
@@ -46,13 +46,14 @@ function mysql2date( $format, $date, $translate = true ) {
  *
  * The 'mysql' type will return the time in the format for MySQL DATETIME field.
  * The 'timestamp' type will return the current timestamp.
+ * Other strings will be interpreted as PHP date formats (e.g. 'Y-m-d').
  *
  * If $gmt is set to either '1' or 'true', then both types will use GMT time.
  * if $gmt is false, the output is adjusted with the GMT offset in the WordPress option.
  *
  * @since 1.0.0
  *
- * @param string $type Either 'mysql' or 'timestamp'.
+ * @param string $type 'mysql', 'timestamp', or PHP date format string (e.g. 'Y-m-d').
  * @param int|bool $gmt Optional. Whether to use GMT timezone. Default is false.
  * @return int|string String if $type is 'gmt', int if $type is 'timestamp'.
  */
@@ -64,6 +65,9 @@ function current_time( $type, $gmt = 0 ) {
                case 'timestamp':
                        return ( $gmt ) ? time() : time() + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS );
                        break;
+               default:
+                       return ( $gmt ) ? date( $type ) : date( $type, time() + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ) );
+                       break;
        }
 }
 
@@ -136,8 +140,18 @@ function date_i18n( $dateformatstring, $unixtimestamp = false, $gmt = false ) {
                }
        }
        $j = @$datefunc( $dateformatstring, $i );
-       // allow plugins to redo this entirely for languages with untypical grammars
-       $j = apply_filters('date_i18n', $j, $req_format, $i, $gmt);
+
+       /**
+        * Filter the date formatted based on the locale.
+        *
+        * @since 2.8.0
+        * 
+        * @param string $j          Formatted date string.
+        * @param string $req_format Format to display the date.
+        * @param int    $i          Unix timestamp.
+        * @param bool   $gmt        Whether to convert to GMT for time. Default false.
+        */
+       $j = apply_filters( 'date_i18n', $j, $req_format, $i, $gmt );
        return $j;
 }
 
@@ -153,6 +167,14 @@ function date_i18n( $dateformatstring, $unixtimestamp = false, $gmt = false ) {
 function number_format_i18n( $number, $decimals = 0 ) {
        global $wp_locale;
        $formatted = number_format( $number, absint( $decimals ), $wp_locale->number_format['decimal_point'], $wp_locale->number_format['thousands_sep'] );
+
+       /**
+        * Filter the number formatted based on the locale.
+        *
+        * @since  2.8.0
+        *
+        * @param string $formatted Converted number in string format.
+        */
        return apply_filters( 'number_format_i18n', $formatted );
 }
 
@@ -247,20 +269,24 @@ function maybe_unserialize( $original ) {
  */
 function is_serialized( $data, $strict = true ) {
        // if it isn't a string, it isn't serialized
-       if ( ! is_string( $data ) )
+       if ( ! is_string( $data ) ) {
                return false;
+       }
        $data = trim( $data );
-       if ( 'N;' == $data )
+       if ( 'N;' == $data ) {
                return true;
-       $length = strlen( $data );
-       if ( $length < 4 )
+       }
+       if ( strlen( $data ) < 4 ) {
                return false;
-       if ( ':' !== $data[1] )
+       }
+       if ( ':' !== $data[1] ) {
                return false;
+       }
        if ( $strict ) {
-               $lastc = $data[ $length - 1 ];
-               if ( ';' !== $lastc && '}' !== $lastc )
+               $lastc = substr( $data, -1 );
+               if ( ';' !== $lastc && '}' !== $lastc ) {
                        return false;
+               }
        } else {
                $semicolon = strpos( $data, ';' );
                $brace     = strpos( $data, '}' );
@@ -277,8 +303,9 @@ function is_serialized( $data, $strict = true ) {
        switch ( $token ) {
                case 's' :
                        if ( $strict ) {
-                               if ( '"' !== $data[ $length - 2 ] )
+                               if ( '"' !== substr( $data, -2, 1 ) ) {
                                        return false;
+                               }
                        } elseif ( false === strpos( $data, '"' ) ) {
                                return false;
                        }
@@ -305,22 +332,23 @@ function is_serialized( $data, $strict = true ) {
  */
 function is_serialized_string( $data ) {
        // if it isn't a string, it isn't a serialized string
-       if ( !is_string( $data ) )
+       if ( ! is_string( $data ) ) {
                return false;
+       }
        $data = trim( $data );
-       $length = strlen( $data );
-       if ( $length < 4 )
+       if ( strlen( $data ) < 4 ) {
                return false;
-       elseif ( ':' !== $data[1] )
+       } elseif ( ':' !== $data[1] ) {
                return false;
-       elseif ( ';' !== $data[$length-1] )
+       } elseif ( ';' !== substr( $data, -1 ) ) {
                return false;
-       elseif ( $data[0] !== 's' )
+       } elseif ( $data[0] !== 's' ) {
                return false;
-       elseif ( '"' !== $data[$length-2] )
+       } elseif ( '"' !== substr( $data, -2, 1 ) ) {
                return false;
-       else
+       } else {
                return true;
+       }
 }
 
 /**
@@ -349,8 +377,6 @@ function maybe_serialize( $data ) {
  * If the title element is not part of the XML, then the default post title from
  * the $post_default_title will be used instead.
  *
- * @package WordPress
- * @subpackage XMLRPC
  * @since 0.71
  *
  * @global string $post_default_title Default XMLRPC post title.
@@ -375,8 +401,6 @@ function xmlrpc_getposttitle( $content ) {
  * used. The return type then would be what $post_default_category. If the
  * category is found, then it will always be an array.
  *
- * @package WordPress
- * @subpackage XMLRPC
  * @since 0.71
  *
  * @global string $post_default_category Default XMLRPC post category.
@@ -398,8 +422,6 @@ function xmlrpc_getpostcategory( $content ) {
 /**
  * XMLRPC XML content without title and category elements.
  *
- * @package WordPress
- * @subpackage XMLRPC
  * @since 0.71
  *
  * @param string $content XMLRPC XML Request content
@@ -439,7 +461,6 @@ function wp_extract_urls( $content ) {
  * remove enclosures that are no longer in the post. This is called as
  * pingbacks and trackbacks.
  *
- * @package WordPress
  * @since 1.5.0
  *
  * @uses $wpdb
@@ -867,10 +888,14 @@ function get_status_header_desc( $code ) {
                        415 => 'Unsupported Media Type',
                        416 => 'Requested Range Not Satisfiable',
                        417 => 'Expectation Failed',
+                       418 => 'I\'m a teapot',
                        422 => 'Unprocessable Entity',
                        423 => 'Locked',
                        424 => 'Failed Dependency',
                        426 => 'Upgrade Required',
+                       428 => 'Precondition Required',
+                       429 => 'Too Many Requests',
+                       431 => 'Request Header Fields Too Large',
 
                        500 => 'Internal Server Error',
                        501 => 'Not Implemented',
@@ -880,7 +905,8 @@ function get_status_header_desc( $code ) {
                        505 => 'HTTP Version Not Supported',
                        506 => 'Variant Also Negotiates',
                        507 => 'Insufficient Storage',
-                       510 => 'Not Extended'
+                       510 => 'Not Extended',
+                       511 => 'Network Authentication Required',
                );
        }
 
@@ -909,6 +935,17 @@ function status_header( $code ) {
                $protocol = 'HTTP/1.0';
        $status_header = "$protocol $code $description";
        if ( function_exists( 'apply_filters' ) )
+
+               /**
+                * Filter an HTTP status header.
+                *
+                * @since 2.2.0
+                *
+                * @param string $status_header HTTP status header.
+                * @param int    $code          HTTP status code.
+                * @param string $description   Description for the status code.
+                * @param string $protocol      Server protocol.
+                */
                $status_header = apply_filters( 'status_header', $status_header, $code, $description, $protocol );
 
        @header( $status_header, true, $code );
@@ -932,7 +969,20 @@ function wp_get_nocache_headers() {
        );
 
        if ( function_exists('apply_filters') ) {
-               $headers = (array) apply_filters('nocache_headers', $headers);
+               /**
+                * Filter the cache-controlling headers.
+                *
+                * @since 2.8.0
+                *
+                * @param array $headers {
+                *     Header names and field values.
+                *
+                *     @type string $Expires       Expires header.
+                *     @type string $Cache-Control Cache-Control header.
+                *     @type string $Pragma        Pragma header.
+                * }
+                */
+               $headers = (array) apply_filters( 'nocache_headers', $headers );
        }
        $headers['Last-Modified'] = false;
        return $headers;
@@ -1015,8 +1065,8 @@ function bool_from_yn( $yn ) {
  * It is better to only have one hook for each feed.
  *
  * @since 2.1.0
+ *
  * @uses $wp_query Used to tell if the use a comment feed.
- * @uses do_action() Calls 'do_feed_$feed' hook, if a hook exists for the feed.
  */
 function do_feed() {
        global $wp_query;
@@ -1033,6 +1083,15 @@ function do_feed() {
        if ( ! has_action( $hook ) )
                wp_die( __( 'ERROR: This is not a valid feed template.' ), '', array( 'response' => 404 ) );
 
+       /**
+        * Fires once the given feed is loaded.
+        *
+        * The dynamic hook name, $hook, refers to the feed name.
+        *
+        * @since 2.1.0
+        *
+        * @param bool $is_comment_feed Whether the feed is a comment feed.
+        */
        do_action( $hook, $wp_query->is_comment_feed );
 }
 
@@ -1089,11 +1148,15 @@ function do_feed_atom( $for_comments ) {
  * robots.txt file.
  *
  * @since 2.1.0
- * @uses do_action() Calls 'do_robotstxt' hook for displaying robots.txt rules.
  */
 function do_robots() {
        header( 'Content-Type: text/plain; charset=utf-8' );
 
+       /**
+        * Fires when displaying the robots.txt file.
+        *
+        * @since 2.1.0
+        */
        do_action( 'do_robotstxt' );
 
        $output = "User-agent: *\n";
@@ -1107,7 +1170,15 @@ function do_robots() {
                $output .= "Disallow: $path/wp-includes/\n";
        }
 
-       echo apply_filters('robots_txt', $output, $public);
+       /**
+        * Filter the robots.txt output.
+        *
+        * @since 3.0.0
+        *
+        * @param string $output Robots.txt output.
+        * @param bool   $public Whether the site is considered "public".
+        */
+       echo apply_filters( 'robots_txt', $output, $public );
 }
 
 /**
@@ -1187,14 +1258,12 @@ function is_blog_installed() {
 /**
  * Retrieve URL with nonce added to URL query.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @param string $actionurl URL to add nonce action.
  * @param string $action Optional. Nonce action name.
  * @param string $name Optional. Nonce name.
- * @return string URL with nonce action added.
+ * @return string Escaped URL with nonce action added.
  */
 function wp_nonce_url( $actionurl, $action = -1, $name = '_wpnonce' ) {
        $actionurl = str_replace( '&amp;', '&', $actionurl );
@@ -1219,8 +1288,6 @@ function wp_nonce_url( $actionurl, $action = -1, $name = '_wpnonce' ) {
  * The input name will be whatever $name value you gave. The input value will be
  * the nonce creation value.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @param string $action Optional. Action name.
@@ -1248,8 +1315,6 @@ function wp_nonce_field( $action = -1, $name = "_wpnonce", $referer = true , $ec
  * The referer link is the current Request URI from the server super global. The
  * input name is '_wp_http_referer', in case you wanted to check manually.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @param bool $echo Whether to echo or return the referer field.
@@ -1270,8 +1335,6 @@ function wp_referer_field( $echo = true ) {
  * value of {@link wp_referer_field()}, if that was posted already or it will
  * be the current page, if it doesn't exist.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @param bool $echo Whether to echo the original http referer
@@ -1292,8 +1355,6 @@ function wp_original_referer_field( $echo = true, $jump_back_to = 'current' ) {
  * Retrieve referer from '_wp_http_referer' or HTTP referer. If it's the same
  * as the current request URL, will return false.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @return string|bool False on failure. Referer URL on success.
@@ -1315,8 +1376,6 @@ function wp_get_referer() {
 /**
  * Retrieve original referer that was posted, if it exists.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @return string|bool False if no original referer or original referer if set.
@@ -1433,6 +1492,23 @@ function path_join( $base, $path ) {
        return rtrim($base, '/') . '/' . ltrim($path, '/');
 }
 
+/**
+ * Normalize a filesystem path.
+ *
+ * Replaces backslashes with forward slashes for Windows systems,
+ * and ensures no duplicate slashes exist.
+ *
+ * @since 3.9.0
+ *
+ * @param string $path Path to normalize.
+ * @return string Normalized path.
+ */
+function wp_normalize_path( $path ) {
+       $path = str_replace( '\\', '/', $path );
+       $path = preg_replace( '|/+|','/', $path );
+       return $path;
+}
+
 /**
  * Determines a writable directory for temporary files.
  * Function's preference is the return value of <code>sys_get_temp_dir()</code>,
@@ -1453,17 +1529,17 @@ function get_temp_dir() {
                return trailingslashit(WP_TEMP_DIR);
 
        if ( $temp )
-               return trailingslashit( rtrim( $temp, '\\' ) );
+               return trailingslashit( $temp );
 
        if ( function_exists('sys_get_temp_dir') ) {
                $temp = sys_get_temp_dir();
                if ( @is_dir( $temp ) && wp_is_writable( $temp ) )
-                       return trailingslashit( rtrim( $temp, '\\' ) );
+                       return trailingslashit( $temp );
        }
 
        $temp = ini_get('upload_tmp_dir');
        if ( @is_dir( $temp ) && wp_is_writable( $temp ) )
-               return trailingslashit( rtrim( $temp, '\\' ) );
+               return trailingslashit( $temp );
 
        $temp = WP_CONTENT_DIR . '/';
        if ( is_dir( $temp ) && wp_is_writable( $temp ) )
@@ -1555,7 +1631,6 @@ function win_is_writable( $path ) {
  * 'error' - set to false.
  *
  * @since 2.0.0
- * @uses apply_filters() Calls 'upload_dir' on returned array.
  *
  * @param string $time Optional. Time formatted in 'yyyy/mm'.
  * @return array See above for description.
@@ -1642,6 +1717,14 @@ function wp_upload_dir( $time = null ) {
        $dir .= $subdir;
        $url .= $subdir;
 
+       /**
+        * Filter the uploads directory data.
+        *
+        * @since 2.0.0
+        *
+        * @param array $uploads Array of upload directory data with keys of 'path',
+        *                       'url', 'subdir, 'basedir', and 'error'.
+        */
        $uploads = apply_filters( 'upload_dir',
                array(
                        'path'    => $dir,
@@ -1767,6 +1850,16 @@ function wp_upload_bits( $name, $deprecated, $bits, $time = null ) {
        if ( $upload['error'] !== false )
                return $upload;
 
+       /**
+        * Filter whether to treat the upload bits as an error.
+        *
+        * Passing a non-array to the filter will effectively short-circuit preparing
+        * the upload bits, returning that value instead.
+        *
+        * @since 3.0.0
+        *
+        * @param mixed $upload_bits_error An array of upload bits data, or a non-array error to return.
+        */
        $upload_bits_error = apply_filters( 'wp_upload_bits', array( 'name' => $name, 'bits' => $bits, 'time' => $time ) );
        if ( !is_array( $upload_bits_error ) ) {
                $upload[ 'error' ] = $upload_bits_error;
@@ -1810,15 +1903,25 @@ function wp_upload_bits( $name, $deprecated, $bits, $time = null ) {
 /**
  * Retrieve the file type based on the extension name.
  *
- * @package WordPress
  * @since 2.5.0
- * @uses apply_filters() Calls 'ext2type' hook on default supported types.
  *
  * @param string $ext The extension to search.
- * @return string|null The file type, example: audio, video, document, spreadsheet, etc. Null if not found.
+ * @return string|null The file type, example: audio, video, document, spreadsheet, etc.
+ *                     Null if not found.
  */
 function wp_ext2type( $ext ) {
        $ext = strtolower( $ext );
+
+       /**
+        * Filter file type based on the extension name.
+        *
+        * @since 2.5.0
+        *
+        * @see wp_ext2type()
+        *
+        * @param array $ext2type Multi-dimensional array with extensions for a default set
+        *                        of file types.
+        */
        $ext2type = apply_filters( 'ext2type', array(
                'image'       => array( 'jpg', 'jpeg', 'jpe',  'gif',  'png',  'bmp',   'tif',  'tiff', 'ico' ),
                'audio'       => array( 'aac', 'ac3',  'aif',  'aiff', 'm3a',  'm4a',   'm4b',  'mka',  'mp1',  'mp2',  'mp3', 'ogg', 'oga', 'ram', 'wav', 'wma' ),
@@ -1903,8 +2006,13 @@ function wp_check_filetype_and_ext( $file, $filename, $mimes = null ) {
 
                // If getimagesize() knows what kind of image it really is and if the real MIME doesn't match the claimed MIME
                if ( !empty($imgstats['mime']) && $imgstats['mime'] != $type ) {
-                       // This is a simplified array of MIMEs that getimagesize() can detect and their extensions
-                       // You shouldn't need to use this filter, but it's here just in case
+                       /**
+                        * Filter the list mapping image mime types to their respective extensions.
+                        *
+                        * @since 3.0.0
+                        *
+                        * @param  array $mime_to_ext Array of image mime types and their matching extensions.
+                        */
                        $mime_to_ext = apply_filters( 'getimagesize_mimes_to_exts', array(
                                'image/jpeg' => 'jpg',
                                'image/png'  => 'png',
@@ -1930,8 +2038,18 @@ function wp_check_filetype_and_ext( $file, $filename, $mimes = null ) {
                }
        }
 
-       // Let plugins try and validate other types of files
-       // Should return an array in the style of array( 'ext' => $ext, 'type' => $type, 'proper_filename' => $proper_filename )
+       /**
+        * Filter the "real" file type of the given file.
+        *
+        * @since 3.0.0
+        *
+        * @param array  $wp_check_filetype_and_ext File data array containing 'ext', 'type', and
+        *                                          'proper_filename' keys.
+        * @param string $file                      Full path to the file.
+        * @param string $filename                  The name of the file (may differ from $file due to
+        *                                          $file being in a tmp directory).
+        * @param array  $mimes                     Key is the file extension with value as the mime type.
+        */
        return apply_filters( 'wp_check_filetype_and_ext', compact( 'ext', 'type', 'proper_filename' ), $file, $filename, $mimes );
 }
 
@@ -1940,13 +2058,20 @@ function wp_check_filetype_and_ext( $file, $filename, $mimes = null ) {
  *
  * @since 3.5.0
  *
- * @uses apply_filters() Calls 'mime_types' on returned array. This filter should
- * be used to add types, not remove them. To remove types use the upload_mimes filter.
- *
  * @return array Array of mime types keyed by the file extension regex corresponding to those types.
  */
 function wp_get_mime_types() {
-       // Accepted MIME types are set here as PCRE unless provided.
+       /**
+        * Filter the list of mime types and file extensions.
+        *
+        * This filter should be used to add, not remove, mime types. To remove
+        * mime types, use the 'upload_mimes' filter.
+        *
+        * @since 3.5.0
+        *
+        * @param array $wp_get_mime_types Mime types keyed by the file extension regex
+        *                                 corresponding to those types.
+        */
        return apply_filters( 'mime_types', array(
        // Image formats
        'jpg|jpeg|jpe' => 'image/jpeg',
@@ -1977,6 +2102,7 @@ function wp_get_mime_types() {
        'rtx' => 'text/richtext',
        'css' => 'text/css',
        'htm|html' => 'text/html',
+       'vtt' => 'text/vtt',
        // Audio formats
        'mp3|m4a|m4b' => 'audio/mpeg',
        'ra|ram' => 'audio/x-realaudio',
@@ -2046,7 +2172,6 @@ function wp_get_mime_types() {
  *
  * @since 2.8.6
  *
- * @uses apply_filters() Calls 'upload_mimes' on returned array
  * @uses wp_get_upload_mime_types() to fetch the list of mime types
  *
  * @param int|WP_User $user Optional. User to check. Defaults to current user.
@@ -2062,6 +2187,16 @@ function get_allowed_mime_types( $user = null ) {
        if ( empty( $unfiltered ) )
                unset( $t['htm|html'] );
 
+       /**
+        * Filter list of allowed mime types and file extensions.
+        *
+        * @since 2.0.0
+        *
+        * @param array            $t    Mime types keyed by the file extension regex corresponding to
+        *                               those types. 'swf' and 'exe' removed from full list. 'htm|html' also
+        *                               removed depending on '$user' capabilities.
+        * @param int|WP_User|null $user User ID, User object or null if not provided (indicates current user).
+        */
        return apply_filters( 'upload_mimes', $t, $user );
 }
 
@@ -2071,8 +2206,6 @@ function get_allowed_mime_types( $user = null ) {
  * If the action has the nonce explain message, then it will be displayed along
  * with the "Are you sure?" message.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @param string $action The nonce action.
@@ -2081,7 +2214,8 @@ function wp_nonce_ays( $action ) {
        $title = __( 'WordPress Failure Notice' );
        if ( 'log-out' == $action ) {
                $html = sprintf( __( 'You are attempting to log out of %s' ), get_bloginfo( 'name' ) ) . '</p><p>';
-               $html .= sprintf( __( "Do you really want to <a href='%s'>log out</a>?"), wp_logout_url() );
+               $redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
+               $html .= sprintf( __( "Do you really want to <a href='%s'>log out</a>?"), wp_logout_url( $redirect_to ) );
        } else {
                $html = __( 'Are you sure you want to do this?' );
                if ( wp_get_referer() )
@@ -2107,12 +2241,34 @@ function wp_nonce_ays( $action ) {
  * @param string|array $args Optional arguments to control behavior.
  */
 function wp_die( $message = '', $title = '', $args = array() ) {
-       if ( defined( 'DOING_AJAX' ) && DOING_AJAX )
+       if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
+               /**
+                * Filter callback for killing WordPress execution for AJAX requests.
+                *
+                * @since 3.4.0
+                *
+                * @param callback $function Callback function name.
+                */
                $function = apply_filters( 'wp_die_ajax_handler', '_ajax_wp_die_handler' );
-       elseif ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST )
+       } elseif ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) {
+               /**
+                * Filter callback for killing WordPress execution for XML-RPC requests.
+                *
+                * @since 3.4.0
+                *
+                * @param callback $function Callback function name.
+                */
                $function = apply_filters( 'wp_die_xmlrpc_handler', '_xmlrpc_wp_die_handler' );
-       else
+       } else {
+               /**
+                * Filter callback for killing WordPress execution for all non-AJAX, non-XML-RPC requests.
+                *
+                * @since 3.0.0
+                *
+                * @param callback $function Callback function name.
+                */
                $function = apply_filters( 'wp_die_handler', '_default_wp_die_handler' );
+       }
 
        call_user_func( $function, $message, $title, $args );
 }
@@ -2188,11 +2344,11 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
        <title><?php echo $title ?></title>
        <style type="text/css">
                html {
-                       background: #eee;
+                       background: #f1f1f1;
                }
                body {
                        background: #fff;
-                       color: #333;
+                       color: #444;
                        font-family: "Open Sans", sans-serif;
                        margin: 2em auto;
                        padding: 1em 2em;
@@ -2409,7 +2565,6 @@ function wp_send_json_error( $data = null ) {
  * development environment.
  *
  * @access private
- * @package WordPress
  * @since 2.2.0
  *
  * @param string $url URL for the home location
@@ -2429,7 +2584,6 @@ function _config_wp_home( $url = '' ) {
  * your localhost while not having to change the database to your URL.
  *
  * @access private
- * @package WordPress
  * @since 2.2.0
  *
  * @param string $url URL to set the WordPress site location.
@@ -2447,22 +2601,21 @@ function _config_wp_siteurl( $url = '' ) {
  * Will only set the direction to 'rtl', if the WordPress locale has the text
  * direction set to 'rtl'.
  *
- * Fills in the 'directionality', 'plugins', and 'theme_advanced_button1' array
- * keys. These keys are then returned in the $input array.
+ * Fills in the 'directionality' setting, enables the 'directionality' plugin,
+ * and adds the 'ltr' button to 'toolbar1', formerly 'theme_advanced_buttons1' array
+ * keys. These keys are then returned in the $input (TinyMCE settings) array.
  *
  * @access private
- * @package WordPress
- * @subpackage MCE
  * @since 2.1.0
  *
- * @param array $input MCE plugin array.
+ * @param array $input MCE settings array.
  * @return array Direction set for 'rtl', if needed by locale.
  */
 function _mce_set_direction( $input ) {
        if ( is_rtl() ) {
                $input['directionality'] = 'rtl';
                $input['plugins'] .= ',directionality';
-               $input['theme_advanced_buttons1'] .= ',ltr';
+               $input['toolbar1'] .= ',ltr';
        }
 
        return $input;
@@ -2738,8 +2891,17 @@ function wp_list_pluck( $list, $field ) {
  * @uses add_action() Calls '_admin_menu' hook with 'wp_widgets_add_menu' value.
  */
 function wp_maybe_load_widgets() {
-       if ( ! apply_filters('load_default_widgets', true) )
+       /**
+        * Filter whether to load the Widgets library.
+        *
+        * @since 2.8.0
+        *
+        * @param bool $wp_maybe_load_widgets Whether to load the Widgets library.
+        *                                    Default true.
+        */
+       if ( ! apply_filters( 'load_default_widgets', true ) ) {
                return;
+       }
        require_once( ABSPATH . WPINC . '/default-widgets.php' );
        add_action( '_admin_menu', 'wp_widgets_add_menu' );
 }
@@ -2793,6 +2955,8 @@ function wp_ob_end_flush_all() {
 function dead_db() {
        global $wpdb;
 
+       wp_load_translations_early();
+
        // Load custom DB error template, if present.
        if ( file_exists( WP_CONTENT_DIR . '/db-error.php' ) ) {
                require_once( WP_CONTENT_DIR . '/db-error.php' );
@@ -2807,8 +2971,6 @@ function dead_db() {
        status_header( 500 );
        nocache_headers();
        header( 'Content-Type: text/html; charset=utf-8' );
-
-       wp_load_translations_early();
 ?>
 <!DOCTYPE html>
 <html xmlns="http://www.w3.org/1999/xhtml"<?php if ( is_rtl() ) echo ' dir="rtl"'; ?>>
@@ -2883,25 +3045,33 @@ function url_is_accessable_via_ssl($url)
  *
  * This function is to be used in every function that is deprecated.
  *
- * @package WordPress
- * @subpackage Debug
  * @since 2.5.0
  * @access private
  *
- * @uses do_action() Calls 'deprecated_function_run' and passes the function name, what to use instead,
- *   and the version the function was deprecated in.
- * @uses apply_filters() Calls 'deprecated_function_trigger_error' and expects boolean value of true to do
- *   trigger or false to not trigger error.
- *
  * @param string $function The function that was called
  * @param string $version The version of WordPress that deprecated the function
  * @param string $replacement Optional. The function that should have been called
  */
 function _deprecated_function( $function, $version, $replacement = null ) {
 
+       /**
+        * Fires when a deprecated function is called.
+        *
+        * @since 2.5.0
+        *
+        * @param string $function    The function that was called.
+        * @param string $replacement The function that should have been called.
+        * @param string $version     The version of WordPress that deprecated the function.
+        */
        do_action( 'deprecated_function_run', $function, $replacement, $version );
 
-       // Allow plugin to filter the output error trigger
+       /**
+        * Filter whether to trigger an error for deprecated functions.
+        *
+        * @since 2.5.0
+        *
+        * @param bool $trigger Whether to trigger the error for deprecated functions. Default true.
+        */
        if ( WP_DEBUG && apply_filters( 'deprecated_function_trigger_error', true ) ) {
                if ( function_exists( '__' ) ) {
                        if ( ! is_null( $replacement ) )
@@ -2928,16 +3098,9 @@ function _deprecated_function( $function, $version, $replacement = null ) {
  *
  * This function is to be used in every file that is deprecated.
  *
- * @package WordPress
- * @subpackage Debug
  * @since 2.5.0
  * @access private
  *
- * @uses do_action() Calls 'deprecated_file_included' and passes the file name, what to use instead,
- *   the version in which the file was deprecated, and any message regarding the change.
- * @uses apply_filters() Calls 'deprecated_file_trigger_error' and expects boolean value of true to do
- *   trigger or false to not trigger error.
- *
  * @param string $file The file that was included
  * @param string $version The version of WordPress that deprecated the file
  * @param string $replacement Optional. The file that should have been included based on ABSPATH
@@ -2945,9 +3108,25 @@ function _deprecated_function( $function, $version, $replacement = null ) {
  */
 function _deprecated_file( $file, $version, $replacement = null, $message = '' ) {
 
+       /**
+        * Fires when a deprecated file is called.
+        *
+        * @since 2.5.0
+        *
+        * @param string $file        The file that was called.
+        * @param string $replacement The file that should have been included based on ABSPATH.
+        * @param string $version     The version of WordPress that deprecated the file.
+        * @param string $message     A message regarding the change.
+        */
        do_action( 'deprecated_file_included', $file, $replacement, $version, $message );
 
-       // Allow plugin to filter the output error trigger
+       /**
+        * Filter whether to trigger an error for deprecated files.
+        *
+        * @since 2.5.0
+        *
+        * @param bool $trigger Whether to trigger the error for deprecated files. Default true.
+        */
        if ( WP_DEBUG && apply_filters( 'deprecated_file_trigger_error', true ) ) {
                $message = empty( $message ) ? '' : ' ' . $message;
                if ( function_exists( '__' ) ) {
@@ -2981,25 +3160,33 @@ function _deprecated_file( $file, $version, $replacement = null, $message = '' )
  *
  * The current behavior is to trigger a user error if WP_DEBUG is true.
  *
- * @package WordPress
- * @subpackage Debug
  * @since 3.0.0
  * @access private
  *
- * @uses do_action() Calls 'deprecated_argument_run' and passes the function name, a message on the change,
- *   and the version in which the argument was deprecated.
- * @uses apply_filters() Calls 'deprecated_argument_trigger_error' and expects boolean value of true to do
- *   trigger or false to not trigger error.
- *
  * @param string $function The function that was called
  * @param string $version The version of WordPress that deprecated the argument used
  * @param string $message Optional. A message regarding the change.
  */
 function _deprecated_argument( $function, $version, $message = null ) {
 
+       /**
+        * Fires when a deprecated argument is called.
+        *
+        * @since 3.0.0
+        *
+        * @param string $function The function that was called.
+        * @param string $message  A message regarding the change.
+        * @param string $version  The version of WordPress that deprecated the argument used.
+        */
        do_action( 'deprecated_argument_run', $function, $message, $version );
 
-       // Allow plugin to filter the output error trigger
+       /**
+        * Filter whether to trigger an error for deprecated arguments.
+        *
+        * @since 3.0.0
+        *
+        * @param bool $trigger Whether to trigger the error for deprecated arguments. Default true.
+        */
        if ( WP_DEBUG && apply_filters( 'deprecated_argument_trigger_error', true ) ) {
                if ( function_exists( '__' ) ) {
                        if ( ! is_null( $message ) )
@@ -3024,24 +3211,33 @@ function _deprecated_argument( $function, $version, $message = null ) {
  *
  * The current behavior is to trigger a user error if WP_DEBUG is true.
  *
- * @package WordPress
- * @subpackage Debug
  * @since 3.1.0
  * @access private
  *
- * @uses do_action() Calls 'doing_it_wrong_run' and passes the function arguments.
- * @uses apply_filters() Calls 'doing_it_wrong_trigger_error' and expects boolean value of true to do
- *   trigger or false to not trigger error.
- *
  * @param string $function The function that was called.
  * @param string $message A message explaining what has been done incorrectly.
  * @param string $version The version of WordPress where the message was added.
  */
 function _doing_it_wrong( $function, $message, $version ) {
 
+       /**
+        * Fires when the given function is being used incorrectly.
+        *
+        * @since 3.1.0
+        *
+        * @param string $function The function that was called.
+        * @param string $message  A message explaining what has been done incorrectly.
+        * @param string $version  The version of WordPress where the message was added.
+        */
        do_action( 'doing_it_wrong_run', $function, $message, $version );
 
-       // Allow plugin to filter the output error trigger
+       /**
+        * Filter whether to trigger an error for _doing_it_wrong() calls.
+        *
+        * @since 3.1.0
+        *
+        * @param bool $trigger Whether to trigger the error for _doing_it_wrong() calls. Default true.
+        */
        if ( WP_DEBUG && apply_filters( 'doing_it_wrong_trigger_error', true ) ) {
                if ( function_exists( '__' ) ) {
                        $version = is_null( $version ) ? '' : sprintf( __( '(This message was added in version %s.)' ), $version );
@@ -3121,7 +3317,14 @@ function iis7_supports_permalinks() {
                $supports_permalinks = class_exists('DOMDocument') && isset($_SERVER['IIS_UrlRewriteModule']) && ( php_sapi_name() == 'cgi-fcgi' );
        }
 
-       return apply_filters('iis7_supports_permalinks', $supports_permalinks);
+       /**
+        * Filter whether IIS 7+ supports pretty permalinks.
+        *
+        * @since 2.8.0
+        *
+        * @param bool $supports_permalinks Whether IIS7 supports permalinks. Default false.
+        */
+       return apply_filters( 'iis7_supports_permalinks', $supports_permalinks );
 }
 
 /**
@@ -3369,7 +3572,6 @@ function is_main_network( $network_id = null ) {
  *
  *
  * @since 3.0.0
- * @package WordPress
  *
  * @return bool True if multisite and global terms enabled
  */
@@ -3379,6 +3581,17 @@ function global_terms_enabled() {
 
        static $global_terms = null;
        if ( is_null( $global_terms ) ) {
+
+               /**
+                * Filter whether global terms are enabled.
+                *
+                * Passing a non-null value to the filter will effectively short-circuit the function,
+                * returning the value of the 'global_terms_enabled' site option instead.
+                *
+                * @since 3.0.0
+                *
+                * @param null $anbled Whether global terms are enabled.
+                */
                $filter = apply_filters( 'global_terms_enabled', null );
                if ( ! is_null( $filter ) )
                        $global_terms = (bool) $filter;
@@ -3674,6 +3887,16 @@ function get_file_data( $file, $default_headers, $context = '' ) {
        // Make sure we catch CR-only line endings.
        $file_data = str_replace( "\r", "\n", $file_data );
 
+       /**
+        * Filter extra file headers by context.
+        *
+        * The dynamic portion of the hook name, $context, refers to the context
+        * where extra headers might be loaded.
+        *
+        * @since 2.9.0
+        *
+        * @param array $extra_context_headers Empty array by default.
+        */
        if ( $context && $extra_headers = apply_filters( "extra_{$context}_headers", array() ) ) {
                $extra_headers = array_combine( $extra_headers, $extra_headers ); // keys equal values
                $all_headers = array_merge( $extra_headers, (array) $default_headers );
@@ -3895,6 +4118,14 @@ function wp_allowed_protocols() {
 
        if ( empty( $protocols ) ) {
                $protocols = array( 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp' );
+
+               /**
+                * Filter the list of protocols allowed in HTML attributes.
+                * 
+                * @since 3.0.0 
+                *
+                * @param array $protocols Array of allowed protocols e.g. 'http', 'ftp', 'tel', and more.
+                */
                $protocols = apply_filters( 'kses_allowed_protocols', $protocols );
        }
 
@@ -4012,6 +4243,14 @@ function wp_is_stream( $path ) {
  * @return bool true|false
  */
 function wp_checkdate( $month, $day, $year, $source_date ) {
+       /**
+        * Filter whether the given date is valid for the Gregorian calendar.
+        *
+        * @since 3.5.0
+        *
+        * @param bool   $checkdate   Whether the given date is valid.
+        * @param string $source_date Date to check.
+        */
        return apply_filters( 'wp_checkdate', checkdate( $month, $day, $year ), $source_date );
 }
 
@@ -4037,6 +4276,14 @@ function wp_auth_check_load() {
        $hidden = array( 'update', 'update-network', 'update-core', 'update-core-network', 'upgrade', 'upgrade-network', 'network' );
        $show = ! in_array( $screen->id, $hidden );
 
+       /**
+        * Filter whether to load the authentication check.
+        *
+        * @since 3.6.0
+        *
+        * @param bool      $show   Whether to load the authentication check.
+        * @param WP_Screen $screen The current screen object.
+        */
        if ( apply_filters( 'wp_auth_check_load', $show, $screen ) ) {
                wp_enqueue_style( 'wp-auth-check' );
                wp_enqueue_script( 'wp-auth-check' );
@@ -4059,7 +4306,13 @@ function wp_auth_check_html() {
        if ( $same_domain && force_ssl_login() && ! force_ssl_admin() )
                $same_domain = false;
 
-       // Let plugins change this if they know better.
+       /**
+        * Filter whether the authentication check originated at the same domain.
+        *
+        * @since 3.6.0
+        *
+        * @param bool $same_domain Whether the authentication check originated at the same domain.
+        */
        $same_domain = apply_filters( 'wp_auth_check_same_domain', $same_domain );
        $wrap_class = $same_domain ? 'hidden' : 'hidden fallback';
 
@@ -4095,7 +4348,7 @@ function wp_auth_check_html() {
  *
  * @since 3.6.0
  */
-function wp_auth_check( $response, $data ) {
+function wp_auth_check( $response ) {
        $response['wp-auth-check'] = is_user_logged_in() && empty( $GLOBALS['login_grace_period'] );
        return $response;
 }