Changeset 31212
- Timestamp:
- 01/16/2015 07:02:26 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-base.php
r31208 r31212 169 169 * 170 170 * @param string $folder the folder to locate. 171 * @return string The location of the remote path.171 * @return string|false The location of the remote path, false on failure. 172 172 */ 173 173 public function find_folder( $folder ) { … … 237 237 * @param string $base The folder to start searching from. 238 238 * @param bool $loop If the function has recursed, Internal use only. 239 * @return string The location of the remote path.239 * @return string|false The location of the remote path, false to cease looping. 240 240 */ 241 241 public function search_for_folder( $folder, $base = '.', $loop = false ) { -
trunk/src/wp-admin/includes/file.php
r31090 r31212 192 192 * @see wp_handle_upload_error 193 193 * 194 * @param array $file Reference to a single element of $_FILES. Call the function once for 195 * each uploaded file. 196 * @param array $overrides An associative array of names => values to override default variables. 197 * @param string $time Time formatted in 'yyyy/mm'. 198 * @param string $action Expected value for $_POST['action']. 194 * @param array $file Reference to a single element of $_FILES. Call the function once for each uploaded file. 195 * @param array|false $overrides An associative array of names => values to override default variables. Default false. 196 * @param string $time Time formatted in 'yyyy/mm'. 197 * @param string $action Expected value for $_POST['action']. 199 198 * @return array On success, returns an associative array of file attributes. On failure, returns 200 199 * $overrides['upload_error_handler'](&$file, $message ) or array( 'error'=>$message ). -
trunk/src/wp-includes/deprecated.php
r31188 r31212 2162 2162 * @param callback $output_callback Run when widget is called. 2163 2163 * @param string $classname Classname widget option. 2164 * @param mixed $params ,... Widget parameters.2164 * @param mixed $params ,... Widget parameters. 2165 2165 */ 2166 2166 function register_sidebar_widget($name, $output_callback, $classname = '') { -
trunk/src/wp-includes/functions.php
r31170 r31212 870 870 * @since 2.0.0 871 871 * 872 * @param string $query_vars Default WP_Query arguments.872 * @param string|array $query_vars Default WP_Query arguments. 873 873 */ 874 874 function wp( $query_vars = '' ) { -
trunk/src/wp-includes/meta.php
r31090 r31212 450 450 * @param bool $single Optional, default is false. If true, return only the first value of the 451 451 * specified meta_key. This parameter has no effect if meta_key is not specified. 452 * @return string|arraySingle metadata value, or array of values452 * @return mixed Single metadata value, or array of values 453 453 */ 454 454 function get_metadata($meta_type, $object_id, $meta_key = '', $single = false) { -
trunk/src/wp-includes/query.php
r31151 r31212 3943 3943 * @access public 3944 3944 * 3945 * @param string $query URL query string.3945 * @param string|array $query URL query string or array of vars. 3946 3946 */ 3947 3947 public function __construct($query = '') {
Note: See TracChangeset
for help on using the changeset viewer.