Changeset 10425
- Timestamp:
- 12/22/2015 05:41:48 AM (9 years ago)
- Location:
- trunk/src/bp-core
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-attachments.php
r10417 r10425 1070 1070 * @type string $cover_image_dir The Cover image dir to write the image into. Required. 1071 1071 * } 1072 * @param BP_Attachment_Cover_Image $cover_image_class The class to use to fit the cover image.1072 * @param BP_Attachment_Cover_Image|null $cover_image_class The class to use to fit the cover image. 1073 1073 * @return bool|array An array containing cover image data on success, false otherwise. 1074 1074 */ -
trunk/src/bp-core/bp-core-functions.php
r10417 r10425 2560 2560 * @uses wp_upload_dir() 2561 2561 * @uses restore_current_blog() 2562 * 2563 * @return string 2562 2564 */ 2563 2565 function bp_upload_dir() { -
trunk/src/bp-core/bp-core-template-loader.php
r10417 r10425 24 24 * @uses get_template_part() 25 25 * 26 * @param string $slug Template part slug. Used to generate filenames,27 * eg 'friends' for 'friends.php'.28 * @param string $name Optional. Template part name. Used to generate29 * secondary filenames, eg 'personal' for 'activity-personal.php'.26 * @param string $slug Template part slug. Used to generate filenames, 27 * eg 'friends' for 'friends.php'. 28 * @param string|null $name Optional. Template part name. Used to generate 29 * secondary filenames, eg 'personal' for 'activity-personal.php'. 30 30 * @return string Path to located template. See {@link bp_locate_template()}. 31 31 */ … … 256 256 * @see bp_get_template_part() for a description of $slug and $name params. 257 257 * 258 * @param string $slug See {@link bp_get_template_part()}.259 * @param string $name See {@link bp_get_template_part()}.260 * @param bool $echo If true, template content will be echoed. If false,261 * returned. Default: true.258 * @param string $slug See {@link bp_get_template_part()}. 259 * @param string|null $name See {@link bp_get_template_part()}. 260 * @param bool $echo If true, template content will be echoed. If false, 261 * returned. Default: true. 262 262 * @return string|null If $echo, returns the template content. 263 263 */ … … 372 372 * 373 373 * @param array $stacks Array of template locations. 374 * @return array ()Array of all template locations registered so far.374 * @return array Array of all template locations registered so far. 375 375 */ 376 376 function bp_add_template_stack_locations( $stacks = array() ) { -
trunk/src/bp-core/bp-core-template.php
r10417 r10425 312 312 * 313 313 * @since 1.6.0 314 * 315 * @return string 314 316 */ 315 317 function bp_get_site_name() { -
trunk/src/bp-core/classes/class-bp-core-user.php
r10417 r10425 445 445 * @global wpdb $wpdb WordPress database object. 446 446 * 447 * @param string $letter The letter the users names are to start with.448 * @param int 449 * @param int $page The page number we are currently on, used in conjunction450 * with $limit to get the start position for the limit.451 * @param bool $populate_extras If we should populate extra user fields.452 * @param string $exclude Comma-separated IDs of users whose results453 * aren't to be fetched.447 * @param string $letter The letter the users names are to start with. 448 * @param int|null $limit The number of users we wish to retrive. 449 * @param int $page The page number we are currently on, used in conjunction 450 * with $limit to get the start position for the limit. 451 * @param bool $populate_extras If we should populate extra user fields. 452 * @param string $exclude Comma-separated IDs of users whose results 453 * aren't to be fetched. 454 454 * @return mixed False on error, otherwise associative array of results. 455 455 */ … … 532 532 * @global wpdb $wpdb WordPress database object. 533 533 * 534 * @param array $user_ids The user IDs of the users who we wish to535 * fetch information on.536 * @param int 537 * @param int $page The page we are on for pagination.538 * @param bool $populate_extras If we should populate extra user fields.534 * @param array $user_ids The user IDs of the users who we wish to 535 * fetch information on. 536 * @param int|null $limit The limit of results we want. 537 * @param int $page The page we are on for pagination. 538 * @param bool $populate_extras If we should populate extra user fields. 539 539 * @return array Associative array. 540 540 */ … … 627 627 * @global wpdb $wpdb WordPress database object. 628 628 * 629 * @param string $search_terms The terms to search the profile table630 * value column for.631 * @param int 632 * @param int $page The page we are on for pagination.633 * @param boolean $populate_extras If we should populate extra user fields.629 * @param string $search_terms The terms to search the profile table 630 * value column for. 631 * @param int|null $limit The limit of results we want. 632 * @param int $page The page we are on for pagination. 633 * @param boolean $populate_extras If we should populate extra user fields. 634 634 * @return array Associative array. 635 635 */ -
trunk/src/bp-core/classes/class-bp-user-query.php
r10417 r10425 144 144 * @since 1.7.0 145 145 * 146 * @param string|array $query See {@link BP_User_Query}.146 * @param string|array|null $query See {@link BP_User_Query}. 147 147 */ 148 148 public function __construct( $query = null ) {
Note: See TracChangeset
for help on using the changeset viewer.