Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/19/2015 01:40:26 AM (11 years ago)
Author:
tw2113
Message:

First pass at members component docs cleanup.

See #6402.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-members/classes/class-bp-signup.php

    r9819 r9877  
    111111         * @since BuddyPress (2.0.0)
    112112         *
    113          * @param array $args the argument to retrieve desired signups
     113         * @param array $args the argument to retrieve desired signups.
     114         *
    114115         * @return array {
    115116         *     @type array $signups Located signups.
    116          *     @type int $total Total number of signups matching params.
     117         *     @type int   $total  Total number of signups matching params.
    117118         * }
    118119         */
     
    258259         *
    259260         * @param array $args
     261         *
    260262         * @return int|bool ID of newly created signup on success, false on
    261          *         failure.
     263         *                  failure.
    262264         */
    263265        public static function add( $args = array() ) {
     
    314316         * @since BuddyPress (2.0.0)
    315317         *
    316          * @param string $user_login User login string.
     318         * @param string $user_login    User login string.
    317319         * @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         *
    320323         * @return int User id.
    321324         */
     
    380383         *
    381384         * @param int $user_id ID of the user being checked.
     385         *
    382386         * @return int|bool The status if found, otherwise false.
    383387         */
     
    407411         *
    408412         * @param string $key Activation key.
     413         *
    409414         * @return bool True on success, false on failure.
    410415         */
     
    452457         * @since BuddyPress (2.0.0)
    453458         *
    454          * @return int the number of signups
     459         * @return int The number of signups.
    455460         */
    456461        public static function count_signups() {
     
    478483         * @since BuddyPress (2.0.0)
    479484         *
    480          * @param  array $args
    481          * @return int the signup id
     485         * @param array $args
     486         *
     487         * @return int The signup id
    482488         */
    483489        public static function update( $args = array() ) {
     
    533539         *
    534540         * @param array $signup_ids Single ID or list of IDs to resend.
     541         *
    535542         * @return array
    536543         */
     
    622629         *
    623630         * @param array $signup_ids Single ID or list of IDs to activate.
     631         *
    624632         * @return array
    625633         */
     
    704712         *
    705713         * @param array $signup_ids Single ID or list of IDs to delete.
     714         *
    706715         * @return array
    707716         */
Note: See TracChangeset for help on using the changeset viewer.