Changeset 51699
- Timestamp:
- 08/31/2021 12:23:46 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-signup.php
r50828 r51699 16 16 17 17 /** 18 * Prints signup_header via wp_head 18 * Prints signup_header via wp_head. 19 19 * 20 20 * @since MU (3.0.0) … … 51 51 52 52 /** 53 * Prints styles for front-end Multisite signup pages 53 * Prints styles for front-end Multisite signup pages. 54 54 * 55 55 * @since MU (3.0.0) … … 90 90 <?php 91 91 /** 92 * Generates and displays the Signup and Create Site forms 92 * Generates and displays the Signup and Create Site forms. 93 93 * 94 94 * @since MU (3.0.0) … … 225 225 226 226 /** 227 * Validate the new site signup227 * Validates the new site signup. 228 228 * 229 229 * @since MU (3.0.0) … … 289 289 290 290 /** 291 * Validate user signup name and email291 * Validates user signup name and email. 292 292 * 293 293 * @since MU (3.0.0) … … 301 301 302 302 /** 303 * Allow returning users to sign up for another site303 * Shows a form for returning users to sign up for another site. 304 304 * 305 305 * @since MU (3.0.0) … … 395 395 396 396 /** 397 * Validate a new site signup for an existing user.398 * 399 * @ global string $blogname The new site's subdomain or directory name.400 * @global string $blog_title The new site's title.401 * @global WP_Error $errors Existing errors in the global scope.402 * @global string $domain The new site's domain.403 * @global string $path The new site's path.404 * 405 * @ since MU (3.0.0)406 * 407 * @return null|bool True if site signup was validated, false iferror.397 * Validates a new site signup for an existing user. 398 * 399 * @since MU (3.0.0) 400 * 401 * @global string $blogname The new site's subdomain or directory name. 402 * @global string $blog_title The new site's title. 403 * @global WP_Error $errors Existing errors in the global scope. 404 * @global string $domain The new site's domain. 405 * @global string $path The new site's path. 406 * 407 * @return null|bool True if site signup was validated, false on error. 408 408 * The function halts all execution if the user is not logged in. 409 409 */ … … 487 487 488 488 /** 489 * Confirm a new site signup.489 * Shows a message confirming that the new site has been created. 490 490 * 491 491 * @since MU (3.0.0) … … 554 554 * @since MU (3.0.0) 555 555 * 556 * @global string $active_signup String that returns registration type. The value can be 557 * 'all', 'none', 'blog', or 'user'. 558 * 556 559 * @param string $user_name The username. 557 560 * @param string $user_email The user's email. … … 627 630 628 631 /** 629 * Validate the new user signup630 * 631 * @since MU (3.0.0) 632 * 633 * @return bool True if new user signup was validated, false if error632 * Validates the new user signup. 633 * 634 * @since MU (3.0.0) 635 * 636 * @return bool True if new user signup was validated, false on error. 634 637 */ 635 638 function validate_user_signup() { … … 657 660 658 661 /** 659 * New user signup confirmation660 * 661 * @since MU (3.0.0) 662 * 663 * @param string $user_name The username664 * @param string $user_email The user's email address 662 * Shows a message confirming that the new user has been registered and is awaiting activation. 663 * 664 * @since MU (3.0.0) 665 * 666 * @param string $user_name The username. 667 * @param string $user_email The user's email address. 665 668 */ 666 669 function confirm_user_signup( $user_name, $user_email ) { … … 751 754 752 755 /** 753 * Validate new site signup754 * 755 * @since MU (3.0.0) 756 * 757 * @return bool True if the site signup was validated, false if error756 * Validates new site signup. 757 * 758 * @since MU (3.0.0) 759 * 760 * @return bool True if the site signup was validated, false on error. 758 761 */ 759 762 function validate_blog_signup() {
Note: See TracChangeset
for help on using the changeset viewer.