Version Description
Download this release
Release Info
Developer | stevengliebe |
Plugin | Widget Importer & Exporter |
Version | 1.1.2 |
Comparing to | |
See all releases |
Code changes from version 1.1.1 to 1.1.2
- includes/import.php +1 -0
- includes/page.php +1 -1
- readme.txt +2 -2
- widget-importer-exporter.php +1 -1
includes/import.php
CHANGED
@@ -117,6 +117,7 @@ function wie_import_data( $data ) {
|
|
117 |
|
118 |
// Hook before import
|
119 |
do_action( 'wie_before_import' );
|
|
|
120 |
|
121 |
// Get all available widgets site supports
|
122 |
$available_widgets = wie_available_widgets();
|
117 |
|
118 |
// Hook before import
|
119 |
do_action( 'wie_before_import' );
|
120 |
+
$data = apply_filters( 'wie_import_data', $data );
|
121 |
|
122 |
// Get all available widgets site supports
|
123 |
$available_widgets = wie_available_widgets();
|
includes/page.php
CHANGED
@@ -25,7 +25,7 @@ function wie_add_import_export_page() {
|
|
25 |
// Add page
|
26 |
$page_hook = add_management_page(
|
27 |
__( 'Widget Importer & Exporter', 'widget-importer-exporter' ), // page title
|
28 |
-
__( 'Widget
|
29 |
'manage_options', // capability
|
30 |
'widget-importer-exporter', // menu slug
|
31 |
'wie_import_export_page_content' // callback for displaying page content
|
25 |
// Add page
|
26 |
$page_hook = add_management_page(
|
27 |
__( 'Widget Importer & Exporter', 'widget-importer-exporter' ), // page title
|
28 |
+
__( 'Widget Importer & Exporter', 'widget-importer-exporter' ), // menu title
|
29 |
'manage_options', // capability
|
30 |
'widget-importer-exporter', // menu slug
|
31 |
'wie_import_export_page_content' // callback for displaying page content
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: stevengliebe, churchthemes
|
3 |
Tags: widgets, widget, importer, exporter, import, export, backup
|
4 |
Requires at least: 3.5
|
5 |
-
Tested up to: 3.8
|
6 |
Stable tag: trunk
|
7 |
License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
8 |
|
@@ -32,7 +32,7 @@ The following translations are included.
|
|
32 |
|
33 |
= Developers =
|
34 |
|
35 |
-
The ``wie_before_import`` action fires after a file is uploaded but before the data is imported. ``wie_after_import`` fires after the data is imported. Other filters are used throughout.
|
36 |
|
37 |
Please jump on [GitHub](https://github.com/stevengliebe/widget-importer-exporter) to report issues and follow development.
|
38 |
|
2 |
Contributors: stevengliebe, churchthemes
|
3 |
Tags: widgets, widget, importer, exporter, import, export, backup
|
4 |
Requires at least: 3.5
|
5 |
+
Tested up to: 3.8.1
|
6 |
Stable tag: trunk
|
7 |
License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
8 |
|
32 |
|
33 |
= Developers =
|
34 |
|
35 |
+
The ``wie_before_import`` action fires after a file is uploaded but before the data is imported. ``wie_after_import`` fires after the data is imported. The ``wie_import_data`` filter can be used to filter data before it is imported. Other filters are used throughout. Submit an issue on GitHub if you need more hooks (pull requests encouraged).
|
36 |
|
37 |
Please jump on [GitHub](https://github.com/stevengliebe/widget-importer-exporter) to report issues and follow development.
|
38 |
|
widget-importer-exporter.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Widget Importer & Exporter
|
4 |
* Plugin URI: https://github.com/stevengliebe/widget-importer-exporter
|
5 |
* Description: Imports and exports widgets.
|
6 |
-
* Version: 1.1.
|
7 |
* Author: Steven Gliebe
|
8 |
* Author URI: http://stevengliebe.com
|
9 |
* License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
3 |
* Plugin Name: Widget Importer & Exporter
|
4 |
* Plugin URI: https://github.com/stevengliebe/widget-importer-exporter
|
5 |
* Description: Imports and exports widgets.
|
6 |
+
* Version: 1.1.2
|
7 |
* Author: Steven Gliebe
|
8 |
* Author URI: http://stevengliebe.com
|
9 |
* License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|