Changeset 30122
- Timestamp:
- 10/31/2014 05:55:39 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/export.php
r27469 r30122 113 113 * Create the date options fields for exporting a given post type. 114 114 * 115 * @global wpdb $wpdb WordPress database object.115 * @global wpdb $wpdb WordPress database abstraction object. 116 116 * @global WP_Locale $wp_locale Date and Time Locale object. 117 117 * -
trunk/src/wp-admin/includes/comment.php
r25434 r30122 11 11 * 12 12 * @since 2.0.0 13 * @uses $wpdb 13 * 14 * @global wpdb $wpdb WordPress database abstraction object. 14 15 * 15 16 * @param string $comment_author Author of the comment … … 111 112 * 112 113 * @since 2.3.0 113 * @uses $wpdb 114 * 115 * @global wpdb $wpdb WordPress database abstraction object. 114 116 * 115 117 * @param int|array $post_id Either a single Post ID or an array of Post IDs -
trunk/src/wp-admin/includes/schema.php
r30056 r30122 325 325 * 326 326 * @since 1.5.0 327 * @uses $wpdb 327 * 328 * @global wpdb $wpdb WordPress database abstraction object. 328 329 * @uses $wp_db_version 329 330 */ -
trunk/src/wp-admin/install-helper.php
r29206 r30122 45 45 * @since 1.0.0 46 46 * 47 * @ uses $wpdb47 * @global wpdb $wpdb WordPress database abstraction object. 48 48 * 49 49 * @param string $table_name Database table name. … … 77 77 * @since 1.0.0 78 78 * 79 * @ uses $wpdb79 * @global wpdb $wpdb WordPress database abstraction object. 80 80 * 81 81 * @param string $table_name Database table name … … 111 111 * @since 1.0.0 112 112 * 113 * @ uses $wpdb113 * @global wpdb $wpdb WordPress database abstraction object. 114 114 * 115 115 * @param string $table_name Table name -
trunk/src/wp-includes/bookmark.php
r30105 r30122 11 11 * 12 12 * @since 2.1.0 13 * @uses $wpdb Database Object 13 * 14 * @global wpdb $wpdb WordPress database abstraction object. 14 15 * 15 16 * @param mixed $bookmark … … 92 93 * @since 2.1.0 93 94 * 94 * @global wpdb $wpdb WordPress database a ccess abstraction object.95 * @global wpdb $wpdb WordPress database abstraction object. 95 96 * 96 97 * @param string|array $args { -
trunk/src/wp-includes/canonical.php
r30090 r30122 513 513 * 514 514 * @since 2.3.0 515 * @uses $wpdb 515 * 516 * @global wpdb $wpdb WordPress database abstraction object. 516 517 * 517 518 * @return bool|string The correct URL if one is found. False on failure. -
trunk/src/wp-includes/capabilities.php
r29634 r30122 105 105 * @since 2.1.0 106 106 * @access protected 107 * @uses $wpdb Used to get the database prefix. 107 * 108 * @global wpdb $wpdb WordPress database abstraction object. 108 109 * @global array $wp_user_roles Used to set the 'roles' property value. 109 110 */ -
trunk/src/wp-includes/comment.php
r30110 r30122 25 25 * @since 1.2.0 26 26 * 27 * @global wpdb $wpdb WordPress database a ccess abstraction object.27 * @global wpdb $wpdb WordPress database abstraction object. 28 28 * 29 29 * @param string $author Comment author name. … … 156 156 * 157 157 * @since 2.0.0 158 * @uses $wpdb 158 * 159 * @global wpdb $wpdb WordPress database abstraction object. 159 160 * 160 161 * @param object|string|int $comment Comment to retrieve. … … 215 216 * 216 217 * @since 2.7.0 217 * @uses $wpdb 218 * 219 * @global wpdb $wpdb WordPress database abstraction object. 218 220 * 219 221 * @param mixed $args Optional. Array or string of options to override defaults. … … 758 760 * 759 761 * @since 1.5.0 760 * @uses $wpdb 762 * 763 * @global wpdb $wpdb WordPress database abstraction object. 761 764 * 762 765 * @param string $timezone Which timezone to use in reference to 'gmt', 'blog', … … 798 801 * 799 802 * @since 2.0.0 800 * @uses $wpdb 803 * 804 * @global wpdb $wpdb WordPress database abstraction object. 801 805 * 802 806 * @param int $post_id Optional. Comment amount in post if > 0, else total comments blog wide. … … 1016 1020 * 1017 1021 * @since 2.0.0 1018 * @uses $wpdb 1022 * 1023 * @global wpdb $wpdb WordPress database abstraction object. 1019 1024 * 1020 1025 * @param array $commentdata Contains information on the comment … … 1133 1138 * 1134 1139 * @since 2.3.0 1135 * @uses $wpdb 1140 * 1141 * @global wpdb $wpdb WordPress database abstraction object. 1136 1142 * 1137 1143 * @param string $ip Comment IP. … … 1436 1442 * 1437 1443 * @since 2.0.0 1438 * @uses $wpdb 1444 * 1445 * @global wpdb $wpdb WordPress database abstraction object. 1439 1446 * 1440 1447 * @param int $comment_id Comment ID … … 1811 1818 * 1812 1819 * @since 2.0.0 1813 * @uses $wpdb 1820 * 1821 * @global wpdb $wpdb WordPress database abstraction object. 1814 1822 * 1815 1823 * @param array $commentdata Contains information on the comment. … … 2106 2114 * 2107 2115 * @since 2.0.0 2108 * @uses $wpdb 2116 * 2117 * @global wpdb $wpdb WordPress database abstraction object. 2109 2118 * 2110 2119 * @param array $commentarr Contains information on the comment. … … 2244 2253 * 2245 2254 * @since 2.5.0 2246 * @uses $wpdb 2255 * 2256 * @global wpdb $wpdb WordPress database abstraction object. 2247 2257 * 2248 2258 * @param int $post_id Post ID … … 2358 2368 * 2359 2369 * @since 2.1.0 2360 * @uses $wpdb 2370 * 2371 * @global wpdb $wpdb WordPress database abstraction object. 2361 2372 */ 2362 2373 function do_all_pings() { … … 2389 2400 * 2390 2401 * @since 1.5.0 2391 * @uses $wpdb 2402 * 2403 * @global wpdb $wpdb WordPress database abstraction object. 2392 2404 * 2393 2405 * @param int $post_id Post ID to do trackbacks on. … … 2563 2575 * 2564 2576 * @since 0.71 2565 * @uses $wpdb 2577 * 2578 * @global wpdb $wpdb WordPress database abstraction object. 2566 2579 * 2567 2580 * @param string $trackback_url URL to send trackbacks. -
trunk/src/wp-includes/deprecated.php
r30105 r30122 2425 2425 * @since 2.2.0 2426 2426 * @deprecated 3.1.0 2427 * @uses $wpdb WordPress database object for queries 2427 * 2428 * @global wpdb $wpdb WordPress database abstraction object. 2428 2429 * @uses $blog_id The Blog id of the blog for those that use more than one blog 2429 2430 * -
trunk/src/wp-includes/functions.php
r30105 r30122 1088 1088 * @since 2.0.0 1089 1089 * 1090 * @global wpdb $wpdb WordPress database a ccess abstraction object.1090 * @global wpdb $wpdb WordPress database abstraction object. 1091 1091 * 1092 1092 * @return int Number of database queries. … … 1254 1254 * @since 2.1.0 1255 1255 * 1256 * @global wpdb $wpdb WordPress database a ccess abstraction object.1256 * @global wpdb $wpdb WordPress database abstraction object. 1257 1257 * 1258 1258 * @return bool Whether the blog is already installed. … … 3239 3239 * @since 2.3.2 3240 3240 * 3241 * @global wpdb $wpdb WordPress database a ccess abstraction object.3241 * @global wpdb $wpdb WordPress database abstraction object. 3242 3242 */ 3243 3243 function dead_db() { -
trunk/src/wp-includes/media.php
r30105 r30122 3261 3261 * @since 4.0.0 3262 3262 * 3263 * @global wpdb $wpdb WordPress database a ccess abstraction object.3263 * @global wpdb $wpdb WordPress database abstraction object. 3264 3264 * 3265 3265 * @param string $url The URL to resolve. -
trunk/src/wp-includes/meta.php
r30115 r30122 16 16 * 17 17 * @since 2.9.0 18 * @uses $wpdb WordPress database object for queries. 18 * 19 * @global wpdb $wpdb WordPress database abstraction object. 19 20 * 20 21 * @param string $meta_type Type of object metadata is for (e.g., comment, post, or user) … … 129 130 * 130 131 * @since 2.9.0 131 * @uses $wpdb WordPress database object for queries. 132 * 133 * @global wpdb $wpdb WordPress database abstraction object. 132 134 * 133 135 * @param string $meta_type Type of object metadata is for (e.g., comment, post, or user) … … 279 281 * 280 282 * @since 2.9.0 281 * @uses $wpdb WordPress database object for queries. 283 * 284 * @global wpdb $wpdb WordPress database abstraction object. 282 285 * 283 286 * @param string $meta_type Type of object metadata is for (e.g., comment, post, or user) … … 757 760 * 758 761 * @since 2.9.0 759 * @uses $wpdb WordPress database object for queries. 762 * 763 * @global wpdb $wpdb WordPress database abstraction object. 760 764 * 761 765 * @param string $meta_type Type of object metadata is for (e.g., comment, post, or user) … … 1501 1505 * 1502 1506 * @since 2.9.0 1503 * @uses $wpdb WordPress database object for queries. 1507 * 1508 * @global wpdb $wpdb WordPress database abstraction object. 1504 1509 * 1505 1510 * @param string $type Type of object to get metadata table for (e.g., comment, post, or user) -
trunk/src/wp-includes/pluggable.php
r30105 r30122 1485 1485 * @since 1.0.0 1486 1486 * 1487 * @ uses $wpdb1487 * @global wpdb $wpdb WordPress database abstraction object. 1488 1488 * 1489 1489 * @param int $comment_id Comment ID … … 2065 2065 * @since 2.5.0 2066 2066 * 2067 * @ uses $wpdb WordPress database object for queries2067 * @global wpdb $wpdb WordPress database abstraction object. 2068 2068 * 2069 2069 * @param string $password The plaintext new user password -
trunk/src/wp-includes/post.php
r30105 r30122 1790 1790 * @since 2.5.0 1791 1791 * 1792 * @global wpdb $wpdb WordPress database a ccess abstraction object.1792 * @global wpdb $wpdb WordPress database abstraction object. 1793 1793 * 1794 1794 * @param int $post_id Optional. Post ID to change post type. Default 0. … … 2555 2555 * @since 1.0.0 2556 2556 * 2557 * @global wpdb $wpdb WordPress database a ccess abstraction object.2557 * @global wpdb $wpdb WordPress database abstraction object. 2558 2558 * @see wp_delete_attachment() 2559 2559 * @see wp_trash_post() … … 2800 2800 * @since 2.9.0 2801 2801 * 2802 * @global wpdb $wpdb WordPress database a ccess abstraction object.2802 * @global wpdb $wpdb WordPress database abstraction object. 2803 2803 * 2804 2804 * @param int|WP_Post $post Optional. Post ID or post object. Defaults to global $post. … … 4742 4742 * @since 2.0.0 4743 4743 * 4744 * @global wpdb $wpdb WordPress database a ccess abstraction object.4744 * @global wpdb $wpdb WordPress database abstraction object. 4745 4745 * 4746 4746 * @param int $post_id Attachment ID. … … 5431 5431 * @since 2.0.0 5432 5432 * 5433 * @global wpdb $wpdb WordPress database a ccess abstraction object.5433 * @global wpdb $wpdb WordPress database abstraction object. 5434 5434 * 5435 5435 * @param int|WP_Post $post Post ID or post object to remove from the cache. … … 5589 5589 * 5590 5590 * @see wp_clear_scheduled_hook() 5591 * @global wpdb $wpdb WordPress database a ccess abstraction object.5591 * @global wpdb $wpdb WordPress database abstraction object. 5592 5592 * 5593 5593 * @param string $new_status New post status. … … 5781 5781 * @since 3.4.0 5782 5782 * 5783 * @global wpdb $wpdb WordPress database a ccess abstraction object.5783 * @global wpdb $wpdb WordPress database abstraction object. 5784 5784 */ 5785 5785 function wp_delete_auto_drafts() { -
trunk/src/wp-includes/query.php
r30105 r30122 2212 2212 * @access protected 2213 2213 * 2214 * @global wpdb $wpdb WordPress database a ccess abstraction object.2214 * @global wpdb $wpdb WordPress database abstraction object. 2215 2215 * 2216 2216 * @param string $orderby Alias for the field to order by. … … 4620 4620 * 4621 4621 * @since 2.1.0 4622 * 4622 4623 * @uses $wp_query 4623 * @ uses $wpdb4624 * @global wpdb $wpdb WordPress database abstraction object. 4624 4625 * 4625 4626 * @return null If no link is found, null is returned. -
trunk/src/wp-includes/taxonomy.php
r30108 r30122 563 563 * @since 2.3.0 564 564 * 565 * @ uses $wpdb565 * @global wpdb $wpdb WordPress database abstraction object. 566 566 * 567 567 * @param int|array $term_ids Term id or array of term ids of terms that will be used … … 1262 1262 * @since 2.3.0 1263 1263 * 1264 * @ uses $wpdb1264 * @global wpdb $wpdb WordPress database abstraction object. 1265 1265 * @see sanitize_term_field() The $context param lists the available values for get_term_by() $filter param. 1266 1266 * … … 1357 1357 * @since 2.3.0 1358 1358 * 1359 * @ uses $wpdb1359 * @global wpdb $wpdb WordPress database abstraction object. 1360 1360 * @see sanitize_term_field() The $context param lists the available values for get_term_by() $filter param. 1361 1361 * … … 1447 1447 * @since 2.3.0 1448 1448 * 1449 * @ uses $wpdb1449 * @global wpdb $wpdb WordPress database abstraction object. 1450 1450 * 1451 1451 * @param string $term_id ID of Term to get children … … 1554 1554 * @since 2.3.0 1555 1555 * 1556 * @global wpdb $wpdb WordPress database a ccess abstraction object.1556 * @global wpdb $wpdb WordPress database abstraction object. 1557 1557 * 1558 1558 * @param string|array $taxonomies Taxonomy name or list of Taxonomy names. … … 2004 2004 * @since 3.0.0 2005 2005 * 2006 * @ uses $wpdb2006 * @global wpdb $wpdb WordPress database abstraction object. 2007 2007 * 2008 2008 * @param int|string $term The term to check … … 2144 2144 * @since 2.3.0 2145 2145 * 2146 * @ uses $wpdb2146 * @global wpdb $wpdb WordPress database abstraction object. 2147 2147 * 2148 2148 * @param string $field Term field to sanitize … … 2364 2364 * @since 2.3.0 2365 2365 * 2366 * @ uses $wpdb2366 * @global wpdb $wpdb WordPress database abstraction object. 2367 2367 * 2368 2368 * @param int $term Term ID … … 2563 2563 * 2564 2564 * @since 2.3.0 2565 * @uses $wpdb 2565 * 2566 * @global wpdb $wpdb WordPress database abstraction object. 2566 2567 * 2567 2568 * @param int|array $object_ids The ID(s) of the object(s) to retrieve. … … 2734 2735 * or the term slug and name are not unique, a WP_Error object will be returned. 2735 2736 * 2736 * @global wpdb $wpdb The WordPress databaseobject.2737 * @global wpdb $wpdb WordPress database abstraction object. 2737 2738 2738 2739 * @since 2.3.0 … … 3090 3091 * 3091 3092 * @since 3.6.0 3092 * @uses $wpdb 3093 * 3094 * @global wpdb $wpdb WordPress database abstraction object. 3093 3095 * 3094 3096 * @param int $object_id The ID of the object from which the terms will be removed. … … 3178 3180 * 3179 3181 * @since 2.3.0 3180 * @uses $wpdb 3182 * 3183 * @global wpdb $wpdb WordPress database abstraction object. 3181 3184 * 3182 3185 * @param string $slug The string that will be tried for a unique slug … … 3250 3253 * @since 2.3.0 3251 3254 * 3252 * @ uses $wpdb3255 * @global wpdb $wpdb WordPress database abstraction object. 3253 3256 * 3254 3257 * @param int $term_id The ID of the term … … 3495 3498 * 3496 3499 * @since 2.3.0 3497 * @uses $wpdb 3500 * 3501 * @global wpdb $wpdb WordPress database abstraction object. 3498 3502 * 3499 3503 * @param int|array $terms The term_taxonomy_id of the terms … … 3608 3612 * 3609 3613 * @since 2.3.0 3610 * @uses $wpdb 3614 * 3615 * @global wpdb $wpdb WordPress database abstraction object. 3611 3616 * 3612 3617 * @param int|array $ids Single or list of Term IDs … … 3871 3876 * @access private 3872 3877 * @since 2.3.0 3873 * @uses $wpdb 3878 * 3879 * @global wpdb $wpdb WordPress database abstraction object. 3874 3880 * 3875 3881 * @param array $terms List of Term IDs … … 3935 3941 * @access private 3936 3942 * @since 2.3.0 3937 * @uses $wpdb 3943 * 3944 * @global wpdb $wpdb WordPress database abstraction object. 3938 3945 * 3939 3946 * @param array $terms List of Term taxonomy IDs … … 3983 3990 * 3984 3991 * @since 3.3.0 3985 * @uses $wpdb 3992 * 3993 * @global wpdb $wpdb WordPress database abstraction object. 3986 3994 * 3987 3995 * @param array $terms List of Term taxonomy IDs -
trunk/src/wp-includes/user.php
r30105 r30122 807 807 * @since 3.2.0 808 808 * 809 * @global wpdb $wpdb WordPress database object.809 * @global wpdb $wpdb WordPress database abstraction object. 810 810 * 811 811 * @param string $sql The SELECT FOUND_ROWS() query for the current WP_User_Query. -
trunk/src/wp-login.php
r30033 r30122 264 264 * Handles sending password retrieval email to user. 265 265 * 266 * @uses $wpdb WordPress Database object 266 * @global wpdb $wpdb WordPress database abstraction object. 267 * @global PasswordHash $wp_hasher Portable PHP password hashing framework. 267 268 * 268 269 * @return bool|WP_Error True: when finish. WP_Error on error
Note: See TracChangeset
for help on using the changeset viewer.