@ -58,7 +58,7 @@ function user_shifts() {
}
}
// Benötigte Engeltypen vom Raum
// Benötigte Engeltypen vom Raum
$needed_angel_types_source = sql_select("SELECT `AngelTypes`.*, `NeededAngelTypes`.`count` FROM `AngelTypes` LEFT JOIN `NeededAngelTypes` ON (`NeededAngelTypes`.`angel_type_id` = `AngelTypes`.`id` AND `NeededAngelTypes`.`room_id`=" . sql_escape($shift['RID']) . ") ORDER BY `AngelTypes`.`name`");
$needed_angel_types_source = sql_select("SELECT `AngelTypes`.*, `NeededAngelTypes`.`count` FROM `AngelTypes` LEFT JOIN `NeededAngelTypes` ON (`NeededAngelTypes`.`angel_type_id` = `AngelTypes`.`id` AND `NeededAngelTypes`.`room_id`=" . sql_escape($shift['RID']) . ") ORDER BY `AngelTypes`.`name`");
foreach ($needed_angel_types_source as $type) {
foreach ($needed_angel_types_source as $type) {
if($type['count'] != "")
if($type['count'] != "")
$needed_angel_types[$type['id']] =$type['count'];
$needed_angel_types[$type['id']] =$type['count'];
@ -347,23 +347,23 @@ function view_user_shifts() {
$_SESSION['user_shifts']['rooms'] = array(0);
$_SESSION['user_shifts']['rooms'] = array(0);
$SQL = "SELECT DISTINCT `Shifts`.*, `Room`.`Name` as `room_name`, nat2.`special_needs` > 0 AS 'has_special_needs'
$SQL = "SELECT DISTINCT `Shifts`.*, `Room`.`Name` as `room_name`, nat2.`special_needs` > 0 AS 'has_special_needs'
FROM `Shifts`
FROM `Shifts`
INNER JOIN `Room` USING (`RID`)
INNER JOIN `Room` USING (`RID`)
LEFT JOIN (SELECT COUNT(*) AS special_needs , nat3.`shift_id` FROM `NeededAngelTypes` AS nat3 WHERE `shift_id` IS NOT NULL GROUP BY nat3.`shift_id`) AS nat2 ON nat2.`shift_id` = `Shifts`.`SID`
LEFT JOIN (SELECT COUNT(*) AS special_needs , nat3.`shift_id` FROM `NeededAngelTypes` AS nat3 WHERE `shift_id` IS NOT NULL GROUP BY nat3.`shift_id`) AS nat2 ON nat2.`shift_id` = `Shifts`.`SID`
INNER JOIN `NeededAngelTypes` AS nat ON nat.`count` != 0 AND ((nat2.`special_needs` > 0 AND nat.`shift_id` = `Shifts`.`SID`) OR ((nat2.`special_needs` = 0 OR nat2.`special_needs` IS NULL) AND nat.`room_id` = `RID`))
INNER JOIN `NeededAngelTypes` AS nat ON nat.`count` != 0 AND ((nat2.`special_needs` > 0 AND nat.`shift_id` = `Shifts`.`SID`) OR ((nat2.`special_needs` = 0 OR nat2.`special_needs` IS NULL) AND nat.`room_id` = `RID`))
LEFT JOIN (SELECT se.`SID`, se.`TID`, COUNT(*) as count FROM `ShiftEntry` AS se GROUP BY se.`SID`, se.`TID`) AS entries ON entries.`SID` = `Shifts`.`SID` AND entries.`TID` = nat.`angel_type_id`
LEFT JOIN (SELECT se.`SID`, se.`TID`, COUNT(*) as count FROM `ShiftEntry` AS se GROUP BY se.`SID`, se.`TID`) AS entries ON entries.`SID` = `Shifts`.`SID` AND entries.`TID` = nat.`angel_type_id`
WHERE `Shifts`.`RID` IN (" . implode(',', $_SESSION['user_shifts']['rooms']) . ")
WHERE `Shifts`.`RID` IN (" . implode(',', $_SESSION['user_shifts']['rooms']) . ")
AND DATE(FROM_UNIXTIME(`start`)) IN ('" . implode("','", $_SESSION['user_shifts']['days']) . "') ";
AND DATE(FROM_UNIXTIME(`start`)) IN ('" . implode("','", $_SESSION['user_shifts']['days']) . "') ";
if (count($_SESSION['user_shifts']['filled']) == 1) {
if (count($_SESSION['user_shifts']['filled']) == 1) {
if ($_SESSION['user_shifts']['filled'][0] == 0)
if ($_SESSION['user_shifts']['filled'][0] == 0)
$SQL .= "
$SQL .= "
AND NOT (nat.`count` < = entries.`count`) ";
AND NOT (nat.`count` < = entries.`count`) ";
elseif ($_SESSION['user_shifts']['filled'][0] == 1)
elseif ($_SESSION['user_shifts']['filled'][0] == 1)
$SQL .= "
$SQL .= "
AND (nat.`count` < = entries.`count`) ";
AND (nat.`count` < = entries.`count`) ";
}
}
$SQL .= "
$SQL .= "
ORDER BY `start`";
ORDER BY `start`";
$shifts = sql_select($SQL);
$shifts = sql_select($SQL);
$shifts_table = "";
$shifts_table = "";
@ -408,7 +408,6 @@ function view_user_shifts() {
}
}
}
}
}
}
$shifts_table="< table id = \"shifts\" > < thead > < tr > < th > -< / th > ";
$shifts_table="< table id = \"shifts\" > < thead > < tr > < th > -< / th > ";
foreach($myrooms as $room) {
foreach($myrooms as $room) {
$rid=$room["id"];
$rid=$room["id"];
@ -417,238 +416,238 @@ function view_user_shifts() {
$colspan = 1;
$colspan = 1;
$todo[$rid] = array_fill(0, $maxshow, $colspan);
$todo[$rid] = array_fill(0, $maxshow, $colspan);
$shifts_table.="< th " . ( ( $ colspan > 1)? ' colspan="' . $colspan . '"' : '') . ">${room['name']}< / th > \n";
$shifts_table.="< th " . ( ( $ colspan > 1)? ' colspan="' . $colspan . '"' : '') . ">${room['name']}< / th > \n";
}
$shifts_table.="< / tr > < / thead > < tbody > ";
for($i=0;$i< $maxshow;$i++) {
$thistime=$first+($i*15*60);
if($thistime%(60*60)==0) {
$shifts_table.="< tr > < th > ".date("H:i",$thistime)."< / th > ";
} else {
$shifts_table.="< tr > < th > < / th > ";
}
}
foreach($myrooms as $room) {
$shifts_table.="< / tr > < / thead > < tbody > ";
$rid=$room["id"];
for($i=0;$i< $maxshow;$i++) {
foreach($shifts as $shift) {
$thistime=$first+($i*15*60);
if($shift["RID"]==$rid) {
if($thistime%(60*60)==0) {
if(floor($shift["start"]/(15*60)) == $thistime/(15*60)) {
$shifts_table.="< tr > < th > ".date("H:i",$thistime)."< / th > ";
$blocks=($shift["end"]-$shift["start"])/(15*60);
} else {
if($blocks< 1 ) $ blocks = 1;
$shifts_table.="< tr > < th > < / th > ";
// qqqqqq
}
$is_free = false;
foreach($myrooms as $room) {
$shifts_row = $shift['name'];
$rid=$room["id"];
if (in_array('admin_shifts', $privileges))
foreach($shifts as $shift) {
$shifts_row .= ' < a href = "?p=user_shifts&edit_shift=' . $shift['SID'] . '" > [edit]< / a > < a href = "?p=user_shifts&delete_shift=' . $shift['SID'] . '" > [x]< / a > ';
if($shift["RID"]==$rid) {
$shifts_row.= '< br / > ';
if(floor($shift["start"]/(15*60)) == $thistime/(15*60)) {
$query = "SELECT `NeededAngelTypes`.`count`, `AngelTypes`.`id`, `AngelTypes`.`restricted`, `UserAngelTypes`.`confirm_user_id`, `AngelTypes`.`name`, `UserAngelTypes`.`user_id`
$blocks=($shift["end"]-$shift["start"])/(15*60);
FROM `NeededAngelTypes`
if($blocks< 1 ) $ blocks = 1;
JOIN `AngelTypes` ON (`NeededAngelTypes`.`angel_type_id` = `AngelTypes`.`id`)
// qqqqqq
LEFT JOIN `UserAngelTypes` ON (`NeededAngelTypes`.`angel_type_id` = `UserAngelTypes`.`angeltype_id`AND `UserAngelTypes`.`user_id`=" . sql_escape($user['UID']) . ")
$is_free = false;
WHERE
$shifts_row = $shift['name'];
`count` > 0
if (in_array('admin_shifts', $privileges))
AND ";
$shifts_row .= ' < a href = "?p=user_shifts&edit_shift=' . $shift['SID'] . '" > [edit]< / a > < a href = "?p=user_shifts&delete_shift=' . $shift['SID'] . '" > [x]< / a > ';
if ($shift['has_special_needs'])
$shifts_row.= '< br / > ';
$query .= "`shift_id` = " . sql_escape($shift['SID']);
$query = "SELECT `NeededAngelTypes`.`count`, `AngelTypes`.`id`, `AngelTypes`.`restricted`, `UserAngelTypes`.`confirm_user_id`, `AngelTypes`.`name`, `UserAngelTypes`.`user_id`
else
FROM `NeededAngelTypes`
$query .= "`room_id` = " . sql_escape($shift['RID']);
JOIN `AngelTypes` ON (`NeededAngelTypes`.`angel_type_id` = `AngelTypes`.`id`)
if (!empty($_SESSION['user_shifts']['types']))
LEFT JOIN `UserAngelTypes` ON (`NeededAngelTypes`.`angel_type_id` = `UserAngelTypes`.`angeltype_id`AND `UserAngelTypes`.`user_id`=" . sql_escape($user['UID']) . ")
$query .= " AND `angel_type_id` IN (" . implode(',', $_SESSION['user_shifts']['types']) . ") ";
WHERE
$query .= " ORDER BY `AngelTypes`.`name`";
`count` > 0
$angeltypes = sql_select($query);
AND ";
if ($shift['has_special_needs'])
if (count($angeltypes) > 0) {
$query .= "`shift_id` = " . sql_escape($shift['SID']);
$my_shift = sql_num_query("SELECT * FROM `ShiftEntry` WHERE `SID`=" . sql_escape($shift['SID']) . " AND `UID`=" . sql_escape($user['UID']) . " LIMIT 1") > 0;
else
foreach ($angeltypes as $angeltype) {
$query .= "`room_id` = " . sql_escape($shift['RID']);
$entries = sql_select("SELECT * FROM `ShiftEntry` JOIN `User` ON (`ShiftEntry`.`UID` = `User`.`UID`) WHERE `SID`=" . sql_escape($shift['SID']) . " AND `TID`=" . sql_escape($angeltype['id']) . " ORDER BY `Nick`");
if (!empty($_SESSION['user_shifts']['types']))
$entry_list = array ();
$query .= " AND `angel_type_id` IN (" . implode(',', $_SESSION['user_shifts']['types']) . ") ";
foreach ($entries as $entry) {
$query .= " ORDER BY `AngelTypes`.`name`";
if($entry['Gekommen']==1)
$angeltypes = sql_select($query);
$style="font-weight:bold;";
else
if (count($angeltypes) > 0) {
$style="font-weight:normal;";
$my_shift = sql_num_query("SELECT * FROM `ShiftEntry` WHERE `SID`=" . sql_escape($shift['SID']) . " AND `UID`=" . sql_escape($user['UID']) . " LIMIT 1") > 0;
if (in_array('user_shifts_admin', $privileges))
foreach ($angeltypes as $angeltype) {
$entry_list[] = "< span style = \"$style\" > " . '< a href = "' . page_link_to('user_myshifts') . '&id=' . $entry['UID'] . '" > ' . $entry['Nick'] . '< / a > < a href = "' . page_link_to('user_shifts') . '&entry_id=' . $entry['id'] . '" > [x]< / a > < / span > ';
$entries = sql_select("SELECT * FROM `ShiftEntry` JOIN `User` ON (`ShiftEntry`.`UID` = `User`.`UID`) WHERE `SID`=" . sql_escape($shift['SID']) . " AND `TID`=" . sql_escape($angeltype['id']) . " ORDER BY `Nick`");
else
$entry_list = array ();
$entry_list[] = "< span style = \"$style\" > " . $entry['Nick']."< / span > ";
foreach ($entries as $entry) {
}
if($entry['Gekommen']==1)
if ($angeltype['count'] - count($entries) > 0) {
$style="font-weight:bold;";
$inner_text = ($angeltype['count'] - count($entries)) . ' ' . Get_Text($angeltype['count'] - count($entries) == 1 ? 'helper' : 'helpers') . ' ' . Get_Text('needed');
else
// is the shift still running or alternatively is the user shift admin?
$style="font-weight:normal;";
$user_may_join_shift = true;
if (in_array('user_shifts_admin', $privileges))
$entry_list[] = "< span style = \"$style\" > " . '< a href = "' . page_link_to('user_myshifts') . '&id=' . $entry['UID'] . '" > ' . $entry['Nick'] . '< / a > < a href = "' . page_link_to('user_shifts') . '&entry_id=' . $entry['id'] . '" > [x]< / a > < / span > ';
// you cannot join if user already joined this shift
else
$user_may_join_shift & = !$my_shift;
$entry_list[] = "< span style = \"$style\" > " . $entry['Nick']."< / span > ";
}
// you cannot join if user is not of this angel type
if ($angeltype['count'] - count($entries) > 0) {
$user_may_join_shift & = isset($angeltype['user_id']);
$inner_text = ($angeltype['count'] - count($entries)) . ' ' . Get_Text($angeltype['count'] - count($entries) == 1 ? 'helper' : 'helpers') . ' ' . Get_Text('needed');
// is the shift still running or alternatively is the user shift admin?
// you cannot join if you are not confirmed
$user_may_join_shift = true;
if($angeltype['restricted'] == 1 & & isset($angeltype['user_id']))
$user_may_join_shift & = isset($angeltype['confirm_user_id']);
// you cannot join if user already joined this shift
$user_may_join_shift & = !$my_shift;
// you can only join if the shift is in future or running
$user_may_join_shift & = time() < $shift['start'];
// you cannot join if user is not of this angel type
$user_may_join_shift & = isset($angeltype['user_id']);
// User shift admins may join anybody in every shift
$user_may_join_shift |= in_array('user_shifts_admin', $privileges);
// you cannot join if you are not confirmed
if ($user_may_join_shift)
if($angeltype['restricted'] == 1 & & isset($angeltype['user_id']))
$entry_list[] = '< a href = "' . page_link_to('user_shifts') . '&shift_id=' . $shift['SID'] . '&type_id=' . $angeltype['id'] . '" > ' . $inner_text . ' » < / a > ';
$user_may_join_shift & = isset($angeltype['confirm_user_id']);
else {
if(time() > $shift['start']) {
// you can only join if the shift is in future or running
$entry_list[] = $inner_text . ' (vorbei)';
$user_may_join_shift & = time() < $shift['start'];
} elseif($angeltype['restricted'] == 1 & & isset($angeltype['user_id']) & & !isset($angeltype['confirm_user_id'])) {
$entry_list[] = $inner_text . ' < img src = "pic/icons/lock.png" alt = "unconfirmed" title = "Du bist für diesen Engeltyp noch nicht freigeschaltet." / > ';
// User shift admins may join anybody in every shift
} else {
$user_may_join_shift |= in_array('user_shifts_admin', $privileges);
$entry_list[] = $inner_text . ' < a href = "' . page_link_to('user_settings') . '#angel_types_anchor" > (Werde ' . $angeltype['name'] .')< / a > ';
if ($user_may_join_shift)
$entry_list[] = '< a href = "' . page_link_to('user_shifts') . '&shift_id=' . $shift['SID'] . '&type_id=' . $angeltype['id'] . '" > ' . $inner_text . ' » < / a > ';
else {
if(time() > $shift['start']) {
$entry_list[] = $inner_text . ' (vorbei)';
} elseif($angeltype['restricted'] == 1 & & isset($angeltype['user_id']) & & !isset($angeltype['confirm_user_id'])) {
$entry_list[] = $inner_text . ' < img src = "pic/lock.png" alt = "unconfirmed" title = "Du bist für diesen Engeltyp noch nicht freigeschaltet." / > ';
} else {
$entry_list[] = $inner_text . ' < a href = "' . page_link_to('user_settings') . '#angel_types_anchor" > (Werde ' . $angeltype['name'] .')< / a > ';
}
}
}
unset($inner_text);
$is_free = true;
}
}
unset($inner_text);
$shifts_row .= '< b > ' . $angeltype['name'] . ':< / b > ';
$is_free = true;
$shifts_row .= join(", ", $entry_list);
$shifts_row .= '< br / > ';
}
if (in_array('user_shifts_admin', $privileges)) {
$shifts_row .= '< a href = "' . page_link_to('user_shifts') . '&shift_id=' . $shift['SID'] . '&type_id=' . $angeltype['id'] . '" > Weitere Helfer eintragen » < / a > ';
}
}
$shifts_row .= '< b > ' . $angeltype['name'] . ':< / b > ';
$shifts_row .= join(", ", $entry_list);
$shifts_row .= '< br / > ';
}
}
if (in_array('user_shifts_admin', $privileges)) {
$shifts_table.='< td rowspan = "' . $blocks . '" class = "' . ($is_free? 'free' : 'occupied') . '" > ';
$shifts_row .= '< a href = "' . page_link_to('user_shifts') . '&shift_id=' . $shift['SID'] . '&type_id=' . $angeltype['id'] . '" > Weitere Helfer eintragen » < / a > ';
if (($is_free & & in_array(0, $_SESSION['user_shifts']['filled'])) || (!$is_free & & in_array(1, $_SESSION['user_shifts']['filled']))) {
$shifts_table.=$shifts_row;
}
$shifts_table.="< / td > ";
for($j=0;$j< $blocks& & $i+$j < $maxshow;$j++) {
$todo[$rid][$i+$j]--;
}
}
}
$shifts_table.='< td rowspan = "' . $blocks . '" class = "' . ($is_free? 'free' : 'occupied') . '" > ';
if (($is_free & & in_array(0, $_SESSION['user_shifts']['filled'])) || (!$is_free & & in_array(1, $_SESSION['user_shifts']['filled']))) {
$shifts_table.=$shifts_row;
}
$shifts_table.="< / td > ";
for($j=0;$j< $blocks& & $i+$j < $maxshow;$j++) {
$todo[$rid][$i+$j]--;
}
}
}
}
}
}
// fill up row with empty < td >
while($todo[$rid][$i]--)
$shifts_table.='< td > < / td > ';
}
}
// fill up row with empty < td >
$shifts_table.="< / tr > \n";
while($todo[$rid][$i]--)
$shifts_table.='< td > < / td > ';
}
}
$shifts_table.="< / tr > \n";
$shifts_table.='< / tbody > < / table > < script type = "text/javascript" > scrolltable ( document . getElementById ( "shifts" ) ) < / script > ';
}
// qqq
$shifts_table.='< / tbody > < / table > < script type = "text/javascript" > scrolltable ( document . getElementById ( "shifts" ) ) < / script > ';
} else {
// qqq
$shifts_table = array();
} else {
foreach ($shifts as $shift) {
$shifts_table = array();
$info = array ();
foreach ($shifts as $shift) {
if (count($_SESSION['user_shifts']['days']) > 1)
$info = array ();
$info[] = date("Y-m-d", $shift['start']);
if (count($_SESSION['user_shifts']['days']) > 1)
$info[] = date("H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']);
$info[] = date("Y-m-d", $shift['start']);
if (count($_SESSION['user_shifts']['rooms']) > 1)
$info[] = date("H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']);
$info[] = $shift['room_name'];
if (count($_SESSION['user_shifts']['rooms']) > 1)
$info[] = $shift['room_name'];
$shift_row = array(
'info' => join('< br / > ', $info),
$shift_row = array(
'entries' => $shift['name']
'info' => join('< br / > ', $info),
);
'entries' => $shift['name']
);
if (in_array('admin_shifts', $privileges))
$shift_row['entries'] .= ' < a href = "?p=user_shifts&edit_shift=' . $shift['SID'] . '" > [edit]< / a > < a href = "?p=user_shiftsamp;&delete_shift=' . $shift['SID'] . '" > [x]< / a > ';
if (in_array('admin_shifts', $privileges))
$shift_row['entries'] .= '< br / > ';
$shift_row['entries'] .= ' < a href = "?p=user_shifts&edit_shift=' . $shift['SID'] . '" > [edit]< / a > < a href = "?p=user_shiftsamp;&delete_shift=' . $shift['SID'] . '" > [x]< / a > ';
$is_free = false;
$shift_row['entries'] .= '< br / > ';
$shift_has_special_needs = 0 < sql_num_query ( " SELECT ` id ` FROM ` NeededAngelTypes ` WHERE ` shift_id ` = " . $ shift [ ' SID ' ] ) ;
$is_free = false;
$query = "SELECT `NeededAngelTypes`.`count`, `AngelTypes`.`id`, `AngelTypes`.`restricted`, `UserAngelTypes`.`confirm_user_id`, `AngelTypes`.`name`, `UserAngelTypes`.`user_id`
$shift_has_special_needs = 0 < sql_num_query ( " SELECT ` id ` FROM ` NeededAngelTypes ` WHERE ` shift_id ` = " . $ shift [ ' SID ' ] ) ;
FROM `NeededAngelTypes`
$query = "SELECT `NeededAngelTypes`.`count`, `AngelTypes`.`id`, `AngelTypes`.`restricted`, `UserAngelTypes`.`confirm_user_id`, `AngelTypes`.`name`, `UserAngelTypes`.`user_id`
JOIN `AngelTypes` ON (`NeededAngelTypes`.`angel_type_id` = `AngelTypes`.`id`)
FROM `NeededAngelTypes`
LEFT JOIN `UserAngelTypes` ON (`NeededAngelTypes`.`angel_type_id` = `UserAngelTypes`.`angeltype_id`AND `UserAngelTypes`.`user_id`=" . sql_escape($user['UID']) . ")
JOIN `AngelTypes` ON (`NeededAngelTypes`.`angel_type_id` = `AngelTypes`.`id`)
WHERE ";
LEFT JOIN `UserAngelTypes` ON (`NeededAngelTypes`.`angel_type_id` = `UserAngelTypes`.`angeltype_id`AND `UserAngelTypes`.`user_id`=" . sql_escape($user['UID']) . ")
if ($shift_has_special_needs)
WHERE ";
$query .= "`shift_id` = " . sql_escape($shift['SID']);
if ($shift_has_special_needs)
else
$query .= "`shift_id` = " . sql_escape($shift['SID']);
$query .= "`room_id` = " . sql_escape($shift['RID']);
else
$query .= " AND `count` > 0 ";
$query .= "`room_id` = " . sql_escape($shift['RID']);
if (!empty($_SESSION['user_shifts']['types']))
$query .= " AND `count` > 0 ";
$query .= "AND `angel_type_id` IN (" . implode(',', $_SESSION['user_shifts']['types']) . ") ";
if (!empty($_SESSION['user_shifts']['types']))
$query .= "ORDER BY `AngelTypes`.`name`";
$query .= "AND `angel_type_id` IN (" . implode(',', $_SESSION['user_shifts']['types']) . ") ";
$angeltypes = sql_select($query);
$query .= "ORDER BY `AngelTypes`.`name`";
if (count($angeltypes) > 0) {
$angeltypes = sql_select($query);
$my_shift = sql_num_query("SELECT * FROM `ShiftEntry` WHERE `SID`=" . sql_escape($shift['SID']) . " AND `UID`=" . sql_escape($user['UID']) . " LIMIT 1") > 0;
if (count($angeltypes) > 0) {
foreach ($angeltypes as $angeltype) {
$my_shift = sql_num_query("SELECT * FROM `ShiftEntry` WHERE `SID`=" . sql_escape($shift['SID']) . " AND `UID`=" . sql_escape($user['UID']) . " LIMIT 1") > 0;
$entries = sql_select("SELECT * FROM `ShiftEntry` JOIN `User` ON (`ShiftEntry`.`UID` = `User`.`UID`) WHERE `SID`=" . sql_escape($shift['SID']) . " AND `TID`=" . sql_escape($angeltype['id']) . " ORDER BY `Nick`");
foreach ($angeltypes as $angeltype) {
$entry_list = array ();
$entries = sql_select("SELECT * FROM `ShiftEntry` JOIN `User` ON (`ShiftEntry`.`UID` = `User`.`UID`) WHERE `SID`=" . sql_escape($shift['SID']) . " AND `TID`=" . sql_escape($angeltype['id']) . " ORDER BY `Nick`");
foreach ($entries as $entry) {
$entry_list = array ();
if (in_array('user_shifts_admin', $privileges))
foreach ($entries as $entry) {
$entry_list[] = '< a href = "' . page_link_to('user_myshifts') . '&id=' . $entry['UID'] . '" > ' . $entry['Nick'] . '< / a > < a href = "' . page_link_to('user_shifts') . '&entry_id=' . $entry['id'] . '" > [x]< / a > ';
if (in_array('user_shifts_admin', $privileges))
else
$entry_list[] = '< a href = "' . page_link_to('user_myshifts') . '&id=' . $entry['UID'] . '" > ' . $entry['Nick'] . '< / a > < a href = "' . page_link_to('user_shifts') . '&entry_id=' . $entry['id'] . '" > [x]< / a > ';
$entry_list[] = $entry['Nick'];
else
}
$entry_list[] = $entry['Nick'];
// do we need more angles of this type?
}
if ($angeltype['count'] - count($entries) > 0) {
// do we need more angles of this type?
$inner_text = ($angeltype['count'] - count($entries)) . ' ' . Get_Text($angeltype['count'] - count($entries) == 1 ? 'helper' : 'helpers') . ' ' . Get_Text('needed');
if ($angeltype['count'] - count($entries) > 0) {
// is the shift still running or alternatively is the user shift admin?
$inner_text = ($angeltype['count'] - count($entries)) . ' ' . Get_Text($angeltype['count'] - count($entries) == 1 ? 'helper' : 'helpers') . ' ' . Get_Text('needed');
$user_may_join_shift = true;
// is the shift still running or alternatively is the user shift admin?
$user_may_join_shift = true;
/* you cannot join if user already joined this shift */
$user_may_join_shift & = !$my_shift;
/* you cannot join if user already joined this shift */
$user_may_join_shift & = !$my_shift;
// you cannot join if user is not of this angel type
$user_may_join_shift & = isset($angeltype['user_id']);
// you cannot join if user is not of this angel type
$user_may_join_shift & = isset($angeltype['user_id']);
// you cannot join if you are not confirmed
if($angeltype['restricted'] == 1 & & isset($angeltype['user_id']))
// you cannot join if you are not confirmed
$user_may_join_shift & = isset($angeltype['confirm_user_id']);
if($angeltype['restricted'] == 1 & & isset($angeltype['user_id']))
$user_may_join_shift & = isset($angeltype['confirm_user_id']);
// you can only join if the shift is in future or running
$user_may_join_shift & = time() < $shift['start'];
// you can only join if the shift is in future or running
$user_may_join_shift & = time() < $shift['start'];
// User shift admins may join anybody in every shift
$user_may_join_shift |= in_array('user_shifts_admin', $privileges);
// User shift admins may join anybody in every shift
if ($user_may_join_shift)
$user_may_join_shift |= in_array('user_shifts_admin', $privileges);
$entry_list[] = '< a href = "' . page_link_to('user_shifts') . '&shift_id=' . $shift['SID'] . '&type_id=' . $angeltype['id'] . '" > ' . $inner_text . ' » < / a > ';
if ($user_may_join_shift)
else {
$entry_list[] = '< a href = "' . page_link_to('user_shifts') . '&shift_id=' . $shift['SID'] . '&type_id=' . $angeltype['id'] . '" > ' . $inner_text . ' » < / a > ';
if(time() > $shift['end']) {
else {
$entry_list[] = $inner_text . ' (vorbei)';
if(time() > $shift['end']) {
} elseif($angeltype['restricted'] == 1 & & isset($angeltype['user_id']) & & !isset($angeltype['confirm_user_id'])) {
$entry_list[] = $inner_text . ' (vorbei)';
$entry_list[] = $inner_text . ' < img src = "pic/lock.png" alt = "unconfirmed" title = "Du bist für diesen Engeltyp noch nicht freigeschaltet." / > ';
} elseif($angeltype['restricted'] == 1 & & isset($angeltype['user_id']) & & !isset($angeltype['confirm_user_id'])) {
} else {
$entry_list[] = $inner_text . ' < img src = "pic/icons/lock.png" alt = "unconfirmed" title = "Du bist für diesen Engeltyp noch nicht freigeschaltet." / > ';
$entry_list[] = $inner_text . ' < a href = "' . page_link_to('user_settings') . '#angel_types_anchor" > (Werde ' . $angeltype['name'] .')< / a > ';
} else {
}
$entry_list[] = $inner_text . ' < a href = "' . page_link_to('user_settings') . '#angel_types_anchor" > (Werde ' . $angeltype['name'] .')< / a > ';
}
}
unset($inner_text);
$is_free = true;
}
}
unset($inner_text);
$shift_row['entries'] .= '< b > ' . $angeltype['name'] . ':< / b > ';
$is_free = true;
$shift_row['entries'] .= join(", ", $entry_list);
$shift_row['entries'] .= '< br / > ';
}
if (in_array('user_shifts_admin', $privileges)) {
$shift_row['entries'] .= '< a href = "' . page_link_to('user_shifts') . '&shift_id=' . $shift['SID'] . '&type_id=' . $angeltype['id'] . '" > Weitere Helfer eintragen » < / a > ';
}
if (($is_free & & in_array(0, $_SESSION['user_shifts']['filled'])) || (!$is_free & & in_array(1, $_SESSION['user_shifts']['filled']))) {
$shifts_table[] = $shift_row;
$row_count++;
$ical_shifts[] = $shift;
}
}
$shift_row['entries'] .= '< b > ' . $angeltype['name'] . ':< / b > ';
$shift_row['entries'] .= join(", ", $entry_list);
$shift_row['entries'] .= '< br / > ';
}
if (in_array('user_shifts_admin', $privileges)) {
$shift_row['entries'] .= '< a href = "' . page_link_to('user_shifts') . '&shift_id=' . $shift['SID'] . '&type_id=' . $angeltype['id'] . '" > Weitere Helfer eintragen » < / a > ';
}
if (($is_free & & in_array(0, $_SESSION['user_shifts']['filled'])) || (!$is_free & & in_array(1, $_SESSION['user_shifts']['filled']))) {
$shifts_table[] = $shift_row;
$row_count++;
$ical_shifts[] = $shift;
}
}
}
}
$shifts_table = table(array(
'info' => ucfirst(Get_Text("time")) . "/" . ucfirst(Get_Text("room")),
'entries' => ucfirst(Get_Text("entries"))
), $shifts_table);
}
}
$shifts_table = table(array(
'info' => ucfirst(Get_Text("time")) . "/" . ucfirst(Get_Text("room")),
'entries' => ucfirst(Get_Text("entries"))
), $shifts_table);
}
if ($user['ical_key'] == "")
if ($user['ical_key'] == "")
user_reset_ical_key($user);
user_reset_ical_key($user);
return msg() . template_render('../templates/user_shifts.html', array (
return msg() . template_render('../templates/user_shifts.html', array (
'room_select' => make_select($rooms, $_SESSION['user_shifts']['rooms'], "rooms", ucfirst(Get_Text("rooms"))),
'room_select' => make_select($rooms, $_SESSION['user_shifts']['rooms'], "rooms", ucfirst(Get_Text("rooms"))),
'day_select' => make_select($days, $_SESSION['user_shifts']['days'], "days", ucfirst(Get_Text("days"))),
'day_select' => make_select($days, $_SESSION['user_shifts']['days'], "days", ucfirst(Get_Text("days"))),
'type_select' => make_select($types, $_SESSION['user_shifts']['types'], "types", ucfirst(Get_Text("tasks")) . '< sup > 1< / sup > '),
'type_select' => make_select($types, $_SESSION['user_shifts']['types'], "types", ucfirst(Get_Text("tasks")) . '< sup > 1< / sup > '),
'filled_select' => make_select($filled, $_SESSION['user_shifts']['filled'], "filled", ucfirst(Get_Text("occupancy"))),
'filled_select' => make_select($filled, $_SESSION['user_shifts']['filled'], "filled", ucfirst(Get_Text("occupancy"))),
'task_notice' => '< sup > 1< / sup > ' . Get_Text("pub_schichtplan_tasks_notice"),
'task_notice' => '< sup > 1< / sup > ' . Get_Text("pub_schichtplan_tasks_notice"),
'new_style_checkbox' => '< label > < input type = "checkbox" name = "new_style" value = "1" ' . ( $ _SESSION [ ' user_shifts ' ] [ ' new_style ' ] ? ' checked ' : ' ' ) . ' > Use new style if possible< / label > ',
'new_style_checkbox' => '< label > < input type = "checkbox" name = "new_style" value = "1" ' . ( $ _SESSION [ ' user_shifts ' ] [ ' new_style ' ] ? ' checked ' : ' ' ) . ' > Use new style if possible< / label > ',
'shifts_table' => $shifts_table,
'shifts_table' => $shifts_table,
'ical_text' => sprintf(Get_Text('inc_schicht_ical_text'), htmlspecialchars(make_user_shifts_ical_link($user['ical_key'])), page_link_to('user_myshifts') . '& reset'),
'ical_text' => sprintf(Get_Text('inc_schicht_ical_text'), htmlspecialchars(make_user_shifts_ical_link($user['ical_key'])), page_link_to('user_myshifts') . '& reset'),
'filter' => ucfirst(Get_Text("to_filter")),
'filter' => ucfirst(Get_Text("to_filter")),
));
));
}
}
function make_user_shifts_ical_link($key) {
function make_user_shifts_ical_link($key) {
@ -674,7 +673,7 @@ function make_select($items, $selected, $name, $title = null) {
$html_items[] = '< li class = "heading" > ' . $title . '< / li > ' . "\n";
$html_items[] = '< li class = "heading" > ' . $title . '< / li > ' . "\n";
foreach ($items as $i)
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 > ' . (!isset($i['enabled']) || $i['enabled'] ? '' : ' < img src = "pic/ icons/ lock.png" alt = "unconfirmed" title = "Du bist für diesen Engeltyp noch nicht freigeschaltet." / > ') . '< / li > ';
$html_items[] = '< li > < label > < input type = "checkbox" name = "' . $name . '[]" value = "' . $i['id'] . '" ' . ( in_array ( $ i [ ' id ' ] , $ selected ) ? ' checked = "checked" ' : ' ' ) . ' > ' . $i['name'] . '< / label > ' . (!isset($i['enabled']) || $i['enabled'] ? '' : ' < img src = "pic/ lock.png" alt = "unconfirmed" title = "Du bist für diesen Engeltyp noch nicht freigeschaltet." / > ') . '< / li > ';
$html = '< div class = "selection ' . $name . '" > ' . "\n";
$html = '< div class = "selection ' . $name . '" > ' . "\n";
$html .= '< ul id = "selection_' . $name . '" > ' . "\n";
$html .= '< ul id = "selection_' . $name . '" > ' . "\n";
$html .= implode("\n", $html_items);
$html .= implode("\n", $html_items);