forked from rulko/yandex-money-wordpress-shortcode
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
195 lines (159 loc) · 8.12 KB
/
index.php
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<?php
/*
Plugin Name: Яндекс.Деньги - Форма оплаты
Description: Добавляет шорткод, для создания формы оплаты через систему Яндекс.Деньги. Шорткод вида [yandex_money_payment_form scid=xxx shop_id=xxx]
Plugin URI: https://github.com/systemo-biz/yandex-money-wordpress-shortcode
Author: Systemo
Author URI: http://systemo.biz
//Support https://github.com/afragen/github-updater
GitHub Plugin URI: https://github.com/systemo-biz/yandex-money-wordpress-shortcode
GitHub Branch: master
Version: 20160406
*/
add_shortcode( 'yandex_money_payment_form', function( $atts ) {
extract( shortcode_atts( array(
'scid' => '', //ИД Яндекс.Кассы
'shop_id' => '', //ИД магазина для Яндекс.Кассы
'customer_number' => '', //Номер заказа или клиента
'Sum' => '', //Сумма оплаты
'CustName' => '', //Наименование клиента
'CustAddr' => '', //Адрес доставки
'CustEMail' => '', // Электропочта
'OrderDetails' => '', //Комментарий или описание заказа
'PaymentType' => 'YM', //Тип оплаты
'cn_input' => false, //Нужно ли выводить поле номера заказа/клиента
'ca_input' => false, //Нужно ли выводить поле деталей заказа
), $atts ) );
if ( empty($scid) || empty($shop_id) ) return 'Нужно указать в шорткоде параметры scid & shop_id';
if ( empty($CustomerNumber) )
if ( isset($_GET['customer_number']) ) $customer_number = $_GET['customer_number'];
if ( empty($Sum) )
if ( !empty($_GET['Sum']) ) $Sum = $_GET['Sum'];
if ( empty($CustName) )
if ( !empty($_GET['CustName']) ) $CustName = $_GET['CustName'];
if ( empty($CustAddr) )
if ( !empty($_GET['CustAddr']) ) $CustAddr = $_GET['CustAddr'];
if ( empty($CustEMail) )
if ( !empty($_GET['CustEMail']) ) $CustEMail = $_GET['CustEMail'];
if ( empty($OrderDetails) )
if ( !empty($_GET['OrderDetails']) ) $OrderDetails = $_GET['OrderDetails'];
if ( !empty($_GET['PaymentType']) ) $PaymentType = $_GET['PaymentType'];
ob_start();
?>
<div class="form-pay-ya-money et_pb_contact">
<form role="form" class="pure-form pure-form-stacked clearfix" name="ShopForm" method="POST" action="https://money.yandex.ru/eshop.xml">
<fieldset>
<legend>Обязательные данные</legend>
<div class="sum_div">
<label for="form-order-sum">Сумма</label>
<small>(в рублях)</small>
<input id="form-order-sum" class="form-control pure-input-1" type="text" name="Sum" value="<?php echo $Sum; ?>">
</div>
<div class="cp-form-order-email">
<label for="form-order-email">Электронная почта</label>
<input id="form-order-email" class="form-control pure-input-1" type="email" name="CustEMail" value="<?php echo $CustEMail; ?>" placeholder="example@mail.to">
</div>
</fieldset>
<hr>
<fieldset>
<legend>Дополнительные данные</legend>
<div class="cp-form-order-name">
<label for="form-order-name">Имя</label>
<small>(Ф.И.О. или название организации)</small>
<input id="form-order-name" class="form-control pure-input-1" type="text" name="CustName" value="<?php echo $CustName; ?>">
</div>
<?php if($cn_input): ?>
<div class="order_number">
<label for="form-order-id">Номер заказа</label>
<small>(Если есть, может быть номер клиента, счета, заказа)</small>
<input id="form-order-id" class="form-control pure-input-1" name="CustomerNumber" type="text" value="<?php echo $customer_number; ?>">
</div>
<?php endif;?>
<?php if($ca_input): ?>
<div class="cp-form-order-address">
<label for="form-order-address">Адрес</label>
<small>(Город, улица, дом для доставки или место жительства плательщица)</small>
<input id="form-order-address" class="form-control pure-input-1" type="text" name="CustAddr" value="<?php echo $CustAddr; ?>">
</div>
<?php endif;?>
<div class="cp-form-order-description">
<label for="form-order-description">Комментарий к оплате</label>
<textarea id="form-order-description" class="form-control pure-input-1" rows="5" name="OrderDetails"><?php echo $OrderDetails; ?></textarea>
</div>
</fieldset>
<hr>
<fieldset>
<legend>Способы оплаты</legend>
<div class="list-pay-item list-pay-item-qw-wrapperm">
<label for="form-order-qw">
<input id="form-order-qw" name="PaymentType" <?php if ($PaymentType == "QW"){echo'checked="checked"';} ?> value="" type="radio"> Через QIWI-кошелек
</label>
</div>
<div class="list-pay-item list-pay-item-ym-wrapperm">
<label for="form-order-ym">
<input id="form-order-ym" name="PaymentType" <?php if ($PaymentType == "YM"){echo'checked="checked"';} ?> value="" type="radio"> Со счета в Яндекс.Деньгах
</label>
</div>
<div class="list-pay-item list-pay-item-ac-wrapperm">
<label for="form-order-ac">
<input id="form-order-ac" name="PaymentType" <?php if ($PaymentType == "AC"){echo'checked="checked"';} ?> value="AC" type="radio"> С банковской карты
</label>
</div>
<div class="list-pay-item list-pay-item-wm-wrapperm">
<label for="form-order-wm">
<input id="form-order-wm" name="PaymentType" <?php if ($PaymentType == "WM"){echo'checked="checked"';} ?> value="WM" type="radio"> Сo счета WebMoney
</label>
</div>
<div class="list-pay-item list-pay-item-sb-wrapper">
<label for="form-order-sb">
<input id="form-order-sb" name="PaymentType" <?php if ($PaymentType == "SB"){echo'checked="checked"';} ?> value="SB" type="radio"> Через Сбербанк Онлайн
</label>
</div>
<div class="list-pay-item list-pay-item-ab-wrapper">
<label for="form-order-ab">
<input id="form-order-ab" name="PaymentType" <?php if ($PaymentType == "AB"){echo'checked="checked"';} ?> value="AB" type="radio"> Через АльфаБанк Клик
</label>
</div>
<div class="list-pay-item list-pay-item-gp-wrapper">
<label for="form-order-gp">
<input id="form-order-gp" name="PaymentType" <?php if ($PaymentType == "GP"){echo'checked="checked"';} ?> value="GP" type="radio"> По коду через терминал
</label>
</div>
</fieldset>
<hr>
<input class="btn pure-button pure-button-primary" type="submit" value="Оплатить">
<input type="hidden" name="scid" value="<?php echo $scid; ?>">
<input type="hidden" name="ShopID" value="<?php echo $shop_id; ?>">
</form>
</div>
<?php
$data = ob_get_contents();
ob_end_clean();
return $data;
});
add_action('wp_head', 'add_cp_yamoney_form_style');
function add_cp_yamoney_form_style() {
global $post;
if(isset($post->post_content) AND has_shortcode( $post->post_content, 'yandex_money_payment_form')){
?>
<style type="text/css" id="yandex_money_payment_form_style">
.form-pay-ya-money {
!border-width: 1px;
!border-color: black;
}
.form-pay-ya-money input[type="text"] {
!width: 100%;
}
.form-pay-ya-money textarea {
!width: 100%;
}
</style>
<?php
}
}
function add_ss_in_plugin_ya_money_sh(){
//Загрузка PureCSS v 0.6.0
wp_register_style( 'purecss', '//yui.yahooapis.com/pure/0.6.0/pure-min.css', $dep=array(), $ver='0.6.0' );
wp_enqueue_style( 'purecss' );
}
add_action( 'wp_enqueue_scripts', 'add_ss_in_plugin_ya_money_sh' );