PluginProbe ʕ •ᴥ•ʔ
Custom Sidebars – Dynamic Sidebar Classic Widget Area Manager / 3.0.7.1
Custom Sidebars – Dynamic Sidebar Classic Widget Area Manager v3.0.7.1
trunk 2.1.2.0 3.0.0.0 3.0.0.1 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.7.1 3.0.8 3.0.8.1 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3 3.31 3.32 3.35 3.36 3.37 3.38
custom-sidebars / views / widgets-export.php
custom-sidebars / views Last commit date
col-sidebars.php 9 years ago import.php 9 years ago metabox.php 9 years ago quick-edit.php 9 years ago widgets-delete.php 10 years ago widgets-editor.php 10 years ago widgets-export.php 10 years ago widgets-location.php 9 years ago widgets.php 10 years ago
widgets-export.php
47 lines
1 <?php
2 /**
3 * Contents of the Import/Export popup in the widgets screen.
4 *
5 * This file is included in widgets.php.
6 */
7 ?>
8
9 <div class="wpmui-form module-export">
10 <h2 class="no-pad-top"><?php _e( 'Export', 'custom-sidebars' ); ?></h2>
11 <form class="frm-export">
12 <input type="hidden" name="do" value="export" />
13 <p>
14 <i class="dashicons dashicons-info light"></i>
15 <?php
16 _e(
17 'This will generate a complete export file containing all ' .
18 'your sidebars and the current sidebar configuration.', 'custom-sidebars'
19 );
20 ?>
21 </p>
22 <p>
23 <label for="description"><?php _e( 'Optional description for the export file:', 'custom-sidebars' ); ?></label><br />
24 <textarea id="description" name="export-description" placeholder="" cols="80" rows="3"></textarea>
25 </p>
26 <p>
27 <button class="button-primary">
28 <i class="dashicons dashicons-download"></i> <?php _e( 'Export', 'custom-sidebars' ); ?>
29 </button>
30 </p>
31 </form>
32 <hr />
33 <h2><?php _e( 'Import', 'custom-sidebars' ); ?></h2>
34 <form class="frm-preview-import">
35 <input type="hidden" name="do" value="preview-import" />
36 <p>
37 <label for="import-file"><?php _e( 'Export file', 'custom-sidebars' ); ?></label>
38 <input type="file" id="import-file" name="data" />
39 </p>
40 <p>
41 <button class="button-primary">
42 <i class="dashicons dashicons-upload"></i> <?php _e( 'Preview', 'custom-sidebars' ); ?>
43 </button>
44 </p>
45 </form>
46 </div>
47