Changeset 16469
- Timestamp:
- 11/18/2010 07:12:48 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-list-table.php
r16465 r16469 738 738 * @access protected 739 739 * 740 * @param $object $item The current item740 * @param object $item The current item 741 741 */ 742 742 function single_row( $item ) { … … 755 755 * @access protected 756 756 * 757 * @param $object $item The current item757 * @param object $item The current item 758 758 */ 759 759 function single_row_columns( $item ) { -
trunk/wp-admin/includes/plugin-install.php
r16061 r16469 158 158 * 159 159 * @since 2.7.0 160 *161 * @param array $plugins List of plugins.162 * @param int $total_plugins Number of plugins.163 160 */ 164 161 function display_plugins_table() { -
trunk/wp-includes/cache.php
r16288 r16469 172 172 * 173 173 * @since 2.6.0 174 *175 * @param string|array $groups A group or an array of groups to add176 174 */ 177 175 function wp_cache_reset() { -
trunk/wp-includes/category-template.php
r16430 r16469 1175 1175 * @param string|int|array $term Optional. The term name/term_id/slug or array of them to check for. 1176 1176 * @param string $taxonomy Taxonomy name 1177 * @param int| post object Optional.Post to check instead of the current post.1177 * @param int|object $post Optional. Post to check instead of the current post. 1178 1178 * @return bool True if the current post has any of the given tags (or any tag, if no tag specified). 1179 1179 */ -
trunk/wp-includes/class.wp-dependencies.php
r15639 r16469 38 38 * Process the items passed to it or the queue. Processes all dependencies. 39 39 * 40 * @param mixed handles (optional) items to be processed.(void) processes queue, (string) process that item, (array of strings) process those items40 * @param mixed $handles (optional) items to be processed. (void) processes queue, (string) process that item, (array of strings) process those items 41 41 * @return array Items that have been processed 42 42 */ 43 43 function do_items( $handles = false, $group = false ) { 44 // Print the queue if nothing is passed. If a string is passed, print that script.If an array is passed, print those scripts.44 // Print the queue if nothing is passed. If a string is passed, print that script. If an array is passed, print those scripts. 45 45 $handles = false === $handles ? $this->queue : (array) $handles; 46 46 $this->all_deps( $handles ); … … 73 73 * Recursively builds array of items to process taking dependencies into account. Does NOT catch infinite loops. 74 74 * 75 76 * @param mixed handles Accepts (string) dep name or (array of strings) dep names77 * @param bool recursion Used internally when function calls itself75 * 76 * @param mixed $handles Accepts (string) dep name or (array of strings) dep names 77 * @param bool $recursion Used internally when function calls itself 78 78 */ 79 79 function all_deps( $handles, $recursion = false, $group = false ) { … … 126 126 * Adds the item only if no item of that name already exists 127 127 * 128 * @param string handle Script name129 * @param string src Script url130 * @param array deps (optional) Array of script names on which this script depends131 * @param string ver (optional) Script version (used for cache busting)128 * @param string $handle Script name 129 * @param string $src Script url 130 * @param array $deps (optional) Array of script names on which this script depends 131 * @param string $ver (optional) Script version (used for cache busting) 132 132 * @return array Hierarchical array of dependencies 133 133 */ … … 144 144 * Adds data only if script has already been added 145 145 * 146 * @param string handle Script name147 * @param string data_name Name of object in which to store extra data148 * @param array data Array of extra data146 * @param string $handle Script name 147 * @param string $data_name Name of object in which to store extra data 148 * @param array $data Array of extra data 149 149 * @return bool success 150 150 */ -
trunk/wp-includes/class.wp-scripts.php
r16438 r16469 40 40 * Prints the scripts passed to it or the print queue. Also prints all necessary dependencies. 41 41 * 42 * @param mixed handles (optional) Scripts to be printed. (void) prints queue, (string) prints that script, (array of strings) prints those scripts.43 * @param int group (optional) If scripts were queued in groups prints this group number.42 * @param mixed $handles (optional) Scripts to be printed. (void) prints queue, (string) prints that script, (array of strings) prints those scripts. 43 * @param int $group (optional) If scripts were queued in groups prints this group number. 44 44 * @return array Scripts that have been printed 45 45 */ … … 136 136 * Localizes only if script has already been added 137 137 * 138 * @param string handle Script name139 * @param string object_name Name of JS object to hold l10n info140 * @param array l10n Array of JS var name => localized string138 * @param string $handle Script name 139 * @param string $object_name Name of JS object to hold l10n info 140 * @param array $l10n Array of JS var name => localized string 141 141 * @return bool Successful localization 142 142 */ -
trunk/wp-includes/formatting.php
r16438 r16469 1578 1578 * @since 3.1.0 1579 1579 * @access private 1580 * @param $match the preg_replace_callback matches array1580 * @param array $match the preg_replace_callback matches array 1581 1581 */ 1582 1582 function _wp_iso_convert( $match ) { -
trunk/wp-includes/functions.php
r16438 r16469 4361 4361 * 4362 4362 * @param callback $callback function that accepts ( ID, $callback_args ) and outputs parent_ID 4363 * @param $start The ID to start the loop check at4364 * @param $start_parent the parent_ID of $start to use instead of calling $callback( $start ).Use null to always use $callback4363 * @param int $start The ID to start the loop check at 4364 * @param int $start_parent the parent_ID of $start to use instead of calling $callback( $start ). Use null to always use $callback 4365 4365 * @param array $callback_args optional additional arguments to send to $callback 4366 4366 * @return array IDs of all members of loop … … 4385 4385 * 4386 4386 * @param callback $callback function that accupts ( ID, callback_arg, ... ) and outputs parent_ID 4387 * @param $start The ID to start the loop check at4387 * @param int $start The ID to start the loop check at 4388 4388 * @param array $override an array of ( ID => parent_ID, ... ) to use instead of $callback 4389 4389 * @param array $callback_args optional additional arguments to send to $callback -
trunk/wp-includes/ms-blogs.php
r16359 r16469 665 665 * @since MU 666 666 * 667 * @param $deprecated Not used667 * @param mixed $deprecated Not used 668 668 * @param int $start The offset 669 669 * @param int $quantity The maximum number of blogs to retrieve. Default is 40. … … 672 672 function get_last_updated( $deprecated = '', $start = 0, $quantity = 40 ) { 673 673 global $wpdb; 674 675 if ( ! empty( $deprecated ) ) 676 _deprecated_argument( __FUNCTION__, 'MU' ); // never used 677 674 678 return $wpdb->get_results( $wpdb->prepare("SELECT blog_id, domain, path FROM $wpdb->blogs WHERE site_id = %d AND public = '1' AND archived = '0' AND mature = '0' AND spam = '0' AND deleted = '0' AND last_updated != '0000-00-00 00:00:00' ORDER BY last_updated DESC limit %d, %d", $wpdb->siteid, $start, $quantity ) , ARRAY_A ); 675 679 } -
trunk/wp-includes/post-template.php
r16446 r16469 676 676 * @access private 677 677 * 678 * @param $i Page number.678 * @param int $i Page number. 679 679 * @return string Link. 680 680 */ -
trunk/wp-includes/post.php
r16438 r16469 5043 5043 * @since 2.0.0 5044 5044 * 5045 * @param string A post type string, defaults to 'post'. 5045 * @param string $post_type A post type string, defaults to 'post'. 5046 * @param bool $create_in_db If true then also insert an auto-draft into database 5046 5047 * @return object stdClass object containing all the default post data as attributes 5047 5048 */
Note: See TracChangeset
for help on using the changeset viewer.