Pristine upstream, unpacked from the official wordpress.org tarball. https://wordpress.org/wordpress-7.1.1.tar.gz sha1 2a9d68474e8703aa3a66f80427b325e0941b6a1e (published by wordpress.org) sha256 3996fee13448ef12e07e9f0c77db2f655ffa1b7cde71c80a4965d3bf1fb956b3 This branch carries nothing but upstream releases, one commit each, and is never edited. It is the other side of the git-subtree merge that brings security releases into SiriusPress/wordpress/ — see SiriusPress/docs/upstream-merges.md.
41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Multisite Administration hooks
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
* @since 4.3.0
|
|
*/
|
|
|
|
// Media hooks.
|
|
add_filter( 'wp_handle_upload_prefilter', 'check_upload_size' );
|
|
|
|
// User hooks.
|
|
add_action( 'user_admin_notices', 'new_user_email_admin_notice' );
|
|
add_action( 'network_admin_notices', 'new_user_email_admin_notice' );
|
|
|
|
add_action( 'admin_page_access_denied', '_access_denied_splash', 99 );
|
|
|
|
// Site hooks.
|
|
add_action( 'wpmueditblogaction', 'upload_space_setting' );
|
|
|
|
// Network hooks.
|
|
add_action( 'update_site_option_admin_email', 'wp_network_admin_email_change_notification', 10, 4 );
|
|
|
|
// Post hooks.
|
|
add_filter( 'wp_insert_post_data', 'avoid_blog_page_permalink_collision', 10, 2 );
|
|
|
|
// Tools hooks.
|
|
add_filter( 'import_allow_create_users', 'check_import_new_users' );
|
|
|
|
// Notices hooks.
|
|
add_action( 'admin_notices', 'site_admin_notice' );
|
|
add_action( 'network_admin_notices', 'site_admin_notice' );
|
|
|
|
// Update hooks.
|
|
add_action( 'network_admin_notices', 'update_nag', 3 );
|
|
add_action( 'network_admin_notices', 'maintenance_nag', 10 );
|
|
|
|
// Network Admin hooks.
|
|
add_action( 'add_site_option_new_admin_email', 'update_network_option_new_admin_email', 10, 2 );
|
|
add_action( 'update_site_option_new_admin_email', 'update_network_option_new_admin_email', 10, 2 );
|