control.php
25 lines
| 1 | <span class="customize-control-title"> |
| 2 | <?php _e( 'Export', 'customizer-export-import' ); ?> |
| 3 | </span> |
| 4 | <span class="description customize-control-description"> |
| 5 | <?php _e( 'Click the button below to export the customization settings for this theme.', 'customizer-export-import' ); ?> |
| 6 | </span> |
| 7 | <input type="button" class="button" name="cei-export-button" value="<?php esc_attr_e( 'Export', 'customizer-export-import' ); ?>" /> |
| 8 | |
| 9 | <hr class="cei-hr" /> |
| 10 | |
| 11 | <span class="customize-control-title"> |
| 12 | <?php _e( 'Import', 'customizer-export-import' ); ?> |
| 13 | </span> |
| 14 | <span class="description customize-control-description"> |
| 15 | <?php _e( 'Upload a file to import customization settings for this theme.', 'customizer-export-import' ); ?> |
| 16 | </span> |
| 17 | <div class="cei-import-controls"> |
| 18 | <input type="file" name="cei-import-file" class="cei-import-file" /> |
| 19 | <label class="cei-import-images"> |
| 20 | <input type="checkbox" name="cei-import-images" value="1" /> <?php _e( 'Download and import image files?', 'customizer-export-import' ); ?> |
| 21 | </label> |
| 22 | <?php wp_nonce_field( 'cei-importing', 'cei-import' ); ?> |
| 23 | </div> |
| 24 | <div class="cei-uploading"><?php _e( 'Uploading...', 'customizer-export-import' ); ?></div> |
| 25 | <input type="button" class="button" name="cei-import-button" value="<?php esc_attr_e( 'Import', 'customizer-export-import' ); ?>" /> |