Full @since's for 3.1.0.

git-svn-id: http://svn.automattic.com/wordpress/trunk@15842 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-10-19 07:38:42 +00:00
parent 7c39422697
commit 76e493c281
5 changed files with 13 additions and 18 deletions

View File

@ -651,7 +651,7 @@ class WP_Posts_Table extends WP_List_Table {
/** /**
* Outputs the hidden row displayed when inline editing * Outputs the hidden row displayed when inline editing
* *
* @since 3.1 * @since 3.1.0
*/ */
function inline_edit() { function inline_edit() {
global $mode; global $mode;
@ -1719,7 +1719,7 @@ class WP_Terms_Table extends WP_List_Table {
/** /**
* Outputs the hidden row displayed when inline editing * Outputs the hidden row displayed when inline editing
* *
* @since 3.1 * @since 3.1.0
*/ */
function inline_edit() { function inline_edit() {
global $tax; global $tax;

View File

@ -4341,16 +4341,14 @@ function _wp_mysql_week( $column ) {
/** /**
* Finds hierarchy loops using a callback function that maps objects to parents. * Finds hierarchy loops using a callback function that maps objects to parents.
* *
* @since 3.1 * @since 3.1.0
* @access private
* *
* @param callback $callback function that accepts ( ID, callback_arg, ... ) and outputs parent_ID * @param callback $callback function that accepts ( ID, callback_arg, ... ) and outputs parent_ID
* @param $start The ID to start the loop check at * @param $start The ID to start the loop check at
* @param $start_parent the parent_ID of $start to use instead of calling $callback( $start ). Use null to always use $callback * @param $start_parent the parent_ID of $start to use instead of calling $callback( $start ). Use null to always use $callback
* @param array $override an array of ( ID => parent_ID, ... ) to use instead of $callback * @param array $override an array of ( ID => parent_ID, ... ) to use instead of $callback
* @param array $callback_arg optional additional arguments to send to $callback * @param array $callback_arg optional additional arguments to send to $callback
*
* @internal
*
* @return array IDs of all members of loop * @return array IDs of all members of loop
*/ */
function wp_find_hierarchy_loop( $callback, $start, $start_parent, $callback_args = array() ) { function wp_find_hierarchy_loop( $callback, $start, $start_parent, $callback_args = array() ) {
@ -4368,7 +4366,8 @@ function wp_find_hierarchy_loop( $callback, $start, $start_parent, $callback_arg
* For every step of the algorithm, the hare takes two steps and the tortoise one. * For every step of the algorithm, the hare takes two steps and the tortoise one.
* If the hare ever laps the tortoise, there must be a loop. * If the hare ever laps the tortoise, there must be a loop.
* *
* @since 3.1 * @since 3.1.0
* @access private
* *
* @param callback $callback function that accupts ( ID, callback_arg, ... ) and outputs parent_ID * @param callback $callback function that accupts ( ID, callback_arg, ... ) and outputs parent_ID
* @param $start The ID to start the loop check at * @param $start The ID to start the loop check at
@ -4377,9 +4376,6 @@ function wp_find_hierarchy_loop( $callback, $start, $start_parent, $callback_arg
* @param bool $_return_loop Return loop members or just detect presence of loop? * @param bool $_return_loop Return loop members or just detect presence of loop?
* Only set to true if you already know the given $start is part of a loop * Only set to true if you already know the given $start is part of a loop
* (otherwise the returned array might include branches) * (otherwise the returned array might include branches)
*
* @internal
*
* @return mixed scalar ID of some arbitrary member of the loop, or array of IDs of all members of loop if $_return_loop * @return mixed scalar ID of some arbitrary member of the loop, or array of IDs of all members of loop if $_return_loop
*/ */
function wp_find_hierarchy_loop_tortoise_hare( $callback, $start, $override = array(), $callback_args = array(), $_return_loop = false ) { function wp_find_hierarchy_loop_tortoise_hare( $callback, $start, $override = array(), $callback_args = array(), $_return_loop = false ) {

View File

@ -675,7 +675,7 @@ function edit_tag_link( $link = '', $before = '', $after = '', $tag = null ) {
/** /**
* Retrieve edit term url. * Retrieve edit term url.
* *
* @since 3.1 * @since 3.1.0
* *
* @param int $term_id Term ID * @param int $term_id Term ID
* @param string $taxonomy Taxonomy * @param string $taxonomy Taxonomy
@ -706,7 +706,7 @@ function get_edit_term_link( $term_id, $taxonomy, $object_type = '' ) {
/** /**
* Display or retrieve edit term link with formatting. * Display or retrieve edit term link with formatting.
* *
* @since 3.1 * @since 3.1.0
* *
* @param string $link Optional. Anchor text. * @param string $link Optional. Anchor text.
* @param string $before Optional. Display before edit link. * @param string $before Optional. Display before edit link.

View File

@ -494,8 +494,7 @@ function get_post_format( $post ) {
/** /**
* Check if a post has a particular format * Check if a post has a particular format
* *
* @since 3.1 * @since 3.1.0
*
* @uses has_term() * @uses has_term()
* *
* @param string $format The format to check for * @param string $format The format to check for
@ -4803,7 +4802,7 @@ function _show_post_preview() {
/** /**
* Returns the post's parent's post_ID * Returns the post's parent's post_ID
* *
* @since 3.1 * @since 3.1.0
* *
* @param int $post_id * @param int $post_id
* *
@ -4822,7 +4821,7 @@ function wp_get_post_parent_id( $post_ID ) {
* *
* Attached to the wp_insert_post_parent filter. * Attached to the wp_insert_post_parent filter.
* *
* @since 3.1 * @since 3.1.0
* @uses wp_find_hierarchy_loop() * @uses wp_find_hierarchy_loop()
* *
* @param int $post_parent ID of the parent for the post we're checking. * @param int $post_parent ID of the parent for the post we're checking.

View File

@ -2899,7 +2899,7 @@ function get_terms_to_edit( $post_id, $taxonomy = 'post_tag' ) {
/** /**
* Returns the term's parent's term_ID * Returns the term's parent's term_ID
* *
* @since 3.1 * @since 3.1.0
* *
* @param int $term_id * @param int $term_id
* @param string $taxonomy * @param string $taxonomy
@ -2919,7 +2919,7 @@ function wp_get_term_taxonomy_parent_id( $term_id, $taxonomy ) {
* *
* Attached to the wp_update_term_parent filter. * Attached to the wp_update_term_parent filter.
* *
* @since 3.1 * @since 3.1.0
* @uses wp_find_hierarchy_loop() * @uses wp_find_hierarchy_loop()
* *
* @param int $parent term_id of the parent for the term we're checking. * @param int $parent term_id of the parent for the term we're checking.