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
|
<form class="default room-search-form" action="<?= $action_link ?>"
method="get">
<button hidden name="room_search"></button>
<ul class="criteria-list">
<?= $this->render_partial(
'sidebar/room-search-criteria.php',
[
'criteria' => (
$selected_criteria['special__room_name']
?? $criteria['special__room_name']
),
'removable' => false
]
) ?>
<? if (isset($criteria['room_type'])): ?>
<?= $this->render_partial(
'sidebar/room-search-criteria.php',
[
'criteria' => $selected_criteria['room_type'] ?? $criteria['room_type'],
'removable' => false
]
) ?>
<? endif ?>
<?= $this->render_partial(
'sidebar/room-search-criteria.php',
[
'criteria' => (
$selected_criteria['room_category_id']
?? $criteria['room_category_id']
?? []
),
'removable' => false
]
) ?>
<?= $this->render_partial(
'sidebar/room-search-criteria.php',
[
'criteria' => (
$selected_criteria['special__building_location']
?? $criteria['special__building_location']
?? []
),
'removable' => false
]
) ?>
<? if (!empty($selected_criteria['special__building_location_label']) || !empty($criteria['special__building_location_label'])): ?>
<?= $this->render_partial(
'sidebar/room-search-criteria.php',
[
'criteria' => (
$selected_criteria['special__building_location_label']
?? $criteria['special__building_location_label']
),
'removable' => false
]
) ?>
<? endif; ?>
<?= $this->render_partial(
'sidebar/room-search-criteria-seats.php',
[
'criteria' => $selected_criteria['special__seats'] ?? $criteria['special__seats'],
'removable' => false
]
) ?>
<?= $this->render_partial(
'sidebar/room-search-criteria-available-range.php',
[
'criteria' => $selected_criteria['special__time_range']
?? $criteria['special__time_range']
]
) ?>
<? if ($selected_criteria): ?>
<? foreach ($selected_criteria as $s): ?>
<? if (preg_match('/^special__/', $s['name']) || ($s['name'] == 'room_type') || ($s['name'] == 'room_category_id')) {
continue;
} ?>
<?= $this->render_partial(
'sidebar/room-search-criteria.php',
[
'criteria' => $s,
'removable' => true
]
) ?>
<? endforeach ?>
<? endif ?>
<?= $this->render_partial(
'sidebar/room-search-criteria-templates.php'
) ?>
</ul>
<?= \Studip\Button::create(_('Suchen'), 'room_search') ?>
<?= \Studip\LinkButton::create(
_('Zurücksetzen'),
URLHelper::getURL('dispatch.php/resources/search/rooms', ['room_search_reset' => '1'])
) ?>
<label>
<?= _('Filter hinzufügen') ?>:
<select class="criteria-selector"
title="<?= _('Bitte aus dieser Liste Kriterien für die Raumsuche auswählen.')?>">
<option value=""></option>
<? foreach ($criteria as $name => $c): ?>
<? if (!$c['optional']) { continue; } ?>
<option data-title="<?= htmlReady($c['title'])?>"
value="<?= htmlReady($c['name'])?>"
data-type="<?= htmlReady($c['type']) ?>"
data-range-search="<?= htmlReady($c['range_search']) ?>"
data-select_options="<?= htmlReady(
!empty($c['options'])
? (is_array($c['options'])
? implode(';;', $c['options'])
: $c['options']
)
: ''
) ?>"
<?= in_array($name, array_keys($selected_criteria))
? 'class="invisible"'
: ''?>>
<?= htmlReady($c['title']) ?>
</option>
<? endforeach ?>
</select>
</label>
</form>
|