angelovcom.net

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

site-new.php (9350B)


      1 <?php
      2 /**
      3  * Add Site Administration Screen
      4  *
      5  * @package WordPress
      6  * @subpackage Multisite
      7  * @since 3.1.0
      8  */
      9 
     10 /** Load WordPress Administration Bootstrap */
     11 require_once __DIR__ . '/admin.php';
     12 
     13 /** WordPress Translation Installation API */
     14 require_once ABSPATH . 'wp-admin/includes/translation-install.php';
     15 
     16 if ( ! current_user_can( 'create_sites' ) ) {
     17 	wp_die( __( 'Sorry, you are not allowed to add sites to this network.' ) );
     18 }
     19 
     20 get_current_screen()->add_help_tab(
     21 	array(
     22 		'id'      => 'overview',
     23 		'title'   => __( 'Overview' ),
     24 		'content' =>
     25 			'<p>' . __( 'This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.' ) . '</p>' .
     26 			'<p>' . __( 'If the admin email for the new site does not exist in the database, a new user will also be created.' ) . '</p>',
     27 	)
     28 );
     29 
     30 get_current_screen()->set_help_sidebar(
     31 	'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
     32 	'<p>' . __( '<a href="https://wordpress.org/support/article/network-admin-sites-screen/">Documentation on Site Management</a>' ) . '</p>' .
     33 	'<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>'
     34 );
     35 
     36 if ( isset( $_REQUEST['action'] ) && 'add-site' === $_REQUEST['action'] ) {
     37 	check_admin_referer( 'add-blog', '_wpnonce_add-blog' );
     38 
     39 	if ( ! is_array( $_POST['blog'] ) ) {
     40 		wp_die( __( 'Can&#8217;t create an empty site.' ) );
     41 	}
     42 
     43 	$blog   = $_POST['blog'];
     44 	$domain = '';
     45 
     46 	$blog['domain'] = trim( $blog['domain'] );
     47 	if ( preg_match( '|^([a-zA-Z0-9-])+$|', $blog['domain'] ) ) {
     48 		$domain = strtolower( $blog['domain'] );
     49 	}
     50 
     51 	// If not a subdomain installation, make sure the domain isn't a reserved word.
     52 	if ( ! is_subdomain_install() ) {
     53 		$subdirectory_reserved_names = get_subdirectory_reserved_names();
     54 
     55 		if ( in_array( $domain, $subdirectory_reserved_names, true ) ) {
     56 			wp_die(
     57 				sprintf(
     58 					/* translators: %s: Reserved names list. */
     59 					__( 'The following words are reserved for use by WordPress functions and cannot be used as blog names: %s' ),
     60 					'<code>' . implode( '</code>, <code>', $subdirectory_reserved_names ) . '</code>'
     61 				)
     62 			);
     63 		}
     64 	}
     65 
     66 	$title = $blog['title'];
     67 
     68 	$meta = array(
     69 		'public' => 1,
     70 	);
     71 
     72 	// Handle translation installation for the new site.
     73 	if ( isset( $_POST['WPLANG'] ) ) {
     74 		if ( '' === $_POST['WPLANG'] ) {
     75 			$meta['WPLANG'] = ''; // en_US
     76 		} elseif ( in_array( $_POST['WPLANG'], get_available_languages(), true ) ) {
     77 			$meta['WPLANG'] = $_POST['WPLANG'];
     78 		} elseif ( current_user_can( 'install_languages' ) && wp_can_install_language_pack() ) {
     79 			$language = wp_download_language_pack( wp_unslash( $_POST['WPLANG'] ) );
     80 			if ( $language ) {
     81 				$meta['WPLANG'] = $language;
     82 			}
     83 		}
     84 	}
     85 
     86 	if ( empty( $domain ) ) {
     87 		wp_die( __( 'Missing or invalid site address.' ) );
     88 	}
     89 
     90 	if ( isset( $blog['email'] ) && '' === trim( $blog['email'] ) ) {
     91 		wp_die( __( 'Missing email address.' ) );
     92 	}
     93 
     94 	$email = sanitize_email( $blog['email'] );
     95 	if ( ! is_email( $email ) ) {
     96 		wp_die( __( 'Invalid email address.' ) );
     97 	}
     98 
     99 	if ( is_subdomain_install() ) {
    100 		$newdomain = $domain . '.' . preg_replace( '|^www\.|', '', get_network()->domain );
    101 		$path      = get_network()->path;
    102 	} else {
    103 		$newdomain = get_network()->domain;
    104 		$path      = get_network()->path . $domain . '/';
    105 	}
    106 
    107 	$password = 'N/A';
    108 	$user_id  = email_exists( $email );
    109 	if ( ! $user_id ) { // Create a new user with a random password.
    110 		/**
    111 		 * Fires immediately before a new user is created via the network site-new.php page.
    112 		 *
    113 		 * @since 4.5.0
    114 		 *
    115 		 * @param string $email Email of the non-existent user.
    116 		 */
    117 		do_action( 'pre_network_site_new_created_user', $email );
    118 
    119 		$user_id = username_exists( $domain );
    120 		if ( $user_id ) {
    121 			wp_die( __( 'The domain or path entered conflicts with an existing username.' ) );
    122 		}
    123 		$password = wp_generate_password( 12, false );
    124 		$user_id  = wpmu_create_user( $domain, $password, $email );
    125 		if ( false === $user_id ) {
    126 			wp_die( __( 'There was an error creating the user.' ) );
    127 		}
    128 
    129 		/**
    130 		 * Fires after a new user has been created via the network site-new.php page.
    131 		 *
    132 		 * @since 4.4.0
    133 		 *
    134 		 * @param int $user_id ID of the newly created user.
    135 		 */
    136 		do_action( 'network_site_new_created_user', $user_id );
    137 	}
    138 
    139 	$wpdb->hide_errors();
    140 	$id = wpmu_create_blog( $newdomain, $path, $title, $user_id, $meta, get_current_network_id() );
    141 	$wpdb->show_errors();
    142 
    143 	if ( ! is_wp_error( $id ) ) {
    144 		if ( ! is_super_admin( $user_id ) && ! get_user_option( 'primary_blog', $user_id ) ) {
    145 			update_user_option( $user_id, 'primary_blog', $id, true );
    146 		}
    147 
    148 		wpmu_new_site_admin_notification( $id, $user_id );
    149 		wpmu_welcome_notification( $id, $user_id, $password, $title, array( 'public' => 1 ) );
    150 		wp_redirect(
    151 			add_query_arg(
    152 				array(
    153 					'update' => 'added',
    154 					'id'     => $id,
    155 				),
    156 				'site-new.php'
    157 			)
    158 		);
    159 		exit;
    160 	} else {
    161 		wp_die( $id->get_error_message() );
    162 	}
    163 }
    164 
    165 if ( isset( $_GET['update'] ) ) {
    166 	$messages = array();
    167 	if ( 'added' === $_GET['update'] ) {
    168 		$messages[] = sprintf(
    169 			/* translators: 1: Dashboard URL, 2: Network admin edit URL. */
    170 			__( 'Site added. <a href="%1$s">Visit Dashboard</a> or <a href="%2$s">Edit Site</a>' ),
    171 			esc_url( get_admin_url( absint( $_GET['id'] ) ) ),
    172 			network_admin_url( 'site-info.php?id=' . absint( $_GET['id'] ) )
    173 		);
    174 	}
    175 }
    176 
    177 $title       = __( 'Add New Site' );
    178 $parent_file = 'sites.php';
    179 
    180 wp_enqueue_script( 'user-suggest' );
    181 
    182 require_once ABSPATH . 'wp-admin/admin-header.php';
    183 
    184 ?>
    185 
    186 <div class="wrap">
    187 <h1 id="add-new-site"><?php _e( 'Add New Site' ); ?></h1>
    188 <?php
    189 if ( ! empty( $messages ) ) {
    190 	foreach ( $messages as $msg ) {
    191 		echo '<div id="message" class="updated notice is-dismissible"><p>' . $msg . '</p></div>';
    192 	}
    193 }
    194 ?>
    195 <p>
    196 <?php
    197 printf(
    198 	/* translators: %s: Asterisk symbol (*). */
    199 	__( 'Required fields are marked %s' ),
    200 	'<span class="required">*</span>'
    201 );
    202 ?>
    203 </p>
    204 <form method="post" action="<?php echo esc_url( network_admin_url( 'site-new.php?action=add-site' ) ); ?>" novalidate="novalidate">
    205 <?php wp_nonce_field( 'add-blog', '_wpnonce_add-blog' ); ?>
    206 	<table class="form-table" role="presentation">
    207 		<tr class="form-field form-required">
    208 			<th scope="row"><label for="site-address"><?php _e( 'Site Address (URL)' ); ?> <span class="required">*</span></label></th>
    209 			<td>
    210 			<?php if ( is_subdomain_install() ) { ?>
    211 				<input name="blog[domain]" type="text" class="regular-text ltr" id="site-address" aria-describedby="site-address-desc" autocapitalize="none" autocorrect="off" required /><span class="no-break">.<?php echo preg_replace( '|^www\.|', '', get_network()->domain ); ?></span>
    212 				<?php
    213 			} else {
    214 				echo get_network()->domain . get_network()->path
    215 				?>
    216 				<input name="blog[domain]" type="text" class="regular-text ltr" id="site-address" aria-describedby="site-address-desc" autocapitalize="none" autocorrect="off" required />
    217 				<?php
    218 			}
    219 			echo '<p class="description" id="site-address-desc">' . __( 'Only lowercase letters (a-z), numbers, and hyphens are allowed.' ) . '</p>';
    220 			?>
    221 			</td>
    222 		</tr>
    223 		<tr class="form-field form-required">
    224 			<th scope="row"><label for="site-title"><?php _e( 'Site Title' ); ?> <span class="required">*</span></label></th>
    225 			<td><input name="blog[title]" type="text" class="regular-text" id="site-title" required /></td>
    226 		</tr>
    227 		<?php
    228 		$languages    = get_available_languages();
    229 		$translations = wp_get_available_translations();
    230 		if ( ! empty( $languages ) || ! empty( $translations ) ) :
    231 			?>
    232 			<tr class="form-field form-required">
    233 				<th scope="row"><label for="site-language"><?php _e( 'Site Language' ); ?></label></th>
    234 				<td>
    235 					<?php
    236 					// Network default.
    237 					$lang = get_site_option( 'WPLANG' );
    238 
    239 					// Use English if the default isn't available.
    240 					if ( ! in_array( $lang, $languages, true ) ) {
    241 						$lang = '';
    242 					}
    243 
    244 					wp_dropdown_languages(
    245 						array(
    246 							'name'                        => 'WPLANG',
    247 							'id'                          => 'site-language',
    248 							'selected'                    => $lang,
    249 							'languages'                   => $languages,
    250 							'translations'                => $translations,
    251 							'show_available_translations' => current_user_can( 'install_languages' ) && wp_can_install_language_pack(),
    252 						)
    253 					);
    254 					?>
    255 				</td>
    256 			</tr>
    257 		<?php endif; // Languages. ?>
    258 		<tr class="form-field form-required">
    259 			<th scope="row"><label for="admin-email"><?php _e( 'Admin Email' ); ?> <span class="required">*</span></label></th>
    260 			<td><input name="blog[email]" type="email" class="regular-text wp-suggest-user" id="admin-email" data-autocomplete-type="search" data-autocomplete-field="user_email" aria-describedby="site-admin-email" required /></td>
    261 		</tr>
    262 		<tr class="form-field">
    263 			<td colspan="2" class="td-full"><p id="site-admin-email"><?php _e( 'A new user will be created if the above email address is not in the database.' ); ?><br /><?php _e( 'The username and a link to set the password will be mailed to this email address.' ); ?></p></td>
    264 		</tr>
    265 	</table>
    266 
    267 	<?php
    268 	/**
    269 	 * Fires at the end of the new site form in network admin.
    270 	 *
    271 	 * @since 4.5.0
    272 	 */
    273 	do_action( 'network_site_new_form' );
    274 
    275 	submit_button( __( 'Add Site' ), 'primary', 'add-site' );
    276 	?>
    277 	</form>
    278 </div>
    279 <?php
    280 require_once ABSPATH . 'wp-admin/admin-footer.php';