Changeset 9877 for trunk/src/bp-members/classes/class-bp-signup.php
- Timestamp:
- 05/19/2015 01:40:26 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/classes/class-bp-signup.php
r9819 r9877 111 111 * @since BuddyPress (2.0.0) 112 112 * 113 * @param array $args the argument to retrieve desired signups 113 * @param array $args the argument to retrieve desired signups. 114 * 114 115 * @return array { 115 116 * @type array $signups Located signups. 116 * @type int $totalTotal number of signups matching params.117 * @type int $total Total number of signups matching params. 117 118 * } 118 119 */ … … 258 259 * 259 260 * @param array $args 261 * 260 262 * @return int|bool ID of newly created signup on success, false on 261 * failure.263 * failure. 262 264 */ 263 265 public static function add( $args = array() ) { … … 314 316 * @since BuddyPress (2.0.0) 315 317 * 316 * @param string $user_login User login string.318 * @param string $user_login User login string. 317 319 * @param string $user_password User password. 318 * @param string $user_email User email address. 319 * @param array $usermeta Metadata associated with the signup. 320 * @param string $user_email User email address. 321 * @param array $usermeta Metadata associated with the signup. 322 * 320 323 * @return int User id. 321 324 */ … … 380 383 * 381 384 * @param int $user_id ID of the user being checked. 385 * 382 386 * @return int|bool The status if found, otherwise false. 383 387 */ … … 407 411 * 408 412 * @param string $key Activation key. 413 * 409 414 * @return bool True on success, false on failure. 410 415 */ … … 452 457 * @since BuddyPress (2.0.0) 453 458 * 454 * @return int the number of signups459 * @return int The number of signups. 455 460 */ 456 461 public static function count_signups() { … … 478 483 * @since BuddyPress (2.0.0) 479 484 * 480 * @param array $args 481 * @return int the signup id 485 * @param array $args 486 * 487 * @return int The signup id 482 488 */ 483 489 public static function update( $args = array() ) { … … 533 539 * 534 540 * @param array $signup_ids Single ID or list of IDs to resend. 541 * 535 542 * @return array 536 543 */ … … 622 629 * 623 630 * @param array $signup_ids Single ID or list of IDs to activate. 631 * 624 632 * @return array 625 633 */ … … 704 712 * 705 713 * @param array $signup_ids Single ID or list of IDs to delete. 714 * 706 715 * @return array 707 716 */
Note: See TracChangeset
for help on using the changeset viewer.