Changeset 42746
- Timestamp:
- 02/25/2018 08:21:37 PM (7 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-http.php
r42682 r42746 440 440 * 441 441 * @since 4.6.0 442 * @static443 442 * 444 443 * @param array $cookies List of cookies to send with the request. … … 467 466 * 468 467 * @since 4.6.0 469 * @static470 468 * 471 469 * @param string $location URL to redirect to. … … 643 641 * Parses the responses and splits the parts into headers and body. 644 642 * 645 * @static646 643 * @since 2.7.0 647 644 * … … 664 661 * headers as the values. No headers must be passed that were already processed. 665 662 * 666 * @static667 663 * @since 2.7.0 668 664 * … … 752 748 * 753 749 * @since 2.8.0 754 * @static755 750 * 756 751 * @param array $r Full array of args passed into ::request() … … 788 783 * 789 784 * @since 2.7.0 790 * @static791 785 * 792 786 * @param string $body Body content … … 922 916 * @since 3.4.0 923 917 * 924 * @static925 *926 918 * @param string $maybe_relative_path The URL which might be relative 927 919 * @param string $url The URL which $maybe_relative_path is relative to … … 997 989 * 998 990 * @since 3.7.0 999 * @static1000 991 * 1001 992 * @param string $url The URL which was requested. … … 1059 1050 * 1060 1051 * @since 3.7.0 1061 * @static1062 1052 * 1063 1053 * @param string $maybe_ip A suspected IP address -
trunk/src/wp-includes/class-oembed.php
r42343 r42746 291 291 * The just-in-time addition is for the benefit of the {@see 'oembed_providers'} filter. 292 292 * 293 * @static294 293 * @since 4.0.0 295 294 * … … 319 318 * 320 319 * @since 4.0.0 321 * @static322 320 * 323 321 * @see wp_oembed_remove_provider() -
trunk/src/wp-includes/class-wp-comment.php
r42343 r42746 163 163 * 164 164 * @since 4.4.0 165 * @static166 165 * 167 166 * @global wpdb $wpdb WordPress database abstraction object. -
trunk/src/wp-includes/class-wp-editor.php
r42630 r42746 36 36 * Parse default arguments for the editor instance. 37 37 * 38 * @static39 38 * @param string $editor_id ID for the current editor instance. 40 39 * @param array $settings { … … 149 148 * Outputs the HTML for a single instance of the editor. 150 149 * 151 * @static152 150 * @param string $content The initial content of the editor. 153 151 * @param string $editor_id ID for the textarea and TinyMCE and Quicktags instances (can contain only ASCII letters and numbers). … … 308 306 309 307 /** 310 * @static311 *312 308 * @global string $tinymce_version 313 309 * … … 734 730 735 731 /** 736 * @static737 732 * @param array $init 738 733 * @return string … … 761 756 762 757 /** 763 * @static764 *765 758 * @param bool $default_scripts Optional. Whether default scripts should be enqueued. Default false. 766 759 */ … … 1339 1332 * or as JS snippet that should run after tinymce.js is loaded. 1340 1333 * 1341 * @static1342 1334 * @param string $mce_locale The locale used for the editor. 1343 1335 * @param bool $json_only optional Whether to include the JavaScript calls to tinymce.addI18n() and tinymce.ScriptLoader.markDone(). … … 1399 1391 * @since 4.8.0 1400 1392 * 1401 * @static1402 1393 * @global string $tinymce_version 1403 1394 * @global bool $concatenate_scripts … … 1440 1431 * Print (output) the TinyMCE configuration and initialization scripts. 1441 1432 * 1442 * @static1443 1433 * @global string $tinymce_version 1444 1434 */ … … 1596 1586 * @since 3.2.0 1597 1587 * @deprecated 4.3.0 1598 *1599 * @static1600 1588 */ 1601 1589 public static function wp_fullscreen_html() { … … 1608 1596 * @since 3.1.0 1609 1597 * 1610 * @static1611 1598 * @param array $args Optional. Accepts 'pagenum' and 's' (search) arguments. 1612 1599 * @return false|array Results. … … 1698 1685 * 1699 1686 * @since 3.1.0 1700 *1701 * @static1702 1687 */ 1703 1688 public static function wp_link_dialog() { -
trunk/src/wp-includes/class-wp-hook.php
r42343 r42746 357 357 * 358 358 * @since 4.7.0 359 * @static360 359 * 361 360 * @param array $filters Filters to normalize. -
trunk/src/wp-includes/class-wp-http-curl.php
r42682 r42746 374 374 * Determines whether this class can be used for retrieving a URL. 375 375 * 376 * @static377 376 * @since 2.7.0 378 377 * -
trunk/src/wp-includes/class-wp-http-encoding.php
r42343 r42746 24 24 * @since 2.8.0 25 25 * 26 * @static27 *28 26 * @param string $raw String to compress. 29 27 * @param int $level Optional, default is 9. Compression level, 9 is highest. … … 45 43 * @since 2.8.0 46 44 * 47 * @static48 *49 45 * @param string $compressed String to decompress. 50 46 * @param int $length The optional length of the compressed data. … … 96 92 * @link https://secure.php.net/manual/en/function.gzinflate.php#70875 97 93 * @link https://secure.php.net/manual/en/function.gzinflate.php#77336 98 *99 * @static100 94 * 101 95 * @param string $gzData String to decompress. … … 142 136 * 143 137 * @since 2.8.0 144 *145 * @static146 138 * 147 139 * @param string $url … … 195 187 * @since 2.8.0 196 188 * 197 * @static198 *199 189 * @return string Content-Encoding string to send in the header. 200 190 */ … … 207 197 * 208 198 * @since 2.8.0 209 *210 * @static211 199 * 212 200 * @param array|string $headers All of the available headers. … … 234 222 * @since 2.8.0 235 223 * 236 * @static237 *238 224 * @return bool 239 225 */ -
trunk/src/wp-includes/class-wp-http-streams.php
r42682 r42746 359 359 * 360 360 * @since 3.7.0 361 * @static362 361 * 363 362 * @param stream $stream The PHP Stream which the SSL request is being made over … … 421 420 * Determines whether this class can be used for retrieving a URL. 422 421 * 423 * @static424 422 * @since 2.7.0 425 423 * @since 3.7.0 Combined with the fsockopen transport and switched to stream_socket_client(). -
trunk/src/wp-includes/class-wp-image-editor-gd.php
r42343 r42746 34 34 * @since 3.5.0 35 35 * 36 * @static37 *38 36 * @param array $args 39 37 * @return bool … … 59 57 * 60 58 * @since 3.5.0 61 *62 * @static63 59 * 64 60 * @param string $mime_type -
trunk/src/wp-includes/class-wp-image-editor-imagick.php
r42343 r42746 37 37 * 38 38 * @since 3.5.0 39 *40 * @static41 39 * 42 40 * @param array $args … … 99 97 * @since 3.5.0 100 98 * 101 * @static102 *103 99 * @param string $mime_type 104 100 * @return bool -
trunk/src/wp-includes/class-wp-image-editor.php
r42702 r42746 35 35 * @since 3.5.0 36 36 * 37 * @static38 37 * @abstract 39 38 * … … 51 50 * @since 3.5.0 52 51 * 53 * @static54 52 * @abstract 55 53 * … … 431 429 * @since 3.5.0 432 430 * 433 * @static434 *435 431 * @param string $extension 436 432 * @return string|false … … 459 455 * @since 3.5.0 460 456 * 461 * @static462 *463 457 * @param string $mime_type 464 458 * @return string|false -
trunk/src/wp-includes/class-wp-matchesmapregex.php
r42343 r42746 58 58 * static helper function to ease use 59 59 * 60 * @static61 *62 60 * @param string $subject subject 63 61 * @param array $matches data used for substitution -
trunk/src/wp-includes/class-wp-network.php
r42343 r42746 319 319 * 320 320 * @since 4.4.0 321 * @static322 321 * 323 322 * @param string $domain Domain to check. -
trunk/src/wp-includes/class-wp-post.php
r42343 r42746 223 223 * 224 224 * @since 3.5.0 225 * @static226 225 * 227 226 * @global wpdb $wpdb WordPress database abstraction object. -
trunk/src/wp-includes/class-wp-session-tokens.php
r42343 r42746 41 41 * 42 42 * @since 4.0.0 43 * @static44 43 * 45 44 * @param int $user_id User whose session to manage. … … 224 223 * 225 224 * @since 4.0.0 226 * @static227 225 */ 228 226 final public static function destroy_all_for_all_users() { … … 295 293 * 296 294 * @since 4.0.0 297 * @static298 295 */ 299 296 public static function drop_sessions() {} -
trunk/src/wp-includes/class-wp-site.php
r42343 r42746 146 146 * Retrieves a site from the database by its ID. 147 147 * 148 * @static149 148 * @since 4.5.0 150 149 * -
trunk/src/wp-includes/class-wp-tax-query.php
r42343 r42746 224 224 * 225 225 * @since 4.1.0 226 *227 * @static228 226 * 229 227 * @param array $query Tax query arguments. -
trunk/src/wp-includes/class-wp-term.php
r42343 r42746 103 103 * 104 104 * @since 4.4.0 105 * @static106 105 * 107 106 * @global wpdb $wpdb WordPress database abstraction object. -
trunk/src/wp-includes/class-wp-theme.php
r42734 r42746 1211 1211 * @since 3.4.0 1212 1212 * 1213 * @static1214 *1215 1213 * @param string $path Absolute path to search. 1216 1214 * @param array|string|null $extensions Optional. Array of extensions to find, string of a single extension, … … 1362 1360 * 1363 1361 * @since 3.4.0 1364 *1365 * @static1366 1362 * 1367 1363 * @param int $blog_id Optional. ID of the site. Defaults to the current site. … … 1389 1385 * @since 3.4.0 1390 1386 * 1391 * @static1392 *1393 1387 * @staticvar array $allowed_themes 1394 1388 * … … 1417 1411 * 1418 1412 * @since 3.4.0 1419 *1420 * @static1421 1413 * 1422 1414 * @staticvar array $allowed_themes … … 1499 1491 * 1500 1492 * @since 4.6.0 1501 * @static1502 1493 * 1503 1494 * @param string|array $stylesheets Stylesheet name or array of stylesheet names. … … 1524 1515 * 1525 1516 * @since 4.6.0 1526 * @static1527 1517 * 1528 1518 * @param string|array $stylesheets Stylesheet name or array of stylesheet names. … … 1551 1541 * 1552 1542 * @since 3.4.0 1553 *1554 * @static1555 1543 * 1556 1544 * @param array $themes Array of themes to sort (passed by reference). … … 1575 1563 * @since 3.4.0 1576 1564 * 1577 * @static1578 *1579 1565 * @param string $a First name. 1580 1566 * @param string $b Second name. … … 1591 1577 * @since 3.4.0 1592 1578 * 1593 * @static1594 *1595 1579 * @param string $a First name. 1596 1580 * @param string $b Second name. -
trunk/src/wp-includes/class-wp-user-meta-session-tokens.php
r41162 r42746 125 125 * 126 126 * @since 4.0.0 127 * @static128 127 */ 129 128 public static function drop_sessions() { -
trunk/src/wp-includes/class-wp-user.php
r42735 r42746 181 181 * @since 4.4.0 Added 'ID' as an alias of 'id' for the `$field` parameter. 182 182 * 183 * @static184 *185 183 * @global wpdb $wpdb WordPress database abstraction object. 186 184 * -
trunk/src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php
r42343 r42746 539 539 * 540 540 * @since 4.3.0 541 * @static542 541 * 543 542 * @see wp_get_nav_menu_items() -
trunk/src/wp-includes/pomo/po.php
r42343 r42746 101 101 * Formats a string in PO-style 102 102 * 103 * @static104 103 * @param string $string the string to format 105 104 * @return string the poified string … … 132 131 * Gives back the original string from a PO-formatted string 133 132 * 134 * @static135 133 * @param string $string PO-formatted string 136 134 * @return string enascaped string … … 174 172 * returns the modified string 175 173 * 176 * @static177 174 * @param string $string prepend lines in this string 178 175 * @param string $with prepend lines with this string … … 212 209 * Builds a string from the entry for inclusion in PO file 213 210 * 214 * @static215 211 * @param Translation_Entry $entry the entry to convert to po string (passed by reference). 216 212 * @return false|string PO-style formatted string for the entry or -
trunk/src/wp-includes/rest-api/class-wp-rest-request.php
r42343 r42746 175 175 * 176 176 * @since 4.4.0 177 * @static178 177 * 179 178 * @param string $key Header name. … … 954 953 * Retrieves a WP_REST_Request object from a full URL. 955 954 * 956 * @static957 955 * @since 4.5.0 958 956 * -
trunk/src/wp-includes/rest-api/class-wp-rest-server.php
r42421 r42746 460 460 * 461 461 * @since 4.4.0 462 * @static463 462 * 464 463 * @param WP_REST_Response $response Response to extract links from. … … 493 492 * 494 493 * @since 4.5.0 495 * @static496 494 * 497 495 * @param WP_REST_Response $response Response to extract links from.
Note: See TracChangeset
for help on using the changeset viewer.