1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
<?php
class PostmanPluginFeedback {
function __construct() {
add_filter( 'plugin_action_links_' . plugin_basename( POST_BASE ), array( $this, 'insert_deactivate_link_id' ) );
add_action( 'wp_ajax_post_user_feedback', array( $this, 'post_user_feedback' ) );
global $pagenow;
if ( 'plugins.php' === $pagenow ) {
add_action( 'admin_enqueue_scripts', array( $this, 'load_scripts' ) );
add_action( 'admin_head', array( $this, 'admin_head' ) );
add_action( 'admin_footer', array( $this, 'add_deactivation_dialog' ) );
}
}
function load_scripts() {
wp_enqueue_style( 'wp-jquery-ui-dialog' );
wp_register_script( 'post-feedback', plugins_url( 'script/feedback/feedback.js', POST_BASE ), array( 'jquery', 'jquery-ui-core', 'jquery-ui-dialog' ), false, true );
wp_localize_script( 'post-feedback', 'post_feedback', array( 'admin_ajax' => admin_url( 'admin-ajax.php' ) ) );
wp_enqueue_script( 'post-feedback' );
}
function post_user_feedback() {
if ( ! check_ajax_referer() ) {
die( 'security error' );
}
$payload = array(
'reason' => sanitize_text_field( $_POST['reason'] ),
'other_input' => isset( $_POST['other_input'] ) ? sanitize_text_field( $_POST['other_input'] ) : '',
);
if ( isset( $_POST['support'] ) ) {
$payload['support']['email'] = sanitize_email( $_POST['support']['email'] );
$payload['support']['title'] = sanitize_text_field( $_POST['support']['title'] );
$payload['support']['text'] = sanitize_textarea_field( $_POST['support']['text'] );
}
$args = array(
'body' => $payload,
'timeout' => 20,
);
$result = wp_remote_post( 'https://postmansmtp.com/feedback', $args );
die( 'success' );
}
function admin_head() {
?>
<style type="text/css">
.postman-feedback-dialog-form .ui-dialog-buttonset {
float: none !important;
}
#postman-feedback-dialog-go {
float: left;
}
#postman-feedback-dialog-skip, #postman-feedback-dialog-cancel {
float: right;
}
#postman-feedback-dialog-content p {
font-size: 1.1em;
}
.postman-reason-input textarea {
margin-top: 10px;
width: 100%;
height: 150px;
}
.postman-feedback-dialog-form .ui-icon {
display: none;
}
#postman-feedback-dialog-go.postman-ajax-progress .ui-icon {
text-indent: inherit;
display: inline-block !important;
vertical-align: middle;
animation: rotate 2s infinite linear;
}
#postman-feedback-dialog-go.postman-ajax-progress .ui-button-text {
vertical-align: middle;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
<?php
}
function insert_deactivate_link_id( $links ) {
$links['deactivate'] = str_replace( '<a', '<a id="postman-plugin-disbale-link"', $links['deactivate'] );
return $links;
}
function add_deactivation_dialog() {
?>
<div id="postman-feedback-dialog-content" style="display: none;">
<p>
I feel bad to see anyone stop using Post SMTP.<br>
I would love to get a small feedback from you.
</p>
<form>
<?php wp_nonce_field(); ?>
<ul id="postman-deactivate-reasons">
<li class="postman-reason">
<label>
<span><input value="bad support" type="radio" name="reason" checked/></span>
<span><?php _e( 'Bad Support', 'postman' ); ?></span>
</label>
</li>
<li class="postman-reason postman-custom-input">
<label>
<span><input value="Found a better plugin" type="radio" name="reason" /></span>
<span><?php _e( 'Found a better plugin', 'postman' ); ?></span>
</label>
</li>
<li class="postman-reason postman-custom-input">
<label>
<span><input value="<?php echo esc_attr( "The plugin didn't work" ); ?>" type="radio" name="reason" /></span>
<span><?php _e( 'The plugin didn\'t work', 'postman' ); ?></span>
</label>
</li>
<li class="postman-reason postman-custom-input">
<label>
<span><input value="Other Reason" type="radio" name="reason" /></span>
<span><?php _e( 'Other Reason', 'postman' ); ?></span>
</label>
</li>
<li class="postman-reason postman-support-input">
<label>
<span><input value="Support Ticket" type="radio" name="reason" /></span>
<span><?php _e( 'Open A support ticket for me', 'postman' ); ?></span>
</label>
<div class="postman-reason-input" style="display: none;">
<input type="email" name="support[email]" placeholder="Your Email Address" required>
<input type="text" name="support[title]" placeholder="The Title" required>
<textarea name="support[text]" placeholder="Describe the issue" required></textarea>
</div>
</li>
</ul>
<div class="postman-reason-input" style="display: none;">
<input type="text" class="regular-text" name="other_input" placeholder="Do you mind help and give more detailes?">
</div>
</form>
</div>
<?php
}
}
new PostmanPluginFeedback;
|