Version Description
Download this release
Release Info
Developer | inc2734 |
Plugin | MW WP Form |
Version | 0.9.2 |
Comparing to | |
See all releases |
Code changes from version 0.9.1 to 0.9.2
- mw-wp-form.php +14 -14
- readme.txt +4 -1
mw-wp-form.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: MW WP Form
|
4 |
* Plugin URI: http://2inc.org/blog/category/products/wordpress_plugins/mw-wp-form/
|
5 |
* Description: MW WP Form can create mail form with a confirmation screen.
|
6 |
-
* Version: 0.9.
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: http://2inc.org
|
9 |
* Created: September 25, 2012
|
@@ -49,11 +49,19 @@ class mw_wp_form {
|
|
49 |
* __construct
|
50 |
*/
|
51 |
public function __construct() {
|
52 |
-
add_action( 'plugins_loaded', array( $this, '
|
53 |
// 有効化した時の処理
|
54 |
register_activation_hook( __FILE__, array( __CLASS__, 'activation' ) );
|
55 |
// アンインストールした時の処理
|
56 |
register_uninstall_hook( __FILE__, array( __CLASS__, 'uninstall' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
|
58 |
// 管理画面の実行
|
59 |
include_once( plugin_dir_path( __FILE__ ) . 'system/mw_wp_form_admin_page.php' );
|
@@ -76,7 +84,7 @@ class mw_wp_form {
|
|
76 |
include_once( plugin_dir_path( __FILE__ ) . 'system/mw_mail.php' );
|
77 |
include_once( plugin_dir_path( __FILE__ ) . 'system/mw_session.php' );
|
78 |
include_once( plugin_dir_path( __FILE__ ) . 'system/mw_validation.php' );
|
79 |
-
add_action( 'wp', array( $this, '
|
80 |
add_action( 'wp_print_styles', array( $this, 'original_style' ) );
|
81 |
}
|
82 |
|
@@ -135,10 +143,10 @@ class mw_wp_form {
|
|
135 |
}
|
136 |
|
137 |
/**
|
138 |
-
*
|
139 |
-
*
|
140 |
*/
|
141 |
-
public function
|
142 |
global $post;
|
143 |
if ( empty( $post->ID ) ) return;
|
144 |
|
@@ -222,14 +230,6 @@ class mw_wp_form {
|
|
222 |
add_shortcode( 'mwform_complete_message', array( $this, '_mwform_complete_message' ) );
|
223 |
}
|
224 |
|
225 |
-
/**
|
226 |
-
* load_plugin_textdomain
|
227 |
-
* 言語ファイルの読み込み
|
228 |
-
*/
|
229 |
-
public function load_plugin_textdomain() {
|
230 |
-
load_plugin_textdomain( MWF_Config::DOMAIN, false, basename( dirname( __FILE__ ) ) . '/languages' );
|
231 |
-
}
|
232 |
-
|
233 |
/**
|
234 |
* is_management_different_url
|
235 |
* 管理画面作成・個別URLのときtrueを返す
|
3 |
* Plugin Name: MW WP Form
|
4 |
* Plugin URI: http://2inc.org/blog/category/products/wordpress_plugins/mw-wp-form/
|
5 |
* Description: MW WP Form can create mail form with a confirmation screen.
|
6 |
+
* Version: 0.9.2
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: http://2inc.org
|
9 |
* Created: September 25, 2012
|
49 |
* __construct
|
50 |
*/
|
51 |
public function __construct() {
|
52 |
+
add_action( 'plugins_loaded', array( $this, 'init' ) );
|
53 |
// 有効化した時の処理
|
54 |
register_activation_hook( __FILE__, array( __CLASS__, 'activation' ) );
|
55 |
// アンインストールした時の処理
|
56 |
register_uninstall_hook( __FILE__, array( __CLASS__, 'uninstall' ) );
|
57 |
+
}
|
58 |
+
|
59 |
+
/**
|
60 |
+
* init
|
61 |
+
* ファイルの読み込み等
|
62 |
+
*/
|
63 |
+
public function init() {
|
64 |
+
load_plugin_textdomain( MWF_Config::DOMAIN, false, basename( dirname( __FILE__ ) ) . '/languages' );
|
65 |
|
66 |
// 管理画面の実行
|
67 |
include_once( plugin_dir_path( __FILE__ ) . 'system/mw_wp_form_admin_page.php' );
|
84 |
include_once( plugin_dir_path( __FILE__ ) . 'system/mw_mail.php' );
|
85 |
include_once( plugin_dir_path( __FILE__ ) . 'system/mw_session.php' );
|
86 |
include_once( plugin_dir_path( __FILE__ ) . 'system/mw_validation.php' );
|
87 |
+
add_action( 'wp', array( $this, 'main' ) );
|
88 |
add_action( 'wp_print_styles', array( $this, 'original_style' ) );
|
89 |
}
|
90 |
|
143 |
}
|
144 |
|
145 |
/**
|
146 |
+
* main
|
147 |
+
* 表示画面でのプラグインの処理等。
|
148 |
*/
|
149 |
+
public function main() {
|
150 |
global $post;
|
151 |
if ( empty( $post->ID ) ) return;
|
152 |
|
230 |
add_shortcode( 'mwform_complete_message', array( $this, '_mwform_complete_message' ) );
|
231 |
}
|
232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
/**
|
234 |
* is_management_different_url
|
235 |
* 管理画面作成・個別URLのときtrueを返す
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: plugin, form, confirm, preview
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 3.5
|
7 |
-
Stable tag: 0.9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -36,6 +36,9 @@ http://2inc.org/blog/category/products/wordpress_plugins/mw-wp-form/
|
|
36 |
|
37 |
== Changelog ==
|
38 |
|
|
|
|
|
|
|
39 |
= 0.9.1 =
|
40 |
* Bug fix: 画像・ファイルアップロードフィールドのクラス名が正しく設定されていないのを修正
|
41 |
* Bug fix: 画像・ファイルアップロードフィールドで未アップロード時でも確認画面に項目が表示されてしまうのを修正
|
4 |
Tags: plugin, form, confirm, preview
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 3.5
|
7 |
+
Stable tag: 0.9.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
36 |
|
37 |
== Changelog ==
|
38 |
|
39 |
+
= 0.9.1 =
|
40 |
+
* Bug fix: ファイルの読み込みタイミング等を変更
|
41 |
+
|
42 |
= 0.9.1 =
|
43 |
* Bug fix: 画像・ファイルアップロードフィールドのクラス名が正しく設定されていないのを修正
|
44 |
* Bug fix: 画像・ファイルアップロードフィールドで未アップロード時でも確認画面に項目が表示されてしまうのを修正
|