-
Notifications
You must be signed in to change notification settings - Fork 4
/
developer-share-buttons-widget.php
194 lines (176 loc) · 5.86 KB
/
developer-share-buttons-widget.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
<?php
/**
* The developer share buttons widgets
*
* @package dev-share-buttons
*/
if ( ! class_exists( 'Dev_Share_Buttons_Widget' ) ) {
add_action( 'widgets_init', array( 'DeveloperShareButtons', 'widget' ) );
/**
* Adds Dev_Share_Buttons_Widget widget.
*/
class Dev_Share_Buttons_Widget extends WP_Widget {
/**
* Register widget with WordPress.
*/
function __construct() {
parent::__construct(
DeveloperShareButtons::$slug_ . '_widget',
__( 'Developer Share Buttons', 'dev-share-buttons' ),
array(
'description' => __( 'Developer Share Buttons Widget', 'dev-share-buttons' ),
)
);
}
/**
* Front-end display of widget.
*
* @see WP_Widget::widget()
*
* @param array $args Widget arguments.
* @param array $instance Saved values from database.
*/
public function widget( $args, $instance ) {
$title = apply_filters( 'widget_title', $instance['title'] );
echo $args['before_widget'];
if ( ! empty( $title ) ) {
echo $args['before_title'] . $title . $args['after_title'];
}
if ( function_exists( 'the_dev_share_buttons' ) ) {
the_dev_share_buttons( $instance['services'], $instance['url'] );
}
echo $args['after_widget'];
}
/**
* Back-end widget form.
*
* @see WP_Widget::form()
*
* @param array $instance Previously saved values from database.
*/
public function form( $instance ) {
if ( isset( $instance['title'] ) ) {
$title = $instance['title'];
}
if ( isset( $instance['url'] ) ) {
$url = $instance['url'];
}
if ( isset( $instance['services'] ) ) {
$services = $instance['services'];
}
?>
<p>
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php if ( ! empty( $title ) ) { echo esc_attr( $title ); } ?>" />
</p>
<p>
<label for="<?php echo $this->get_field_id( 'url' ); ?>"><?php _e( 'Url:' ); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id( 'url' ); ?>" name="<?php echo $this->get_field_name( 'url' ); ?>" type="url" placeholder="Defaults to current url" value="<?php if ( ! empty( $url ) ) { echo esc_attr( $url ); } ?>" />
</p>
<p>
<label><?php _e( 'Services:' ); ?></label>
</p>
<p>
<?php foreach ( DeveloperShareButtons::get_services() as $service_id => $service ) : ?>
<?php if ( $service['url_structure'] ) : ?>
<label><input type="checkbox" class="checkbox" <?php checked( isset( $services ) && in_array( $service_id, $services ) ); ?> name="<?php echo $this->get_field_name( 'services' ); ?>[]" value="<?php echo esc_attr( $service_id ); ?>"> <?php _e( $service['title'] ); ?></label><br>
<?php endif; ?>
<?php endforeach; ?>
</p>
<?php
}
/**
* Sanitize widget form values as they are saved.
*
* @see WP_Widget::update()
*
* @param array $new_instance Values just sent to be saved.
* @param array $old_instance Previously saved values from database.
*
* @return array Updated safe values to be saved.
*/
public function update( $new_instance, $old_instance ) {
$instance = array();
$instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
$instance['url'] = ( ! empty( $new_instance['url'] ) ) ? strip_tags( $new_instance['url'] ) : '';
if ( is_array( $new_instance['services'] ) ) {
$instance['services'] = $new_instance['services'];
} else {
$instance['services'] = array();
}
return $instance;
}
}
}
if ( ! class_exists( 'Dev_Share_Buttons_Profiles_Widget' ) ) {
add_action( 'widgets_init', array( 'DeveloperShareButtons', 'widget' ) );
/**
* Adds Dev_Share_Buttons_Profiles_Widget widget.
*/
class Dev_Share_Buttons_Profiles_Widget extends WP_Widget {
/**
* Register widget with WordPress.
*/
function __construct() {
parent::__construct(
DeveloperShareButtons::$slug_ . '_profiles_widget',
__( 'Developer Share Buttons Profiles', 'dev-share-buttons-profiles' ),
array(
'description' => __( 'Developer Share Buttons Social Profiles Widget', 'dev-share-buttons-profiles' ),
)
);
}
/**
* Front-end display of widget.
*
* @see WP_Widget::widget()
*
* @param array $args Widget arguments.
* @param array $instance Saved values from database.
*/
public function widget( $args, $instance ) {
$title = apply_filters( 'widget_title', $instance['title'] );
echo $args['before_widget'];
if ( ! empty( $title ) ) {
echo $args['before_title'] . $title . $args['after_title'];
}
if ( function_exists( 'the_dev_profile_links' ) ) {
the_dev_profile_links();
}
echo $args['after_widget'];
}
/**
* Back-end widget form.
*
* @see WP_Widget::form()
*
* @param array $instance Previously saved values from database.
*/
public function form( $instance ) {
if ( isset( $instance['title'] ) ) {
$title = $instance['title'];
}
?>
<p>
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php if ( ! empty( $title ) ) { echo esc_attr( $title ); } ?>" />
</p>
<?php
}
/**
* Sanitize widget form values as they are saved.
*
* @see WP_Widget::update()
*
* @param array $new_instance Values just sent to be saved.
* @param array $old_instance Previously saved values from database.
*
* @return array Updated safe values to be saved.
*/
public function update( $new_instance, $old_instance ) {
$instance = array();
$instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
return $instance;
}
}
}