PluginProbe ʕ •ᴥ•ʔ
Widget Options – Advanced Conditional Visibility for Gutenberg Blocks & Classic Widgets / 4.2.3
Widget Options – Advanced Conditional Visibility for Gutenberg Blocks & Classic Widgets v4.2.3
4.2.5 4.2.4 trunk 3.7.10 3.7.11 3.7.12 3.7.13 3.7.14 3.7.2 3.7.5 3.7.6 3.7.7 3.7.8 3.7.9 3.8 3.8.1 3.8.10 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.8.8 3.8.9 3.8.9.1 3.9.0 3.9.1 3.9.2 3.9.3 3.9.4 3.9.5 3.9.6 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.5.1 4.0.6 4.0.6.1 4.0.7 4.0.8 4.0.9 4.1.0 4.1.1 4.1.2 4.1.3 4.2.0 4.2.1 4.2.2 4.2.3
widget-options / includes / admin / settings / modules / import-export.php
widget-options / includes / admin / settings / modules Last commit date
acf.php 2 months ago alignment.php 2 months ago animation.php 2 months ago beaver_builder.php 2 months ago cache.php 2 months ago classes.php 2 months ago classic-widgets-screen.php 2 months ago clone.php 2 months ago columns.php 2 months ago custom-sidebar.php 2 months ago dates.php 2 months ago devices.php 2 months ago disable_widgets.php 2 months ago elementor.php 2 months ago fixed.php 2 months ago import-export.php 2 months ago links.php 2 months ago logic.php 2 months ago move.php 2 months ago page-and-post-block.php 2 months ago permission.php 2 months ago roles.php 2 months ago search.php 2 months ago shortcodes.php 2 months ago sidebar-more_plugins.php 2 months ago sidebar-opt_in.php 2 months ago sidebar-support_box.php 2 months ago sidebar-upsell_pro.php 2 months ago siteorigin.php 2 months ago sliding.php 2 months ago state.php 2 months ago styling.php 2 months ago taxonomies.php 2 months ago title.php 2 months ago urls.php 2 months ago visibility.php 2 months ago widget-area.php 2 months ago
import-export.php
68 lines
1 <?php
2 /**
3 * Import & Export Settings Module
4 * Settings > Widget Options :: Import & Export
5 *
6 * @copyright Copyright (c) 2017, Jeffrey Carandang
7 * @since 4.4
8 */
9
10 // Exit if accessed directly
11 if ( ! defined( 'ABSPATH' ) ) exit;
12
13 /**
14 * Create Card Module for Import & Export
15 *
16 * @since 4.4
17 * @global $widget_options
18 * @return void
19 */
20
21 /*
22 * Note: Please add a class "no-settings" in the <li> card if the card has no additional configuration, if there are configuration please remove the class
23 */
24
25 function widgetopts_settings_import_export(){
26 global $widget_options;
27 //avoid issue after update
28 if( !isset( $widget_options['import_export'] ) ){
29 $widget_options['import_export'] = '';
30 }
31 ?>
32 <li class="widgetopts-module-card widgetopts-module-card-no-settings no-settings <?php echo ( $widget_options['import_export'] == 'activate' ) ? 'widgetopts-module-type-enabled' : 'widgetopts-module-type-disabled'; ?>" id="widgetopts-module-card-import_export" data-module-id="import_export">
33 <div class="widgetopts-module-card-content">
34 <h2><?php _e( 'Import & Export Widgets', 'widget-options' );?></h2>
35 <p class="widgetopts-module-desc">
36 <?php _e( 'Import or Export all your widgets with associated sidebar widget area easily.', 'widget-options' );?>
37 </p>
38
39 <div class="widgetopts-module-actions hide-if-no-js">
40 <?php if( $widget_options['import_export'] == 'activate' ){ ?>
41 <button class="button button-secondary widgetopts-toggle-settings"><?php _e( 'Learn More', 'widget-options' );?></button>
42 <button class="button button-secondary widgetopts-toggle-activation"><?php _e( 'Disable', 'widget-options' );?></button>
43 <?php }else{ ?>
44 <button class="button button-secondary widgetopts-toggle-settings"><?php _e( 'Learn More', 'widget-options' );?></button>
45 <button class="button button-primary widgetopts-toggle-activation"><?php _e( 'Enable', 'widget-options' );?></button>
46 <?php } ?>
47
48 </div>
49
50 </div>
51
52 <?php widgetopts_modal_start( $widget_options['import_export'] ); ?>
53 <span class="dashicons widgetopts-dashicons widgetopts-no-top dashicons-download"></span>
54 <h3 class="widgetopts-modal-header"><?php _e( 'Import & Export Widgets', 'widget-options' );?></h3>
55 <p>
56 <?php _e( 'Enabling this feature will give you additional menu under <a href="'. esc_url( admin_url( 'tools.php?page=widgetopts_migrator_settings' ) ) .'"><strong>Tools > Import/Export Widgets</strong></a>. This will give you the easiest option to export and import your widgets. Creating backup and restore of your widgets can be done really simple!', 'widget-options' );?>
57 </p>
58 <p class="widgetopts-settings-section">
59 <?php _e( 'No additional settings available.', 'widget-options' );?>
60 </p>
61 <?php widgetopts_modal_end( $widget_options['import_export'] ); ?>
62
63 </li>
64 <?php
65 }
66 add_action( 'widgetopts_module_cards', 'widgetopts_settings_import_export', 64 );
67 ?>
68