Changeset 37511
- Timestamp:
- 05/22/2016 06:39:17 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r36895 r37511 375 375 376 376 /** 377 * Filter whether an email address is unsafe.377 * Filters whether an email address is unsafe. 378 378 * 379 379 * @since 3.5.0 … … 498 498 499 499 /** 500 * Filter the validated user registration details.500 * Filters the validated user registration details. 501 501 * 502 502 * This does not allow you to override the username or email of the user during … … 586 586 587 587 /** 588 * Filter the new site name during registration.588 * Filters the new site name during registration. 589 589 * 590 590 * The name is the site's subdomain or the site's subdirectory … … 632 632 633 633 /** 634 * Filter site details and error messages following registration.634 * Filters site details and error messages following registration. 635 635 * 636 636 * @since MU … … 770 770 function wpmu_signup_blog_notification( $domain, $path, $title, $user, $user_email, $key, $meta = array() ) { 771 771 /** 772 * Filter whether to bypass the new site email notification.772 * Filters whether to bypass the new site email notification. 773 773 * 774 774 * @since MU … … 800 800 $message = sprintf( 801 801 /** 802 * Filter the message content of the new blog notification email.802 * Filters the message content of the new blog notification email. 803 803 * 804 804 * Content should be formatted for transmission via wp_mail(). … … 826 826 $subject = sprintf( 827 827 /** 828 * Filter the subject of the new blog notification email.828 * Filters the subject of the new blog notification email. 829 829 * 830 830 * @since MU … … 873 873 function wpmu_signup_user_notification( $user, $user_email, $key, $meta = array() ) { 874 874 /** 875 * Filter whether to bypass the email notification for new user sign-up.875 * Filters whether to bypass the email notification for new user sign-up. 876 876 * 877 877 * @since MU … … 893 893 $message = sprintf( 894 894 /** 895 * Filter the content of the notification email for new user sign-up.895 * Filters the content of the notification email for new user sign-up. 896 896 * 897 897 * Content should be formatted for transmission via wp_mail(). … … 914 914 $subject = sprintf( 915 915 /** 916 * Filter the subject of the notification email of new user signup.916 * Filters the subject of the notification email of new user signup. 917 917 * 918 918 * @since MU … … 1185 1185 Disable these notifications: %4$s' ), $blogname, $siteurl, wp_unslash( $_SERVER['REMOTE_ADDR'] ), $options_site_url); 1186 1186 /** 1187 * Filter the message body of the new site activation email sent1187 * Filters the message body of the new site activation email sent 1188 1188 * to the network administrator. 1189 1189 * … … 1227 1227 1228 1228 /** 1229 * Filter the message body of the new user activation email sent1229 * Filters the message body of the new user activation email sent 1230 1230 * to the network administrator. 1231 1231 * … … 1261 1261 1262 1262 /** 1263 * Filter whether a blogname is taken.1263 * Filters whether a blogname is taken. 1264 1264 * 1265 1265 * @since 3.5.0 … … 1421 1421 1422 1422 /** 1423 * Filter whether to bypass the welcome email after site activation.1423 * Filters whether to bypass the welcome email after site activation. 1424 1424 * 1425 1425 * Returning false disables the welcome email. … … 1465 1465 1466 1466 /** 1467 * Filter the content of the welcome email after site activation.1467 * Filters the content of the welcome email after site activation. 1468 1468 * 1469 1469 * Content should be formatted for transmission via wp_mail(). … … 1492 1492 1493 1493 /** 1494 * Filter the subject of the welcome email after site activation.1494 * Filters the subject of the welcome email after site activation. 1495 1495 * 1496 1496 * @since MU … … 1522 1522 1523 1523 /** 1524 * Filter whether to bypass the welcome email after user activation.1524 * Filters whether to bypass the welcome email after user activation. 1525 1525 * 1526 1526 * Returning false disables the welcome email. … … 1570 1570 1571 1571 /** 1572 * Filter the subject of the welcome email after user activation.1572 * Filters the subject of the welcome email after user activation. 1573 1573 * 1574 1574 * @since MU … … 1925 1925 function maybe_redirect_404() { 1926 1926 /** 1927 * Filter the redirect URL for 404s on the main site.1927 * Filters the redirect URL for 404s on the main site. 1928 1928 * 1929 1929 * The filter is only evaluated if the NOBLOGREDIRECT constant is defined. … … 2210 2210 2211 2211 /** 2212 * Filter whether to update network site or user counts when a new site is created.2212 * Filters whether to update network site or user counts when a new site is created. 2213 2213 * 2214 2214 * @since 3.7.0 … … 2280 2280 function get_space_used() { 2281 2281 /** 2282 * Filter the amount of storage space used by the current site.2282 * Filters the amount of storage space used by the current site. 2283 2283 * 2284 2284 * @since 3.5.0 … … 2312 2312 2313 2313 /** 2314 * Filter the upload quota for the current site.2314 * Filters the upload quota for the current site. 2315 2315 * 2316 2316 * @since 3.7.0 … … 2388 2388 $count = get_user_count(); 2389 2389 /** 2390 * Filter whether the network is considered large.2390 * Filters whether the network is considered large. 2391 2391 * 2392 2392 * @since 3.3.0 … … 2497 2497 2498 2498 /** 2499 * Filter reserved site names on a sub-directory Multisite install.2499 * Filters reserved site names on a sub-directory Multisite install. 2500 2500 * 2501 2501 * @since 3.0.0
Note: See TracChangeset
for help on using the changeset viewer.