Changeset 41688
- Timestamp:
- 10/02/2017 10:13:04 PM (6 years ago)
- Location:
- trunk/src
- Files:
-
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-walker-category-checklist.php
r41221 r41688 28 28 * @since 2.5.1 29 29 * 30 * @param string $output Passed by reference. Used to append additional content.30 * @param string $output Used to append additional content (passed by reference). 31 31 * @param int $depth Depth of category. Used for tab indentation. 32 32 * @param array $args An array of arguments. @see wp_terms_checklist() … … 44 44 * @since 2.5.1 45 45 * 46 * @param string $output Passed by reference. Used to append additional content.46 * @param string $output Used to append additional content (passed by reference). 47 47 * @param int $depth Depth of category. Used for tab indentation. 48 48 * @param array $args An array of arguments. @see wp_terms_checklist() … … 60 60 * @since 2.5.1 61 61 * 62 * @param string $output Passed by reference. Used to append additional content.62 * @param string $output Used to append additional content (passed by reference). 63 63 * @param object $category The current term object. 64 64 * @param int $depth Depth of the term in reference to parents. Default 0. … … 115 115 * @since 2.5.1 116 116 * 117 * @param string $output Passed by reference. Used to append additional content.117 * @param string $output Used to append additional content (passed by reference). 118 118 * @param object $category The current term object. 119 119 * @param int $depth Depth of the term in reference to parents. Default 0. -
trunk/src/wp-admin/includes/class-walker-nav-menu-checklist.php
r35202 r41688 32 32 * @since 3.0.0 33 33 * 34 * @param string $output Passed by reference. Used to append additional content.34 * @param string $output Used to append additional content (passed by reference). 35 35 * @param int $depth Depth of page. Used for padding. 36 36 * @param array $args Not used. … … 48 48 * @since 3.0.0 49 49 * 50 * @param string $output Passed by reference. Used to append additional content.50 * @param string $output Used to append additional content (passed by reference). 51 51 * @param int $depth Depth of page. Used for padding. 52 52 * @param array $args Not used. … … 66 66 * @global int $_nav_menu_placeholder 67 67 * 68 * @param string $output Passed by reference. Used to append additional content.68 * @param string $output Used to append additional content (passed by reference). 69 69 * @param object $item Menu item data object. 70 70 * @param int $depth Depth of menu item. Used for padding. -
trunk/src/wp-admin/includes/class-walker-nav-menu-edit.php
r41227 r41688 50 50 * @global int $_wp_nav_menu_max_depth 51 51 * 52 * @param string $output Passed by reference. Used to append additional content.52 * @param string $output Used to append additional content (passed by reference). 53 53 * @param object $item Menu item data object. 54 54 * @param int $depth Depth of menu item. Used for padding. -
trunk/src/wp-admin/includes/credits.php
r41605 r41688 56 56 * @since 3.2.0 57 57 * 58 * @param string $display_name The contributor's display name , passed by reference.58 * @param string $display_name The contributor's display name (passed by reference). 59 59 * @param string $username The contributor's username. 60 60 * @param string $profiles URL to the contributor's WordPress.org profile page. … … 70 70 * @since 3.2.0 71 71 * 72 * @param string $data External library data , passed by reference.72 * @param string $data External library data (passed by reference). 73 73 */ 74 74 function _wp_credits_build_object_link( &$data ) { -
trunk/src/wp-includes/cache.php
r41162 r41688 113 113 * @param bool $force Optional. Whether to force an update of the local cache from the persistent 114 114 * cache. Default false. 115 * @param bool $found Optional. Whether the key was found in the cache . Disambiguates a return of false,116 * a storable value. Passed by reference. Default null.115 * @param bool $found Optional. Whether the key was found in the cache (passed by reference). 116 * Disambiguates a return of false, a storable value. Default null. 117 117 * @return bool|mixed False on failure to retrieve contents or the cache 118 118 * contents on success … … 517 517 * @param string $force Optional. Unused. Whether to force a refetch rather than relying on the local 518 518 * cache. Default false. 519 * @param bool $found Optional. Whether the key was found in the cache. Disambiguates a return of520 * false, a storable value. Passed by reference. Default null.519 * @param bool $found Optional. Whether the key was found in the cache (passed by reference). 520 * Disambiguates a return of false, a storable value. Default null. 521 521 * @return false|mixed False on failure to retrieve contents or the cache contents on success. 522 522 */ -
trunk/src/wp-includes/class-walker-category-dropdown.php
r41162 r41688 45 45 * @see Walker::start_el() 46 46 * 47 * @param string $output Passed by reference. Used to append additional content.47 * @param string $output Used to append additional content (passed by reference). 48 48 * @param object $category Category data object. 49 49 * @param int $depth Depth of category. Used for padding. -
trunk/src/wp-includes/class-walker-category.php
r41162 r41688 85 85 * @see Walker::start_el() 86 86 * 87 * @param string $output Passed by reference. Used to append additional content.87 * @param string $output Used to append additional content (passed by reference). 88 88 * @param object $category Category data object. 89 89 * @param int $depth Optional. Depth of category in reference to parents. Default 0. … … 214 214 * @see Walker::end_el() 215 215 * 216 * @param string $output Passed by reference. Used to append additional content.216 * @param string $output Used to append additional content (passed by reference). 217 217 * @param object $page Not used. 218 218 * @param int $depth Optional. Depth of category. Not used. -
trunk/src/wp-includes/class-walker-comment.php
r41162 r41688 46 46 * @global int $comment_depth 47 47 * 48 * @param string $output Passed by reference. Used to append additional content.48 * @param string $output Used to append additional content (passed by reference). 49 49 * @param int $depth Optional. Depth of the current comment. Default 0. 50 50 * @param array $args Optional. Uses 'style' argument for type of HTML list. Default empty array. … … 74 74 * @global int $comment_depth 75 75 * 76 * @param string $output Passed by reference. Used to append additional content.76 * @param string $output Used to append additional content (passed by reference). 77 77 * @param int $depth Optional. Depth of the current comment. Default 0. 78 78 * @param array $args Optional. Will only append content if style argument value is 'ol' or 'ul'. -
trunk/src/wp-includes/class-walker-nav-menu.php
r41162 r41688 44 44 * @see Walker::start_lvl() 45 45 * 46 * @param string $output Passed by reference. Used to append additional content.46 * @param string $output Used to append additional content (passed by reference). 47 47 * @param int $depth Depth of menu item. Used for padding. 48 48 * @param stdClass $args An object of wp_nav_menu() arguments. … … 83 83 * @see Walker::end_lvl() 84 84 * 85 * @param string $output Passed by reference. Used to append additional content.85 * @param string $output Used to append additional content (passed by reference). 86 86 * @param int $depth Depth of menu item. Used for padding. 87 87 * @param stdClass $args An object of wp_nav_menu() arguments. … … 107 107 * @see Walker::start_el() 108 108 * 109 * @param string $output Passed by reference. Used to append additional content.109 * @param string $output Used to append additional content (passed by reference). 110 110 * @param WP_Post $item Menu item data object. 111 111 * @param int $depth Depth of menu item. Used for padding. … … 246 246 * @see Walker::end_el() 247 247 * 248 * @param string $output Passed by reference. Used to append additional content.248 * @param string $output Used to append additional content (passed by reference). 249 249 * @param WP_Post $item Page data object. Not used. 250 250 * @param int $depth Depth of page. Not Used. -
trunk/src/wp-includes/class-walker-page.php
r41162 r41688 45 45 * @see Walker::start_lvl() 46 46 * 47 * @param string $output Passed by reference. Used to append additional content.47 * @param string $output Used to append additional content (passed by reference). 48 48 * @param int $depth Optional. Depth of page. Used for padding. Default 0. 49 49 * @param array $args Optional. Arguments for outputting the next level. … … 69 69 * @see Walker::end_lvl() 70 70 * 71 * @param string $output Passed by reference. Used to append additional content.71 * @param string $output Used to append additional content (passed by reference). 72 72 * @param int $depth Optional. Depth of page. Used for padding. Default 0. 73 73 * @param array $args Optional. Arguments for outputting the end of the current level. -
trunk/src/wp-includes/class-wp-meta-query.php
r41162 r41688 382 382 * @since 4.1.0 383 383 * 384 * @param array $query Query to parse , passed by reference.384 * @param array $query Query to parse (passed by reference). 385 385 * @param int $depth Optional. Number of tree levels deep we currently are. 386 386 * Used to calculate indentation. Default 0. … … 467 467 * @global wpdb $wpdb WordPress database abstraction object. 468 468 * 469 * @param array $clause Query clause , passed by reference.469 * @param array $clause Query clause (passed by reference). 470 470 * @param array $parent_query Parent query array. 471 471 * @param string $clause_key Optional. The array key used to name the clause in the original `$meta_query` -
trunk/src/wp-includes/class-wp-query.php
r41686 r41688 2752 2752 * @param array|null $posts Return an array of post data to short-circuit WP's query, 2753 2753 * or null to allow WP to run its normal queries. 2754 * @param WP_Query $this The WP_Query instance , passed by reference.2754 * @param WP_Query $this The WP_Query instance (passed by reference). 2755 2755 */ 2756 2756 $this->posts = apply_filters_ref_array( 'posts_pre_query', array( null, &$this ) ); -
trunk/src/wp-includes/class-wp-rewrite.php
r41162 r41688 1393 1393 * @since 1.5.0 1394 1394 * 1395 * @param WP_Rewrite $this Current WP_Rewrite instance , passed by reference.1395 * @param WP_Rewrite $this Current WP_Rewrite instance (passed by reference). 1396 1396 */ 1397 1397 do_action_ref_array( 'generate_rewrite_rules', array( &$this ) ); -
trunk/src/wp-includes/class-wp-tax-query.php
r41162 r41688 292 292 * @since 4.1.0 293 293 * 294 * @param array $query Query to parse , passed by reference.294 * @param array $query Query to parse (passed by reference). 295 295 * @param int $depth Optional. Number of tree levels deep we currently are. 296 296 * Used to calculate indentation. Default 0. … … 375 375 * @global wpdb $wpdb The WordPress database abstraction object. 376 376 * 377 * @param array $clause Query clause , passed by reference.377 * @param array $clause Query clause (passed by reference). 378 378 * @param array $parent_query Parent query array. 379 379 * @return array { -
trunk/src/wp-includes/class-wp-theme.php
r41607 r41688 1427 1427 * @static 1428 1428 * 1429 * @param array $themes Array of themes to sort , passed by reference.1429 * @param array $themes Array of themes to sort (passed by reference). 1430 1430 */ 1431 1431 public static function sort_by_name( &$themes ) { -
trunk/src/wp-includes/class-wp-walker.php
r41162 r41688 56 56 * @abstract 57 57 * 58 * @param string $output Passed by reference. Used to append additional content.58 * @param string $output Used to append additional content (passed by reference). 59 59 * @param int $depth Depth of the item. 60 60 * @param array $args An array of additional arguments. … … 71 71 * @abstract 72 72 * 73 * @param string $output Passed by reference. Used to append additional content.73 * @param string $output Used to append additional content (passed by reference). 74 74 * @param int $depth Depth of the item. 75 75 * @param array $args An array of additional arguments. … … 86 86 * @abstract 87 87 * 88 * @param string $output Passed by reference. Used to append additional content.88 * @param string $output Used to append additional content (passed by reference). 89 89 * @param object $object The data object. 90 90 * @param int $depth Depth of the item. … … 102 102 * @abstract 103 103 * 104 * @param string $output Passed by reference. Used to append additional content.104 * @param string $output Used to append additional content (passed by reference). 105 105 * @param object $object The data object. 106 106 * @param int $depth Depth of the item. … … 122 122 * 123 123 * @param object $element Data object. 124 * @param array $children_elements List of elements to continue traversing .124 * @param array $children_elements List of elements to continue traversing (passed by reference). 125 125 * @param int $max_depth Max depth to traverse. 126 126 * @param int $depth Depth of current element. 127 127 * @param array $args An array of arguments. 128 * @param string $output Passed by reference. Used to append additional content.128 * @param string $output Used to append additional content (passed by reference). 129 129 */ 130 130 public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) { -
trunk/src/wp-includes/class-wp-widget.php
r41162 r41688 519 519 * @since 2.8.0 520 520 * 521 * @param WP_Widget $this The widget instance , passed by reference.521 * @param WP_Widget $this The widget instance (passed by reference). 522 522 * @param null $return Return null if new fields are added. 523 523 * @param array $instance An array of the widget's settings. -
trunk/src/wp-includes/ms-functions.php
r41668 r41688 2160 2160 * @since MU (3.0.0) 2161 2161 * 2162 * @param PHPMailer $phpmailer The PHPMailer instance , passed by reference.2162 * @param PHPMailer $phpmailer The PHPMailer instance (passed by reference). 2163 2163 */ 2164 2164 function fix_phpmailer_messageid( $phpmailer ) { -
trunk/src/wp-includes/post.php
r41651 r41688 4449 4449 * @since 2.0.0 4450 4450 * 4451 * @param array $pages Posts array , passed by reference.4451 * @param array $pages Posts array (passed by reference). 4452 4452 * @param int $page_id Optional. Parent page ID. Default 0. 4453 4453 * @return array A list arranged by hierarchy. Children immediately follow their parents. … … 4480 4480 * 4481 4481 * @param int $page_id Page ID. 4482 * @param array $children Parent-children relations , passed by reference.4483 * @param array $result Result , passed by reference.4482 * @param array $children Parent-children relations (passed by reference). 4483 * @param array $result Result (passed by reference). 4484 4484 */ 4485 4485 function _page_traverse_name( $page_id, &$children, &$result ){ … … 5732 5732 * @since 1.5.1 5733 5733 * 5734 * @param array $posts Array of post objects , passed by reference.5734 * @param array $posts Array of post objects (passed by reference). 5735 5735 */ 5736 5736 function update_post_cache( &$posts ) { -
trunk/src/wp-includes/taxonomy.php
r41684 r41688 3325 3325 * @global wpdb $wpdb WordPress database abstraction object. 3326 3326 * 3327 * @param array $terms List of term objects , passed by reference.3327 * @param array $terms List of term objects (passed by reference). 3328 3328 * @param string $taxonomy Term context. 3329 3329 */ -
trunk/src/wp-includes/user.php
r41654 r41688 58 58 * @todo Decide whether to deprecate the wp_authenticate action. 59 59 * 60 * @param string $user_login Username , passed by reference.61 * @param string $user_password User password , passed by reference.60 * @param string $user_login Username (passed by reference). 61 * @param string $user_password User password (passed by reference). 62 62 */ 63 63 do_action_ref_array( 'wp_authenticate', array( &$credentials['user_login'], &$credentials['user_password'] ) );
Note: See TracChangeset
for help on using the changeset viewer.