Changeset 10149 for trunk/src/bp-members/classes/class-bp-signup.php
- Timestamp:
- 09/27/2015 05:43:55 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/classes/class-bp-signup.php
r9877 r10149 1 1 <?php 2 3 2 /** 4 3 * Signups Management class. 5 4 * 5 * @since 2.0.0 6 * 6 7 * @package BuddyPress 7 8 * @subpackage coreClasses 8 *9 * @since BuddyPress (2.0.0)10 9 */ 10 11 11 class BP_Signup { 12 12 … … 73 73 * Class constructor. 74 74 * 75 * @since BuddyPress (2.0.0)75 * @since 2.0.0 76 76 * 77 77 * @param integer $signup_id The ID for the signup being queried. … … 87 87 * Populate the instantiated class with data based on the signup_id provided. 88 88 * 89 * @since BuddyPress (2.0.0)89 * @since 2.0.0 90 90 */ 91 91 public function populate() { … … 109 109 * Fetch signups based on parameters. 110 110 * 111 * @since BuddyPress (2.0.0)111 * @since 2.0.0 112 112 * 113 113 * @param array $args the argument to retrieve desired signups. … … 180 180 * Filters the Signups paged query. 181 181 * 182 * @since BuddyPress (2.0.0)182 * @since 2.0.0 183 183 * 184 184 * @param string $value SQL statement. … … 241 241 * Filters the Signups count query. 242 242 * 243 * @since BuddyPress (2.0.0)243 * @since 2.0.0 244 244 * 245 245 * @param string $value SQL statement. … … 256 256 * Add a signup. 257 257 * 258 * @since BuddyPress (2.0.0)258 * @since 2.0.0 259 259 * 260 260 * @param array $args … … 297 297 * Filters the result of a signup addition. 298 298 * 299 * @since BuddyPress (2.0.0)299 * @since 2.0.0 300 300 * 301 301 * @param int|bool $retval Newly added user ID on success, false on failure. … … 314 314 * default behavior. 315 315 * 316 * @since BuddyPress (2.0.0)316 * @since 2.0.0 317 317 * 318 318 * @param string $user_login User login string. … … 370 370 * Filters the user ID for the backcompat functionality. 371 371 * 372 * @since BuddyPress (2.0.0)372 * @since 2.0.0 373 373 * 374 374 * @param int $user_id User ID being registered. … … 380 380 * Check a user status (from wp_users) on a non-multisite config. 381 381 * 382 * @since BuddyPress (2.0.0)382 * @since 2.0.0 383 383 * 384 384 * @param int $user_id ID of the user being checked. … … 398 398 * Filters the user status of a provided user ID. 399 399 * 400 * @since BuddyPress (2.0.0)400 * @since 2.0.0 401 401 * 402 402 * @param int $value User status of the provided user ID. … … 408 408 * Activate a signup. 409 409 * 410 * @since BuddyPress (2.0.0)410 * @since 2.0.0 411 411 * 412 412 * @param string $key Activation key. … … 445 445 * Filters the status of the activated user. 446 446 * 447 * @since BuddyPress (2.0.0)447 * @since 2.0.0 448 448 * 449 449 * @param bool $activated Whether or not the activation was successful. … … 455 455 * How many inactive signups do we have? 456 456 * 457 * @since BuddyPress (2.0.0)457 * @since 2.0.0 458 458 * 459 459 * @return int The number of signups. … … 468 468 * Filters the total inactive signups. 469 469 * 470 * @since BuddyPress (2.0.0)470 * @since 2.0.0 471 471 * 472 472 * @param int $count_signups How many total signups there are. … … 481 481 * email was sent and how many times activation was sent. 482 482 * 483 * @since BuddyPress (2.0.0)483 * @since 2.0.0 484 484 * 485 485 * @param array $args … … 526 526 * Filters the signup ID which received a meta update. 527 527 * 528 * @since BuddyPress (2.0.0)528 * @since 2.0.0 529 529 * 530 530 * @param int $value The signup ID. … … 536 536 * Resend an activation email. 537 537 * 538 * @since BuddyPress (2.0.0)538 * @since 2.0.0 539 539 * 540 540 * @param array $signup_ids Single ID or list of IDs to resend. … … 560 560 * Fires before activation emails are resent. 561 561 * 562 * @since BuddyPress (2.0.0)562 * @since 2.0.0 563 563 * 564 564 * @param array $signup_ids Array of IDs to resend activation emails to. … … 606 606 * Fires after activation emails are resent. 607 607 * 608 * @since BuddyPress (2.0.0)608 * @since 2.0.0 609 609 * 610 610 * @param array $signup_ids Array of IDs to resend activation emails to. … … 616 616 * Filters the result of the metadata for signup activation email resends. 617 617 * 618 * @since BuddyPress (2.0.0)618 * @since 2.0.0 619 619 * 620 620 * @param array $result Updated metadata related to activation emails. … … 626 626 * Activate a pending account. 627 627 * 628 * @since BuddyPress (2.0.0)628 * @since 2.0.0 629 629 * 630 630 * @param array $signup_ids Single ID or list of IDs to activate. … … 650 650 * Fires before activation of user accounts. 651 651 * 652 * @since BuddyPress (2.0.0)652 * @since 2.0.0 653 653 * 654 654 * @param array $signup_ids Array of IDs to activate. … … 689 689 * Fires after activation of user accounts. 690 690 * 691 * @since BuddyPress (2.0.0)691 * @since 2.0.0 692 692 * 693 693 * @param array $signup_ids Array of IDs activated activate. … … 699 699 * Filters the result of the metadata after user activation. 700 700 * 701 * @since BuddyPress (2.0.0)701 * @since 2.0.0 702 702 * 703 703 * @param array $result Updated metadata related to user activation. … … 709 709 * Delete a pending account. 710 710 * 711 * @since BuddyPress (2.0.0)711 * @since 2.0.0 712 712 * 713 713 * @param array $signup_ids Single ID or list of IDs to delete. … … 735 735 * Fires before deletion of pending accounts. 736 736 * 737 * @since BuddyPress (2.0.0)737 * @since 2.0.0 738 738 * 739 739 * @param array $signup_ids Array of pending IDs to delete. … … 777 777 * Fires after deletion of pending accounts. 778 778 * 779 * @since BuddyPress (2.0.0)779 * @since 2.0.0 780 780 * 781 781 * @param array $signup_ids Array of pending IDs to delete. … … 787 787 * Filters the result of the metadata for deleted pending accounts. 788 788 * 789 * @since BuddyPress (2.0.0)789 * @since 2.0.0 790 790 * 791 791 * @param array $result Updated metadata related to deleted pending accounts.
Note: See TracChangeset
for help on using the changeset viewer.