HEX
Server: Apache/2.4.63 (Unix)
System: Linux TOMS-220NAS 4.4.302+ #86009 SMP Wed Nov 26 18:19:17 CST 2025 x86_64
User: flavio87 (1026)
PHP: 8.3.27
Disabled: NONE
Upload Files
File: /volume1/web/tom-marchisa/wp-content/plugins/nextgen-gallery/src/Legacy/admin/wpmu.php
<?php
/**
 * NextGEN Gallery WordPress Multisite Setup
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

function nggallery_wpmu_setup() {

	// to be sure.
	if ( ! is_super_admin() ) {
		die( 'You are not allowed to call this page.' );
	}

	// Get current settings.
	$ngg_options = \Imagely\NGG\Settings\GlobalSettings::get_instance();

	$messagetext = [];

	if ( isset( $_POST['updateoption'] ) ) {
		check_admin_referer( 'ngg_wpmu_settings' );

		// Set all options other than the gallerypath.
		$valid_options = [
			'wpmuRoles',
			'wpmuQuotaCheck',
			'wpmuZipUpload',
			'wpmuImportFolder',
			'wpmuRoles',
		];

		foreach ( $valid_options as $option_name ) {
			$option_value = isset( $_POST[ $option_name ] ) ? intval( $_POST[ $option_name ] ) : 0;
			$ngg_options->set( $option_name, $option_value );
		}

		if ( isset( $_POST['gallerypath'] ) ) {
			$new_gallerypath = trailingslashit( sanitize_text_field( wp_unslash( $_POST['gallerypath'] ) ) );
			$result          = \Imagely\NGG\Settings\GalleryPathValidation::validate_relative_under_galleries_root( $new_gallerypath );
			if ( is_wp_error( $result ) ) {
				$messagetext[] = $result->get_error_message();
			} else {
				$ngg_options->set( 'gallerypath', $new_gallerypath );
				$ngg_options->save();
			}
		}

		$ngg_options->save();
		$messagetext[] = __( 'Updated successfully.', 'nggallery' );

		$messagetext = implode( ' ', $messagetext );
	}

	// message windows.
	if ( ! empty( $messagetext ) ) {
		echo '<!-- Last Action --><div id="message" class="updated fade"><p>' . esc_html( $messagetext ) . '</p></div>'; }

	?>

	<div class="wrap">
		<h2><?php esc_html_e( 'Network Options', 'nggallery' ); ?></h2>
		<form name="generaloptions" method="post">
	<?php wp_nonce_field( 'ngg_wpmu_settings' ); ?>
			<table class="form-table">
				<tr valign="top">
					<th align="left"><?php esc_html_e( 'Gallery path', 'nggallery' ); ?></th>
					<td><input type="text" size="50" name="gallerypath" value="<?php echo esc_attr( $ngg_options->get( 'gallerypath' ) ); ?>" /><br />
				<?php esc_html_e( 'This is the default path for all blogs. With the placeholder %BLOG_ID% you can organize the folder structure better.', 'nggallery' ); ?>
				<?php
				/* translators: %s: default gallery path */
				echo wp_kses_post( str_replace( '%s', '<code>wp-content/uploads/sites/%BLOG_ID%/nggallery/</code>', __( 'The default setting should be %s', 'nggallery' ) ) );
				?>
					</td>
				</tr>
				<tr>
					<th valign="top"><?php esc_html_e( 'Enable upload quota check', 'nggallery' ); ?>:</th>
					<td><input name="wpmuQuotaCheck" type="checkbox" value="1" <?php checked( '1', $ngg_options->get( 'wpmuQuotaCheck' ) ); ?> />
				<?php esc_html_e( 'Should work if the gallery is bellow the blog.dir', 'nggallery' ); ?>
					</td>
				</tr>
				<tr>
					<th valign="top"><?php esc_html_e( 'Enable zip upload option', 'nggallery' ); ?>:</th>
					<td><input name="wpmuZipUpload" type="checkbox" value="1" <?php checked( '1', $ngg_options->get( 'wpmuZipUpload' ) ); ?> />
				<?php esc_html_e( 'Allow users to upload zip folders.', 'nggallery' ); ?>
					</td>
				</tr>
				<tr>
					<th valign="top"><?php esc_html_e( 'Enable import function', 'nggallery' ); ?>:</th>
					<td>
						<label>
							<input name="wpmuImportFolder" type="checkbox" value="1" <?php checked( '1', $ngg_options->get( 'wpmuImportFolder' ) ); ?> />
							<?php esc_html_e( 'Allow users to import images folders from the server.', 'nggallery' ); ?>
						</label>
						<p class="description">
							<?php esc_html_e( 'When unchecked, subsite users cannot use Import Folder in the Imagely admin or its REST API. Save and reload the Imagely screen after changing this.', 'nggallery' ); ?>
						</p>
					</td>
				</tr>
				<tr>
					<th valign="top"><?php esc_html_e( 'Enable roles/capabilities', 'nggallery' ); ?>:</th>
					<td><input name="wpmuRoles" type="checkbox" value="1" <?php checked( '1', $ngg_options->get( 'wpmuRoles' ) ); ?> />
				<?php esc_html_e( 'Allow users to change the roles for other blog authors.', 'nggallery' ); ?>
					</td>
				</tr>
			</table>
			<div class="submit"><input type="submit" name="updateoption" value="<?php esc_attr_e( 'Update', 'nggallery' ); ?>"/></div>
		</form>
	</div>

	<?php
}