Changeset 11240
- Timestamp:
- 11/05/2016 08:49:49 PM (8 years ago)
- Location:
- trunk/src/bp-members
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/bp-members-template.php
r11154 r11240 1002 1002 * @since 1.2.0 1003 1003 * 1004 * @param array|string $args Array of arguments for latest update.1004 * @param array|string $args {@see bp_get_member_latest_update()}. 1005 1005 */ 1006 1006 function bp_member_latest_update( $args = '' ) { … … 1525 1525 * @see bp_get_loggedin_user_avatar() for a description of params. 1526 1526 * 1527 * @param array|string $args Array of arguments for logged in user avatar.1527 * @param array|string $args {@see bp_get_loggedin_user_avatar()}. 1528 1528 */ 1529 1529 function bp_loggedin_user_avatar( $args = '' ) { … … 1580 1580 * @see bp_get_displayed_user_avatar() for a description of params. 1581 1581 * 1582 * @param array|string $args Array of arguments for displayed user avatar.1582 * @param array|string $args {@see bp_get_displayed_user_avatar()}. 1583 1583 */ 1584 1584 function bp_displayed_user_avatar( $args = '' ) { -
trunk/src/bp-members/classes/class-bp-signup.php
r10800 r11240 123 123 * @since 2.0.0 124 124 * 125 * @param array $args the argument to retrieve desired signups. 125 * @param array $args { 126 * The argument to retrieve desired signups. 127 * @type int $offset Offset amount. Default 0. 128 * @type int $number How many to fetch. Default 1. 129 * @type bool|string $usersearch Whether or not to search for a username. Default false. 130 * @type string $orderby Order By parameter. Default 'signup_id'. 131 * @type string $order Order direction. Default 'DESC'. 132 * @type bool $include Whether or not to include more specific query params. 133 * @type string $activation_key Activation key to search for. 134 * @type string $user_login Specific user login to return. 135 * } 126 136 * @return array { 127 137 * @type array $signups Located signups. … … 262 272 263 273 return array( 'signups' => $paged_signups, 'total' => $total_signups ); 274 264 275 } 265 276 … … 269 280 * @since 2.0.0 270 281 * 271 * @param array $args Array of arguments for signup addition. 272 * @return int|bool ID of newly created signup on success, false on 273 * failure. 282 * @param array $args { 283 * Array of arguments for signup addition. 284 * @type string $domain New user's domain. 285 * @type string $path New user's path. 286 * @type string $title New user's title. 287 * @type string $user_login New user's user_login. 288 * @type string $user_email New user's email address. 289 * @type int|string $registered Time the user registered. 290 * @type string $activation_key New user's activation key. 291 * @type string $meta New user's user meta. 292 * } 293 * @return int|bool ID of newly created signup on success, false on failure. 274 294 */ 275 295 public static function add( $args = array() ) { … … 490 510 * @since 2.0.0 491 511 * 492 * @param array $args Array of arguments for the signup update. 512 * @param array $args { 513 * Array of arguments for the signup update. 514 * @type int $signup_id User signup ID. 515 * @type array $meta Meta to update. 516 * } 493 517 * @return int The signup id. 494 518 */
Note: See TracChangeset
for help on using the changeset viewer.