Changeset 36250
- Timestamp:
- 01/10/2016 01:25:44 AM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/custom-header.php
r35905 r36250 262 262 * 263 263 * @since 3.0.0 264 * 265 * @param string $type The header type. One of 'default' (for the Uploaded Images control) 266 * or 'uploaded' (for the Uploaded Images control). 264 267 */ 265 268 public function show_header_selector( $type = 'default' ) { … … 970 973 * or provide an array of uploaded header data (either new, or from media library). 971 974 * 975 * @since 3.4.0 976 * 972 977 * @param mixed $choice Which header image to select. Allows for values of 'random-default-image', 973 978 * for randomly cycling among the default images; 'random-uploaded-image', for randomly cycling … … 975 980 * the key of an image uploaded for that theme (the basename of the URL). 976 981 * Or an array of arguments: attachment_id, url, width, height. All are required. 977 *978 * @since 3.4.0979 *980 * @param array|object|string $choice981 982 */ 982 983 final public function set_header_image( $choice ) { -
trunk/src/wp-admin/includes/class-wp-filesystem-base.php
r35662 r36250 706 706 * @abstract 707 707 * 708 * @param string $file Path to file. 708 709 * @return bool Whether $file is writable. 709 710 */ -
trunk/src/wp-admin/includes/dashboard.php
r36172 r36250 1145 1145 * 1146 1146 * @since 2.5.0 1147 * 1148 * @param string $rss The RSS feed URL. 1149 * @param array $args Array of arguments for this RSS feed. 1147 1150 */ 1148 1151 function wp_dashboard_plugins_output( $rss, $args = array() ) { -
trunk/src/wp-admin/includes/schema.php
r35738 r36250 889 889 * @global WP_Rewrite $wp_rewrite 890 890 * 891 * @param int $network_id ID of network to populate. 891 * @param int $network_id ID of network to populate. 892 * @param string $domain The domain name for the network (eg. "example.com"). 893 * @param string $email Email address for the network administrator. 894 * @param string $site_name The name of the network. 895 * @param string $path Optional. The path to append to the network's domain name. Default '/'. 896 * @param bool $subdomain_install Optional. Whether the network is a subdomain install or a subdirectory install. 897 * Default false, meaning the network is a subdirectory install. 892 898 * @return bool|WP_Error True on success, or WP_Error on warning (with the install otherwise successful, 893 899 * so the error code must be checked) or failure. -
trunk/src/wp-includes/class-feed.php
r34348 r36250 10 10 * @static 11 11 * @access public 12 * 13 * @param string $location URL location (scheme is used to determine handler). 14 * @param string $filename Unique identifier for cache object. 15 * @param string $extension 'spi' or 'spc'. 16 * @return WP_Feed_Cache_Transient Feed cache handler object that uses transients. 12 17 */ 13 18 public function create($location, $filename, $extension) { … … 21 26 public $lifetime = 43200; //Default lifetime in cache of 12 hours 22 27 28 /** 29 * Class instantiator. 30 * 31 * @param string $location URL location (scheme is used to determine handler). 32 * @param string $filename Unique identifier for cache object. 33 * @param string $extension 'spi' or 'spc'. 34 */ 23 35 public function __construct($location, $filename, $extension) { 24 36 $this->name = 'feed_' . $filename; -
trunk/src/wp-includes/class-wp-comment.php
r34730 r36250 351 351 * 352 352 * @since 4.4.0 353 * 354 * @param bool $set Whether the comment's children have already been populated. 353 355 */ 354 356 public function populated_children( $set ) { -
trunk/src/wp-includes/class-wp-image-editor.php
r33734 r36250 22 22 /** 23 23 * Each instance handles a single file. 24 * 25 * @param string $file Path to the file to load. 24 26 */ 25 27 public function __construct( $file ) { -
trunk/src/wp-includes/class-wp-term.php
r35537 r36250 238 238 * @access public 239 239 * 240 * @return mixed 240 * @param string $key Property to get. 241 * @return mixed Property value. 241 242 */ 242 243 public function __get( $key ) { -
trunk/src/wp-includes/class-wp-theme.php
r36185 r36250 351 351 * __get() magic method for properties formerly returned by current_theme_info() 352 352 * 353 * @return mixed 353 * @param string $offset Property to get. 354 * @return mixed Property value. 354 355 */ 355 356 public function __get( $offset ) {
Note: See TracChangeset
for help on using the changeset viewer.