Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
jsarnowski/oxygen / admin / views / import-export-page.php
Size: Mime:
<div class="wrap">

	<h2><?php _e("Export/Import Oxygen Options", "component-theme"); ?></h2>

	<?php if ( isset($import_errors) && $import_errors ) : ?>
		
		<div id="message" class="error notice below-h2">
		<?php foreach ( $import_errors as $error ) : ?>
			
			<p><?php echo sanitize_text_field( $error ); ?></p>
		
		<?php endforeach; ?>
		</div>
	
	<?php endif; ?>

	<?php if ( isset($import_success) && $import_success ) : ?>
		
		<div id="message" class="updated notice below-h2">
		<?php foreach ( $import_success as $notice ) : ?>
			
			<p><?php echo sanitize_text_field( $notice ); ?></p>
		
		<?php endforeach; ?>
		</div>
	
	<?php endif; ?>
		
	<h3><?php _e("Export", "component-theme"); ?></h3>
	<p class="description"><?php _e("Copy code below to use on other install", "component-theme"); ?></p>

	<textarea cols="80" rows="10"><?php echo $export_json; ?></textarea>

	<h3><?php _e("Import", "component-theme"); ?></h3>
	<p class="description"><?php _e("Paste code below and click submit", "component-theme"); ?></p>
	
	<form action="" method="post">
		<textarea cols="80" rows="10" name="ct_import_json"><?php echo isset($import_json)?$import_json:''; ?></textarea><br/>
		<label>
			<input type="checkbox" name="oxy_replace_global_colors" value="yes"><?php _e("Import Global Colors","oxygen"); ?> <b><?php _e("(Warning: This will overwrite all Global Colors on the site.)","oxygen"); ?></b>
		</label>
		<p>
			<input type="submit" class="button button-primary" value="<?php _e("Submit", "component-theme"); ?>" name="submit">
		</p>
	</form>
</div>