golden hour
/home/godaofbq/hyperbarics4u.com/wp-content/plugins/oxygen/component-framework/admin/views
⬆️ Go Up
Upload
File/Folder
Size
Actions
cpt-templates-metabox.php
11.52 KB
Del
OK
import-export-page.php
1.87 KB
Del
OK
svg-sets-page.php
1.33 KB
Del
OK
Edit: import-export-page.php
<div class="wrap"> <h2 class="import-export-title"><?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; ?> <div class="import-export-section"> <h3><?php _e("Export", "component-theme"); ?> Global Settings</h3> <p class="description"><?php _e("Copy the code below to export your global settings to another install.", "component-theme"); ?></p> <textarea cols="80" rows="10"><?php echo $export_json; ?></textarea> </div> <div class="import-export-section"> <h3><?php _e("Import", "component-theme"); ?> Global Settings</h3> <p class="description"><?php _e("Paste code from another install below and click Submit to import the global settings.", "component-theme"); ?></p> <form action="" method="post"> <?php wp_nonce_field('oxygen-import-json'); ?> <textarea cols="80" rows="10" name="ct_import_json"><?php echo isset($import_json)?$import_json:''; ?></textarea><br/> <label> <input class="import-export-checkbox" 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="import-export-button" value="<?php _e("Import Global Settings", "component-theme"); ?>" name="submit"> </p> </form> </div> </div>
Save