-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwidget.php
64 lines (53 loc) · 1.83 KB
/
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
<?php
class RKMD_Revue_Widget extends WP_Widget {
function __construct() {
parent::__construct(
'rkmd_revue_widget',
__( 'Revue inschrijfformulier widget', RKMD_REVUE_TRANS_DOMAIN ),
array(
'description' => __( 'Laat gebruikers inschrijven op jouw Revue lijst', RKMD_REVUE_TRANS_DOMAIN ),
)
);
}
public function widget( $args, $instance ) {
echo $args['before_widget'];
if ( ! empty( $instance['title'] ) ) {
echo $args['before_title'] . apply_filters( 'widget_title', $instance['title'] ) . $args['after_title'];
}
echo rkmd_revue_subscribe_form();
echo $args['after_widget'];
}
public function form( $instance ) {
$title = ! empty( $instance['title'] ) ? $instance['title'] : __( 'New title', 'text_domain' );
if ( ! _rkmd_revue_key_provided() ) {
echo '<p>' . __( 'Vul je API key in onder Settings > Revue', 'text_domain' ) . '</p>';
}
?>
<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 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;
}
}
function rkmd_revue_register_widget() {
register_widget( 'RKMD_Revue_Widget' );
}
add_action( 'widgets_init', 'rkmd_revue_register_widget' );