-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwidget-search.php
More file actions
86 lines (75 loc) · 3.42 KB
/
widget-search.php
File metadata and controls
86 lines (75 loc) · 3.42 KB
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
<?php
require_once(TIMEXPAPI__PLUGIN_DIR . "search-form-renderer.php");
class TimExpediaApiSearchWidget extends WP_Widget {
/**
* Register widget with WordPress.
*/
function __construct() {
parent::__construct(
'timexpapi_search', // Base ID
__( 'Search Hotel', 'text_domain' ), // Name
array( 'description' => __( 'Search Form for Hotel query', 'text_domain' ), ) // Args
);
}
/**
* 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 ) {
wp_enqueue_script('jquery-ui-datepicker');
wp_enqueue_script('jquery-ui-autocomplete');
wp_enqueue_style('jquery-style', 'https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css');
wp_enqueue_style('timexpapi-search-style', TIMEXPAPI__PLUGIN_URL.'css/search-form.css');
wp_enqueue_script('handlebars', TIMEXPAPI__PLUGIN_URL.'js/3party/handlebars.runtime-v3.0.3.js', array());
wp_enqueue_script('timexpapi-helpers', TIMEXPAPI__PLUGIN_URL.'js/search-form/helpers.js', array('jquery', 'handlebars'));
wp_enqueue_script('timexpapi-templates', TIMEXPAPI__PLUGIN_URL.'js/search-form/templates.js', array('handlebars', 'timexpapi-helpers'));
wp_enqueue_script('timexpapi-namespace', TIMEXPAPI__PLUGIN_URL.'js/search-form/namespace.js', array('jquery'));
wp_enqueue_script('timexpapi-datepicker', TIMEXPAPI__PLUGIN_URL.'js/search-form/datepicker-module.js', array('jquery'));
wp_enqueue_script('timexpapi-rooms', TIMEXPAPI__PLUGIN_URL.'js/search-form/rooms-module.js', array('jquery'));
wp_enqueue_script('timexpapi-destination', TIMEXPAPI__PLUGIN_URL.'js/search-form/destination-module.js', array('jquery', 'jquery-ui-autocomplete'));
wp_enqueue_script('timexpapi-app', TIMEXPAPI__PLUGIN_URL.'js/search-form/app.js', array('jquery',
'timexpapi-namespace', 'timexpapi-templates', 'timexpapi-datepicker', 'timexpapi-rooms', 'timexpapi-destination'));
echo $args['before_widget'];
if ( ! empty( $instance['title'] ) ) {
echo $args['before_title'] . apply_filters( 'widget_title', $instance['title'] ). $args['after_title'];
}
$params = array();
TimExpediaApiFormRenderer::renderForm($params);
echo $args['after_widget'];
}
/**
* Back-end widget form.
*
* @see WP_Widget::form()
*
* @param array $instance Previously saved values from database.
*/
public function form( $instance ) {
$title = ! empty( $instance['title'] ) ? $instance['title'] : __( 'New title', 'text_domain' );
?>
<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;
}
}