@ -1,6 +1,7 @@
<?php
function user_shifts() {
global $user, $privileges;
// Löschen einzelner Schicht-Einträge (Also Belegung einer Schicht von Engeln) durch Admins
if (isset ($_REQUEST['entry_id']) & & in_array('user_shifts_admin', $privileges)) {
if (isset ($_REQUEST['entry_id']) & & preg_match("/^[0-9]*$/", $_REQUEST['entry_id']))
@ -210,37 +211,62 @@ function user_shifts() {
'comment' => ""
));
} else {
return view_user_shifts();
}
}
function view_user_shifts() {
global $user, $privileges;
global $ical_shifts;
$days = sql_select("SELECT DISTINCT DATE(FROM_UNIXTIME(`start`)) AS `id`, DATE(FROM_UNIXTIME(`start`)) AS `name` FROM `Shifts`");
$rooms = sql_select("SELECT `RID` AS `id`, `Name` AS `name` FROM `Room` WHERE `show`='Y' ORDER BY `Name`");
$types = sql_select("SELECT `id`, `name` FROM `AngelTypes`");
$filled = array(array('id' => '1', 'name' => 'Volle'), array('id' => '0', 'name' => 'Freie'));
$filled = array (
array (
'id' => '1',
'name' => 'Volle'
),
array (
'id' => '0',
'name' => 'Freie'
)
);
if (!isset ($_SESSION['user_shifts']))
$_SESSION['user_shifts'] = array ();
if (!isset ($_SESSION['user_shifts']['filled'])) {
$_SESSION['user_shifts']['filled'] = array (0);
$_SESSION['user_shifts']['filled'] = array (
0
);
}
foreach(array('rooms', 'types', 'filled') as $key) {
foreach (array (
'rooms',
'types',
'filled'
) as $key) {
if (isset ($_REQUEST[$key])) {
$filtered = array_filter($_REQUEST[$key], 'is_numeric');
if (!empty($filtered))
if (!empty ($filtered))
$_SESSION['user_shifts'][$key] = $filtered;
unset($filtered);
unset ($filtered);
}
if (!isset ($_SESSION['user_shifts'][$key]))
$_SESSION['user_shifts'][$key] = array_map('get_ids_from_array', $$key);
}
if (isset($_REQUEST['days'])) {
if (isset ($_REQUEST['days'])) {
$filtered = array_filter($_REQUEST['days'], create_function('$a', 'return preg_match("/^\d\d\d\d-\d\d-\d\d\\$/", $a);'));
if (!empty($filtered))
if (!empty ($filtered))
$_SESSION['user_shifts']['days'] = $filtered;
unset($filtered);
unset ($filtered);
}
if (!isset ($_SESSION['user_shifts']['days']))
$_SESSION['user_shifts']['days'] = array(date('Y-m-d'));
$_SESSION['user_shifts']['days'] = array (
date('Y-m-d')
);
$shifts = sql_select("SELECT * FROM `Shifts`
WHERE `RID` IN (" . implode(',', $_SESSION['user_shifts']['rooms']) . ")
@ -262,7 +288,7 @@ function user_shifts() {
JOIN `AngelTypes`
ON (`NeededAngelTypes`.`angel_type_id` = `AngelTypes`.`id`)
WHERE ";
if($shift_has_special_needs)
if ($shift_has_special_needs)
$query .= "`shift_id` = " . sql_escape($shift['SID']);
else
$query .= "`room_id` = " . sql_escape($shift['RID']);
@ -295,22 +321,39 @@ function user_shifts() {
$shift_row .= join(", ", $entry_list);
$shift_row .= '< br / > ';
}
if (($is_free & & in_array(0, $_SESSION['user_shifts']['filled']))
|| (!$is_free & & in_array(1, $_SESSION['user_shifts']['filled']))) {
if (($is_free & & in_array(0, $_SESSION['user_shifts']['filled'])) || (!$is_free & & in_array(1, $_SESSION['user_shifts']['filled']))) {
$shifts_table .= $shift_row . '< / td > < / tr > ';
$row_count++;
$ical_shifts[] = $shift;
}
}
}
if ($user['ical_key'] == "")
user_reset_ical_key($user);
return template_render('../templates/user_shifts.html', array (
'room_select' => make_select($rooms, $_SESSION['user_shifts']['rooms'], "rooms", "Räume"),
'day_select' => make_select($days, $_SESSION['user_shifts']['days'], "days", "Tage"),
'type_select' => make_select($types, $_SESSION['user_shifts']['types'], "types", "Aufgaben"),
'filled_select' => make_select($filled, $_SESSION['user_shifts']['filled'], "filled", "Besetzung"),
'shifts_table' => $shifts_table
'shifts_table' => $shifts_table,
'ical_link' => make_user_shifts_ical_link($user['ical_key']),
'reset_link' => page_link_to('user_myshifts') . '& reset'
));
}
}
function make_user_shifts_ical_link($key) {
$link = "";
foreach ($_SESSION['user_shifts']['rooms'] as $room)
$link .= '& rooms[]=' . $room;
foreach ($_SESSION['user_shifts']['days'] as $day)
$link .= '& days[]=' . $day;
foreach ($_SESSION['user_shifts']['types'] as $type)
$link .= '& types[]=' . $type;
foreach ($_SESSION['user_shifts']['filled'] as $filled)
$link .= '& filled[]=' . $filled;
return page_link_to_absolute('ical') . $link . '& export=user_shifts& key=' . $key;
}
function get_ids_from_array($array) {
@ -319,16 +362,16 @@ function get_ids_from_array($array) {
function make_select($items, $selected, $name, $title = null) {
$html_items = array ();
if(isset($title))
if (isset ($title))
$html_items[] = '< li class = "heading" > ' . $title . '< / li > ' . "\n";
foreach ($items as $i)
$html_items[] = '< li > < label > < input type = "checkbox" name = "' . $name . '[]" value = "' . $i['id'] . '" ' . ( in_array ( $ i [ ' id ' ] , $ selected ) ? ' checked = "checked" ' : ' ' ) . ' > ' . $i['name'] . '< / label > < / li > ';
$html_items[] = '< li > < label > < input type = "checkbox" name = "' . $name . '[]" value = "' . $i['id'] . '" ' . ( in_array ( $ i [ ' id ' ] , $ selected ) ? ' checked = "checked" ' : ' ' ) . ' > ' . $i['name'] . '< / label > < / li > ';
$html = '< div class = "selection ' . $name . '" > ' . "\n";
$html .= '< ul id = "selection_' . $name . '" > ' . "\n";
$html .= implode("\n", $html_items);
$html .= '< / ul > ' . "\n";
$html .= buttons(array(
$html .= buttons(array (
button("javascript: check_all('selection_" . $name . "')", "Alle", ""),
button("javascript: uncheck_all('selection_" . $name . "')", "Keine", "")
));