-
Notifications
You must be signed in to change notification settings - Fork 7
/
thailottery.php
292 lines (281 loc) · 12.3 KB
/
thailottery.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
<?php
/*
Plugin Name: Thai Lottery Widget
Plugin URI: https://www.lottery.co.th/code
Description: แสดงผลสลากกินแบ่งรัฐบาลไทย พร้อมระบบตรวจหวยงวดล่าสุด ==เพิ่มการแสดงผล Widget ได้ที่หน้า <a href="widgets.php">วิดเจ็ต</a>== =*การใช้งาน Shortcode*= <strong>[thailottery width="100%" height="650"]</strong> นำโค้ดนี้ไปวางในส่วนของหน้าเพจหรือหน้าเนื้อหาเพื่อแสดงผล *** width=ความกว้าง ค่าปกติ 100%, height=ความสูง ค่าปกติ 650 และการแสดงผลสลากย้อนหลัง <strong>[lottofeed]</strong> สำหรับการแสดงผล 10 งวดล่าสุด ** จำกัดจำนวนงวดดังนี้ <strong>[lottofeed numbers="5"]</strong> หมายเลข 5 คือจำนวนงวดที่ต้องการให้แสดง
Version: 2.0
Author: siamlottery
Author URI: https://www.lottery.co.th
License: GPL2
*/
?>
<?php
class wp_thailottery_plugin extends WP_Widget {
// constructor
function __construct() {
parent::__construct(
'wp_thailottery_plugin', // Base ID
'Thai Lottery Widget: style 1', // Name
array( 'description' => 'widget สำหรับการแสดงผลสลากกินแบ่งรัฐบาลรูปแบบที่ 1 นำไปวางในส่วนที่ท่านต้องการให้แสดงผล.' ) // Args
);
}
function form($instance) {
if( $instance) {
$title = esc_attr($instance['title']);
$width = esc_attr($instance['width']);
$height = esc_attr($instance['height']);
} else {
$title = '';
$width = '100%';
$height = '650';
}
?>
<p>
<label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('หัวข้อ', 'wp_widget_plugin'); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" />
</p>
<p>
<label for="<?php echo $this->get_field_id('width'); ?>"><?php _e('ขนาดความกว้าง', 'wp_widget_plugin'); ?></label>
(ค่าปกติ 100%)
<input class="widefat" id="<?php echo $this->get_field_id('width'); ?>" name="<?php echo $this->get_field_name('width'); ?>" type="text" value="<?php echo $width; ?>" />
</p>
<p>
<label for="<?php echo $this->get_field_id('height'); ?>"><?php _e('ขนาดความสูง', 'wp_widget_plugin'); ?></label>
(ค่าปกติ 650)
<input class="widefat" id="<?php echo $this->get_field_id('height'); ?>" name="<?php echo $this->get_field_name('height'); ?>" type="text" value="<?php echo $height; ?>" />
</p>
<p>
การใช้งาน Shortcode<br/>
<strong>[thailottery width="100%" height="650"]</strong><br/>
นำโค้ดด้านบนนี้ไปวางในส่วนของหน้าเพจหรือหน้าเนื้อหาเพื่อแสดงผล
<br/><em>width=ความกว้าง ค่าปกติ 100%, height=ความสูง ค่าปกติ 650</em>
</p>
<?php
}
// update widget
function update($new_instance, $old_instance) {
$instance = $old_instance;
$instance['title'] = strip_tags($new_instance['title']);
$instance['height'] = strip_tags($new_instance['height']);
$instance['width'] = strip_tags($new_instance['width']);
return $instance;
}
// display widget
function widget($args, $instance) {
extract( $args );
$width = $instance[ 'width' ];
$height = $instance[ 'height' ];
$title = apply_filters('widget_title', $instance['title']);
echo $before_widget;
//echo '<div class="widget-text wp_widget_plugin_box">';
// Check if title is set
if ( $title ) {
echo $before_title . $title . $after_title;
}
if($width) {
$mywidth=$width;
}else{
$mywidth='100%';
}
if($height) {
$myheight=$height;
}else{
$myheight='650';
}
echo '<iframe src=https://www.lottery.co.th/share width='.$mywidth.' height='.$myheight.' frameborder=0></iframe>';
echo $after_widget;
}
}
class wp_thailottery_plugin2 extends WP_Widget {
// constructor
function __construct() {
parent::__construct(
'wp_thailottery_plugin2', // Base ID
'Thai Lottery Widget: style 2 (Only results)', // Name
array( 'description' => 'widget สำหรับการแสดงผลเฉพาะสลากกินแบ่งรัฐบาลอย่างเดียว (Only results).' ) // Args
);
}
function form($instance) {
if( $instance) {
$title = esc_attr($instance['title']);
$width = esc_attr($instance['width']);
$height = esc_attr($instance['height']);
} else {
$title = '';
$width = '100%';
$height = '340';
}
?>
<p>
<label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('หัวข้อ', 'wp_widget_plugin'); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" />
</p>
<p>
<label for="<?php echo $this->get_field_id('width'); ?>"><?php _e('ขนาดความกว้าง', 'wp_widget_plugin'); ?></label>
(ค่าปกติ 100%)
<input class="widefat" id="<?php echo $this->get_field_id('width'); ?>" name="<?php echo $this->get_field_name('width'); ?>" type="text" value="<?php echo $width; ?>" />
</p>
<p>
<label for="<?php echo $this->get_field_id('height'); ?>"><?php _e('ขนาดความสูง', 'wp_widget_plugin'); ?></label>
(ค่าปกติ 340)
<input class="widefat" id="<?php echo $this->get_field_id('height'); ?>" name="<?php echo $this->get_field_name('height'); ?>" type="text" value="<?php echo $height; ?>" />
</p>
<p>
การใช้งาน Shortcode สำหรับเฉพาะสลากกินแบ่งรัฐบาลอย่างเดียว<br/>
<strong>[thailottery2] หรือปรับแต่งขนาด [thailottery2 width="100%" height="340"]</strong><br/>
นำโค้ดด้านบนนี้ไปวางในส่วนของหน้าเพจหรือหน้าเนื้อหาเพื่อแสดงผล
<br/><em>width=ความกว้าง ค่าปกติ 100%, height=ความสูง ค่าปกติ 340</em>
</p>
<?php
}
// update widget
function update($new_instance, $old_instance) {
$instance = $old_instance;
$instance['title'] = strip_tags($new_instance['title']);
$instance['height'] = strip_tags($new_instance['height']);
$instance['width'] = strip_tags($new_instance['width']);
return $instance;
}
// display widget
function widget($args, $instance) {
extract( $args );
$width = $instance[ 'width' ];
$height = $instance[ 'height' ];
$title = apply_filters('widget_title', $instance['title']);
echo $before_widget;
if ( $title ) {
echo $before_title . $title . $after_title;
}
if($width) {
$mywidth=$width;
}else{
$mywidth='100%';
}
if($height) {
$myheight=$height;
}else{
$myheight='340';
}
echo '<iframe src=https://www.lottery.co.th/show width='.$mywidth.' height='.$myheight.' frameborder=0></iframe>';
echo $after_widget;
}
}
//show small size
class wp_thailottery_plugin3 extends WP_Widget {
// constructor
function __construct() {
parent::__construct(
'wp_thailottery_plugin3', // Base ID
'ขนาดเล็กพิเศษ : Thai Lottery Widget style 3', // Name
array( 'description' => 'widget แสดงผลสลากกินแบ่งขนาดเล็กพิเศษ (Only results).' ) // Args
);
}
function form($instance) {
if( $instance) {
$title = esc_attr($instance['title']);
$width = esc_attr($instance['width']);
$height = esc_attr($instance['height']);
} else {
$title = '';
$width = '210';
$height = '290';
}
?>
<p>
<label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('หัวข้อ', 'wp_widget_plugin'); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" />
</p>
<p>
<label for="<?php echo $this->get_field_id('width'); ?>"><?php _e('ขนาดความกว้าง', 'wp_widget_plugin'); ?></label>
(ค่าปกติ 210)
<input class="widefat" id="<?php echo $this->get_field_id('width'); ?>" name="<?php echo $this->get_field_name('width'); ?>" type="text" value="<?php echo $width; ?>" />
</p>
<p>
<label for="<?php echo $this->get_field_id('height'); ?>"><?php _e('ขนาดความสูง', 'wp_widget_plugin'); ?></label>
(ค่าปกติ 290)
<input class="widefat" id="<?php echo $this->get_field_id('height'); ?>" name="<?php echo $this->get_field_name('height'); ?>" type="text" value="<?php echo $height; ?>" />
</p>
<p>
การใช้งาน Shortcode ขนาดเล็กพิเศษ<br/>
<strong>[thailottery3] หรือปรับแต่งขนาด [thailottery3 width="210" height="290"]</strong><br/>
นำโค้ดด้านบนนี้ไปวางในส่วนของหน้าเพจหรือหน้าเนื้อหาเพื่อแสดงผล
<br/><em>width=ความกว้าง ค่าปกติ 210, height=ความสูง ค่าปกติ 290</em>
</p>
<?php
}
// update widget
function update($new_instance, $old_instance) {
$instance = $old_instance;
$instance['title'] = strip_tags($new_instance['title']);
$instance['height'] = strip_tags($new_instance['height']);
$instance['width'] = strip_tags($new_instance['width']);
return $instance;
}
// display widget
function widget($args, $instance) {
extract( $args );
$width = $instance[ 'width' ];
$height = $instance[ 'height' ];
$title = apply_filters('widget_title', $instance['title']);
echo $before_widget;
if ( $title ) {
echo $before_title . $title . $after_title;
}
if($width) {
$mywidth=$width;
}else{
$mywidth='210';
}
if($height) {
$myheight=$height;
}else{
$myheight='290';
}
echo '<iframe src=https://www.lottery.co.th/small width='.$mywidth.' height='.$myheight.' frameborder=0></iframe>';
echo $after_widget;
}
}
function sthailottery($atts, $content = null ) {
$a = shortcode_atts( array(
'width' => '100%',
'height' => '650',
), $atts );
return '<iframe src=https://www.lottery.co.th/share width='.$a['width'].' height='.$a['height'].' frameborder=0></iframe>';
}
function sthailottery2($atts, $content = null ) {
$a = shortcode_atts( array(
'width' => '100%',
'height' => '340',
), $atts );
return '<iframe src=https://www.lottery.co.th/show width='.$a['width'].' height='.$a['height'].' frameborder=0></iframe>';
}
function sthailottery3($atts, $content = null ) {
$a = shortcode_atts( array(
'width' => '210',
'height' => '290',
), $atts );
return '<iframe src=https://www.lottery.co.th/small width='.$a['width'].' height='.$a['height'].' frameborder=0></iframe>';
}
function rssthailottery($atts, $content = null ) {
$a = shortcode_atts( array(
'numbers' => '10',
), $atts );
$i = 0;
$url = "https://www.lottery.co.th/lotto/feed";
ob_start();
$rss = simplexml_load_file($url);
foreach($rss->channel->item as $item) { if ($i < $a['numbers']) {
print '<h3><a href="'.$item->link.'" title="'.$item->title.'">'.$item->title.'</a></h3><br />'.$item->description.''; } $i++;
}
$output = ob_get_clean();
return $output;
}
add_shortcode('thailottery', 'sthailottery');
add_shortcode('thailottery2', 'sthailottery2');
add_shortcode('thailottery3', 'sthailottery3');
add_shortcode('lottofeed', 'rssthailottery');
// register widget
add_action('widgets_init', create_function('', 'return register_widget("wp_thailottery_plugin");'));
add_action('widgets_init', create_function('', 'return register_widget("wp_thailottery_plugin2");'));
add_action('widgets_init', create_function('', 'return register_widget("wp_thailottery_plugin3");'));
?>