Changeset 54833
- Timestamp:
- 11/13/2022 11:17:47 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ms.php
r54832 r54833 9 9 10 10 /** 11 * Determine ifuploaded file exceeds space quota.11 * Determines whether uploaded file exceeds space quota. 12 12 * 13 13 * @since 3.0.0 … … 54 54 55 55 /** 56 * Delete a site.56 * Deletes a site. 57 57 * 58 58 * @since 3.0.0 … … 131 131 132 132 /** 133 * Delete a user from the network and remove from all sites.133 * Deletes a user from the network and remove from all sites. 134 134 * 135 135 * @since 3.0.0 … … 140 140 * 141 141 * @param int $id The user ID. 142 * @return bool True if the user was deleted, otherwise false.142 * @return bool True if the user was deleted, false otherwise. 143 143 */ 144 144 function wpmu_delete_user( $id ) { … … 214 214 215 215 /** 216 * Check whether a site has used its allotted upload space.216 * Checks whether a site has used its allotted upload space. 217 217 * 218 218 * @since MU (3.0.0) … … 270 270 271 271 /** 272 * Get the remaining upload space for this site.272 * Gets the remaining upload space for this site. 273 273 * 274 274 * @since MU (3.0.0) 275 275 * 276 * @param int $size Current max size in bytes 277 * @return int Max size in bytes 276 * @param int $size Current max size in bytes. 277 * @return int Max size in bytes. 278 278 */ 279 279 function fix_import_form_size( $size ) { … … 794 794 795 795 /** 796 * Whether or not we can edit this network from this page.796 * Determines whether or not this network from this page can be edited. 797 797 * 798 798 * By default editing of network is restricted to the Network Admin for that `$network_id`. … … 802 802 * 803 803 * @param int $network_id The network ID to check. 804 * @return bool True if network can be edited, otherwise false.804 * @return bool True if network can be edited, false otherwise. 805 805 */ 806 806 function can_edit_network( $network_id ) { … … 823 823 824 824 /** 825 * Thickbox image paths for Network Admin.825 * Prints thickbox image paths for Network Admin. 826 826 * 827 827 * @since 3.1.0 … … 982 982 983 983 /** 984 * Print JavaScript in the header on the Network Settings screen.984 * Prints JavaScript in the header on the Network Settings screen. 985 985 * 986 986 * @since 4.1.0
Note: See TracChangeset
for help on using the changeset viewer.