merge feature-shift-types
This commit is contained in:
commit
e89acc0c1d
|
@ -3,7 +3,7 @@
|
||||||
-- http://www.phpmyadmin.net
|
-- http://www.phpmyadmin.net
|
||||||
--
|
--
|
||||||
-- Host: localhost
|
-- Host: localhost
|
||||||
-- Erstellungszeit: 07. Dez 2014 um 20:31
|
-- Erstellungszeit: 25. Dez 2014 um 22:28
|
||||||
-- Server Version: 5.6.12
|
-- Server Version: 5.6.12
|
||||||
-- PHP-Version: 5.5.3
|
-- PHP-Version: 5.5.3
|
||||||
|
|
||||||
|
@ -11,6 +11,12 @@ SET FOREIGN_KEY_CHECKS=0;
|
||||||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
|
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
|
||||||
SET time_zone = "+00:00";
|
SET time_zone = "+00:00";
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Datenbank: `engelsystem`
|
||||||
|
--
|
||||||
|
CREATE DATABASE IF NOT EXISTS `engelsystem` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
|
||||||
|
USE `engelsystem`;
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
--
|
--
|
||||||
|
@ -47,6 +53,14 @@ CREATE TABLE IF NOT EXISTS `Counter` (
|
||||||
PRIMARY KEY (`URL`)
|
PRIMARY KEY (`URL`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Counter der Seiten';
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Counter der Seiten';
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Daten für Tabelle `Counter`
|
||||||
|
--
|
||||||
|
|
||||||
|
INSERT INTO `Counter` (`URL`, `Anz`) VALUES
|
||||||
|
('login', 2),
|
||||||
|
('news', 1);
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
--
|
--
|
||||||
|
@ -61,7 +75,7 @@ CREATE TABLE IF NOT EXISTS `GroupPrivileges` (
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
KEY `group_id` (`group_id`,`privilege_id`),
|
KEY `group_id` (`group_id`,`privilege_id`),
|
||||||
KEY `privilege_id` (`privilege_id`)
|
KEY `privilege_id` (`privilege_id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=257 ;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=258 ;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Daten für Tabelle `GroupPrivileges`
|
-- Daten für Tabelle `GroupPrivileges`
|
||||||
|
@ -82,6 +96,7 @@ INSERT INTO `GroupPrivileges` (`id`, `group_id`, `privilege_id`) VALUES
|
||||||
(213, -5, 28),
|
(213, -5, 28),
|
||||||
(206, -5, 31),
|
(206, -5, 31),
|
||||||
(215, -5, 33),
|
(215, -5, 33),
|
||||||
|
(257, -5, 38),
|
||||||
(219, -4, 14),
|
(219, -4, 14),
|
||||||
(221, -4, 25),
|
(221, -4, 25),
|
||||||
(220, -4, 33),
|
(220, -4, 33),
|
||||||
|
@ -240,7 +255,7 @@ CREATE TABLE IF NOT EXISTS `Privileges` (
|
||||||
`desc` varchar(1024) NOT NULL,
|
`desc` varchar(1024) NOT NULL,
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
UNIQUE KEY `name` (`name`)
|
UNIQUE KEY `name` (`name`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=38 ;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=39 ;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Daten für Tabelle `Privileges`
|
-- Daten für Tabelle `Privileges`
|
||||||
|
@ -282,7 +297,8 @@ INSERT INTO `Privileges` (`id`, `name`, `desc`) VALUES
|
||||||
(34, 'atom', ' Atom news export'),
|
(34, 'atom', ' Atom news export'),
|
||||||
(35, 'shifts_json_export', 'Export shifts in JSON format'),
|
(35, 'shifts_json_export', 'Export shifts in JSON format'),
|
||||||
(36, 'angeltypes', 'View angeltypes'),
|
(36, 'angeltypes', 'View angeltypes'),
|
||||||
(37, 'user_angeltypes', 'Join angeltypes.');
|
(37, 'user_angeltypes', 'Join angeltypes.'),
|
||||||
|
(38, 'shifttypes', 'Administrate shift types');
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
@ -351,19 +367,37 @@ CREATE TABLE IF NOT EXISTS `ShiftEntry` (
|
||||||
DROP TABLE IF EXISTS `Shifts`;
|
DROP TABLE IF EXISTS `Shifts`;
|
||||||
CREATE TABLE IF NOT EXISTS `Shifts` (
|
CREATE TABLE IF NOT EXISTS `Shifts` (
|
||||||
`SID` int(11) NOT NULL AUTO_INCREMENT,
|
`SID` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
|
`title` text,
|
||||||
|
`shifttype_id` int(11) NOT NULL,
|
||||||
`start` int(11) NOT NULL,
|
`start` int(11) NOT NULL,
|
||||||
`end` int(11) NOT NULL,
|
`end` int(11) NOT NULL,
|
||||||
`RID` int(11) NOT NULL DEFAULT '0',
|
`RID` int(11) NOT NULL DEFAULT '0',
|
||||||
`name` varchar(1024) DEFAULT NULL,
|
|
||||||
`URL` text,
|
`URL` text,
|
||||||
`PSID` int(11) DEFAULT NULL,
|
`PSID` int(11) DEFAULT NULL,
|
||||||
PRIMARY KEY (`SID`),
|
PRIMARY KEY (`SID`),
|
||||||
UNIQUE KEY `PSID` (`PSID`),
|
UNIQUE KEY `PSID` (`PSID`),
|
||||||
KEY `RID` (`RID`)
|
KEY `RID` (`RID`),
|
||||||
|
KEY `shifttype_id` (`shifttype_id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=191 ;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=191 ;
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Tabellenstruktur für Tabelle `ShiftTypes`
|
||||||
|
--
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS `ShiftTypes`;
|
||||||
|
CREATE TABLE IF NOT EXISTS `ShiftTypes` (
|
||||||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
|
`name` varchar(255) NOT NULL,
|
||||||
|
`angeltype_id` int(11) DEFAULT NULL,
|
||||||
|
`description` text NOT NULL,
|
||||||
|
PRIMARY KEY (`id`),
|
||||||
|
KEY `angeltype_id` (`angeltype_id`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Tabellenstruktur für Tabelle `User`
|
-- Tabellenstruktur für Tabelle `User`
|
||||||
--
|
--
|
||||||
|
@ -410,7 +444,7 @@ CREATE TABLE IF NOT EXISTS `User` (
|
||||||
--
|
--
|
||||||
|
|
||||||
INSERT INTO `User` (`UID`, `Nick`, `Name`, `Vorname`, `Alter`, `Telefon`, `DECT`, `Handy`, `email`, `email_shiftinfo`, `jabber`, `Size`, `Passwort`, `password_recovery_token`, `Gekommen`, `Aktiv`, `force_active`, `Tshirt`, `color`, `Sprache`, `Avatar`, `Menu`, `lastLogIn`, `CreateDate`, `Art`, `kommentar`, `Hometown`, `api_key`) VALUES
|
INSERT INTO `User` (`UID`, `Nick`, `Name`, `Vorname`, `Alter`, `Telefon`, `DECT`, `Handy`, `email`, `email_shiftinfo`, `jabber`, `Size`, `Passwort`, `password_recovery_token`, `Gekommen`, `Aktiv`, `force_active`, `Tshirt`, `color`, `Sprache`, `Avatar`, `Menu`, `lastLogIn`, `CreateDate`, `Art`, `kommentar`, `Hometown`, `api_key`) VALUES
|
||||||
(1, 'admin', 'Gates', 'Bill', 42, '', '-', '', 'admin@example.com', 0, '', 'XL', '$6$rounds=5000$hjXbIhoRTH3vKiRa$Wl2P2iI5T9iRR.HHu/YFHswBW0WVn0yxCfCiX0Keco9OdIoDK6bIAADswP6KvMCJSwTGdV8PgA8g8Xfw5l8BD1', NULL, 1, 0, 1, 0, 2, 'de_DE.UTF-8', 115, 'L', 1417980341, '0000-00-00 00:00:00', '', '', '', '038850abdd1feb264406be3ffa746235');
|
(1, 'admin', 'Gates', 'Bill', 42, '', '-', '', 'admin@example.com', 0, '', 'XL', '$6$rounds=5000$hjXbIhoRTH3vKiRa$Wl2P2iI5T9iRR.HHu/YFHswBW0WVn0yxCfCiX0Keco9OdIoDK6bIAADswP6KvMCJSwTGdV8PgA8g8Xfw5l8BD1', NULL, 1, 0, 1, 0, 2, 'de_DE.UTF-8', 115, 'L', 1419542882, '0000-00-00 00:00:00', '', '', '', '038850abdd1feb264406be3ffa746235');
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
@ -524,7 +558,14 @@ ALTER TABLE `ShiftEntry`
|
||||||
-- Constraints der Tabelle `Shifts`
|
-- Constraints der Tabelle `Shifts`
|
||||||
--
|
--
|
||||||
ALTER TABLE `Shifts`
|
ALTER TABLE `Shifts`
|
||||||
ADD CONSTRAINT `shifts_ibfk_1` FOREIGN KEY (`RID`) REFERENCES `Room` (`RID`) ON DELETE CASCADE ON UPDATE CASCADE;
|
ADD CONSTRAINT `shifts_ibfk_1` FOREIGN KEY (`RID`) REFERENCES `Room` (`RID`) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||||
|
ADD CONSTRAINT `shifts_ibfk_2` FOREIGN KEY (`shifttype_id`) REFERENCES `ShiftTypes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Constraints der Tabelle `ShiftTypes`
|
||||||
|
--
|
||||||
|
ALTER TABLE `ShiftTypes`
|
||||||
|
ADD CONSTRAINT `shifttypes_ibfk_1` FOREIGN KEY (`angeltype_id`) REFERENCES `AngelTypes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Constraints der Tabelle `UserAngelTypes`
|
-- Constraints der Tabelle `UserAngelTypes`
|
||||||
|
|
|
@ -1,3 +1,24 @@
|
||||||
|
/* introduce shift types */
|
||||||
|
CREATE TABLE IF NOT EXISTS `ShiftTypes` (
|
||||||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
|
`name` varchar(255) NOT NULL,
|
||||||
|
`angeltype_id` int(11) DEFAULT NULL,
|
||||||
|
`description` text NOT NULL,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;
|
||||||
|
ALTER TABLE `ShiftTypes` ADD INDEX ( `angeltype_id` );
|
||||||
|
ALTER TABLE `ShiftTypes` ADD FOREIGN KEY ( `angeltype_id` ) REFERENCES `engelsystem`.`AngelTypes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
|
||||||
|
INSERT INTO `engelsystem`.`Privileges` (`id`, `name`, `desc`) VALUES (NULL , 'shifttypes', 'Administrate shift types');
|
||||||
|
INSERT INTO `GroupPrivileges` SET `group_id`=-5, `privilege_id`=(SELECT `id` FROM `Privileges` WHERE `name`='shifttypes');
|
||||||
|
|
||||||
|
ALTER TABLE `Shifts` ADD `shifttype_id` INT NOT NULL AFTER `SID`, ADD INDEX ( `shifttype_id` );
|
||||||
|
UPDATE `Shifts` SET `name`='' WHERE `name` IS NULL;
|
||||||
|
INSERT INTO `ShiftTypes` SELECT DISTINCT NULL , `name` , NULL , '' FROM `Shifts`;
|
||||||
|
UPDATE `Shifts` SET `shifttype_id`=(SELECT `id` FROM `ShiftTypes` WHERE `ShiftTypes`.`name`=`Shifts`.`name`);
|
||||||
|
ALTER TABLE `Shifts` ADD `title` TEXT NULL AFTER `SID`;
|
||||||
|
ALTER TABLE `Shifts` ADD FOREIGN KEY ( `shifttype_id` ) REFERENCES `engelsystem`.`ShiftTypes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
|
||||||
|
ALTER TABLE `Shifts` DROP `name`;
|
||||||
|
|
||||||
/* cleanup */
|
/* cleanup */
|
||||||
ALTER TABLE `User` DROP `ICQ` ;
|
ALTER TABLE `User` DROP `ICQ` ;
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
function room_link($room) {
|
||||||
|
return page_link_to('admin_rooms') . '&show=edit&id=' . $room['RID'];
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
|
@ -1,5 +1,96 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
function shift_link($shift) {
|
||||||
|
return page_link_to('shifts') . '&action=view&shift_id=' . $shift['SID'];
|
||||||
|
}
|
||||||
|
|
||||||
|
function shift_delete_link($shift) {
|
||||||
|
return page_link_to('user_shifts') . '&delete_shift=' . $shift['SID'];
|
||||||
|
}
|
||||||
|
|
||||||
|
function shift_edit_link($shift) {
|
||||||
|
return page_link_to('user_shifts') . '&edit_shift=' . $shift['SID'];
|
||||||
|
}
|
||||||
|
|
||||||
|
function shift_controller() {
|
||||||
|
global $user, $privileges;
|
||||||
|
|
||||||
|
if (! in_array('user_shifts', $privileges))
|
||||||
|
redirect(page_link_to('?'));
|
||||||
|
|
||||||
|
if (! isset($_REQUEST['shift_id']))
|
||||||
|
redirect(page_link_to('user_shifts'));
|
||||||
|
|
||||||
|
$shift = Shift($_REQUEST['shift_id']);
|
||||||
|
if ($shift === false)
|
||||||
|
engelsystem_error('Unable to load shift.');
|
||||||
|
if ($shift == null) {
|
||||||
|
error(_('Shift could not be found.'));
|
||||||
|
redirect(page_link_to('user_shifts'));
|
||||||
|
}
|
||||||
|
|
||||||
|
$shifttype = ShiftType($shift['shifttype_id']);
|
||||||
|
if ($shifttype === false || $shifttype == null)
|
||||||
|
engelsystem_error('Unable to load shift type.');
|
||||||
|
|
||||||
|
$room = Room($shift['RID']);
|
||||||
|
if ($room === false || $room == null)
|
||||||
|
engelsystem_error('Unable to load room.');
|
||||||
|
|
||||||
|
$angeltypes = AngelTypes();
|
||||||
|
if ($angeltypes === false)
|
||||||
|
engelsystem_error('Unable to load angeltypes.');
|
||||||
|
|
||||||
|
$user_shifts = Shifts_by_user($user);
|
||||||
|
if ($user_shifts === false)
|
||||||
|
engelsystem_error('Unable to load users shifts.');
|
||||||
|
|
||||||
|
$signed_up = false;
|
||||||
|
foreach ($user_shifts as $user_shift)
|
||||||
|
if ($user_shift['SID'] == $shift['SID']) {
|
||||||
|
$signed_up = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return [
|
||||||
|
$shift['name'],
|
||||||
|
Shift_view($shift, $shifttype, $room, in_array('admin_shifts', $privileges), $angeltypes, in_array('user_shifts_admin', $privileges), in_array('admin_rooms', $privileges), in_array('shifttypes', $privileges), $user_shifts, $signed_up)
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
function shifts_controller() {
|
||||||
|
if (! isset($_REQUEST['action']))
|
||||||
|
redirect(page_link_to('user_shifts'));
|
||||||
|
|
||||||
|
switch ($_REQUEST['action']) {
|
||||||
|
default:
|
||||||
|
redirect(page_link_to('?'));
|
||||||
|
case 'view':
|
||||||
|
return shift_controller();
|
||||||
|
case 'next':
|
||||||
|
return shift_next_controller();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Redirects the user to his next shift.
|
||||||
|
*/
|
||||||
|
function shift_next_controller() {
|
||||||
|
global $user, $privileges;
|
||||||
|
|
||||||
|
if (! in_array('user_shifts', $privileges))
|
||||||
|
redirect(page_link_to('?'));
|
||||||
|
|
||||||
|
$upcoming_shifts = ShiftEntries_upcoming_for_user($user);
|
||||||
|
if ($upcoming_shifts === false)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (count($upcoming_shifts) > 0)
|
||||||
|
redirect(shift_link($upcoming_shifts[0]));
|
||||||
|
|
||||||
|
redirect(page_link_to('user_shifts'));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Export all shifts using api-key.
|
* Export all shifts using api-key.
|
||||||
*/
|
*/
|
||||||
|
@ -48,7 +139,14 @@ function shifts_json_export_controller() {
|
||||||
require_once realpath(__DIR__ . '/../pages/user_shifts.php');
|
require_once realpath(__DIR__ . '/../pages/user_shifts.php');
|
||||||
view_user_shifts();
|
view_user_shifts();
|
||||||
} else {
|
} else {
|
||||||
$ical_shifts = sql_select("SELECT `Shifts`.*, `Room`.`Name` as `room_name` FROM `ShiftEntry` INNER JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`) INNER JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`) WHERE `UID`=" . sql_escape($user['UID']) . " ORDER BY `start`");
|
$ical_shifts = sql_select("
|
||||||
|
SELECT `ShiftTypes`.`name`, `Shifts`.*, `Room`.`Name` as `room_name`
|
||||||
|
FROM `ShiftEntry`
|
||||||
|
INNER JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`)
|
||||||
|
INNER JOIN `ShiftTypes` ON (`Shifts`.`shifttype_id`=`ShiftTypes`.`id`)
|
||||||
|
INNER JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`)
|
||||||
|
WHERE `UID`=" . sql_escape($user['UID']) . "
|
||||||
|
ORDER BY `start`");
|
||||||
}
|
}
|
||||||
|
|
||||||
header("Content-Type: application/json; charset=utf-8");
|
header("Content-Type: application/json; charset=utf-8");
|
||||||
|
|
|
@ -0,0 +1,167 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
function shifttype_link($shifttype) {
|
||||||
|
return page_link_to('shifttypes') . '&action=view&shifttype_id=' . $shifttype['id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete a shifttype.
|
||||||
|
*/
|
||||||
|
function shifttype_delete_controller() {
|
||||||
|
if (! isset($_REQUEST['shifttype_id']))
|
||||||
|
redirect(page_link_to('shifttypes'));
|
||||||
|
$shifttype = ShiftType($_REQUEST['shifttype_id']);
|
||||||
|
if ($shifttype === false)
|
||||||
|
engelsystem_error('Unable to load shifttype.');
|
||||||
|
if ($shifttype == null)
|
||||||
|
redirect(page_link_to('shifttypes'));
|
||||||
|
|
||||||
|
if (isset($_REQUEST['confirmed'])) {
|
||||||
|
$result = ShiftType_delete($shifttype['id']);
|
||||||
|
if ($result === false)
|
||||||
|
engelsystem_error('Unable to delete shifttype.');
|
||||||
|
|
||||||
|
engelsystem_log('Deleted shifttype ' . $shifttype['name']);
|
||||||
|
success(sprintf(_('Shifttype %s deleted.'), $shifttype['name']));
|
||||||
|
redirect(page_link_to('shifttypes'));
|
||||||
|
}
|
||||||
|
|
||||||
|
return array(
|
||||||
|
sprintf(_("Delete shifttype %s"), $shifttype['name']),
|
||||||
|
ShiftType_delete_view($shifttype)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Edit or create shift type.
|
||||||
|
*/
|
||||||
|
function shifttype_edit_controller() {
|
||||||
|
$shifttype_id = null;
|
||||||
|
$name = "";
|
||||||
|
$angeltype_id = null;
|
||||||
|
$description = "";
|
||||||
|
|
||||||
|
$angeltypes = AngelTypes();
|
||||||
|
if ($angeltypes === false)
|
||||||
|
engelsystem_error("Unable to load angel types.");
|
||||||
|
|
||||||
|
if (isset($_REQUEST['shifttype_id'])) {
|
||||||
|
$shifttype = ShiftType($_REQUEST['shifttype_id']);
|
||||||
|
if ($shifttype === false)
|
||||||
|
engelsystem_error('Unable to load shifttype.');
|
||||||
|
if ($shifttype == null) {
|
||||||
|
error(_('Shifttype not found.'));
|
||||||
|
redirect(page_link_to('shifttypes'));
|
||||||
|
}
|
||||||
|
$shifttype_id = $shifttype['id'];
|
||||||
|
$name = $shifttype['name'];
|
||||||
|
$angeltype_id = $shifttype['angeltype_id'];
|
||||||
|
$description = $shifttype['description'];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset($_REQUEST['submit'])) {
|
||||||
|
$ok = true;
|
||||||
|
|
||||||
|
if (isset($_REQUEST['name']) && $_REQUEST['name'] != '')
|
||||||
|
$name = strip_request_item('name');
|
||||||
|
else {
|
||||||
|
$ok = false;
|
||||||
|
error(_('Please enter a name.'));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset($_REQUEST['angeltype_id']) && preg_match("/^[0-9]+$/", $_REQUEST['angeltype_id']))
|
||||||
|
$angeltype_id = $_REQUEST['angeltype_id'];
|
||||||
|
else
|
||||||
|
$angeltype_id = null;
|
||||||
|
|
||||||
|
if (isset($_REQUEST['description']))
|
||||||
|
$description = strip_request_item_nl('description');
|
||||||
|
|
||||||
|
if ($ok) {
|
||||||
|
if ($shifttype_id) {
|
||||||
|
$result = ShiftType_update($shifttype_id, $name, $angeltype_id, $description);
|
||||||
|
if ($result === false)
|
||||||
|
engelsystem_error('Unable to update shifttype.');
|
||||||
|
engelsystem_log('Updated shifttype ' . $name);
|
||||||
|
success(_('Updated shifttype.'));
|
||||||
|
} else {
|
||||||
|
$shifttype_id = ShiftType_create($name, $angeltype_id, $description);
|
||||||
|
if ($shifttype_id === false)
|
||||||
|
engelsystem_error('Unable to create shifttype.');
|
||||||
|
engelsystem_log('Created shifttype ' . $name);
|
||||||
|
success(_('Created shifttype.'));
|
||||||
|
}
|
||||||
|
redirect(page_link_to('shifttypes') . '&action=view&shifttype_id=' . $shifttype_id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return [
|
||||||
|
shifttypes_title(),
|
||||||
|
ShiftType_edit_view($name, $angeltype_id, $angeltypes, $description, $shifttype_id)
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
function shifttype_controller() {
|
||||||
|
if (! isset($_REQUEST['shifttype_id']))
|
||||||
|
redirect(page_link_to('shifttypes'));
|
||||||
|
$shifttype = ShiftType($_REQUEST['shifttype_id']);
|
||||||
|
if ($shifttype === false)
|
||||||
|
engelsystem_error('Unable to load shifttype.');
|
||||||
|
if ($shifttype == null)
|
||||||
|
redirect(page_link_to('shifttypes'));
|
||||||
|
|
||||||
|
$angeltype = null;
|
||||||
|
if ($shifttype['angeltype_id'] != null) {
|
||||||
|
$angeltype = AngelType($shifttype['angeltype_id']);
|
||||||
|
if ($angeltype === false)
|
||||||
|
engelsystem_error('Unable to load angeltype.');
|
||||||
|
}
|
||||||
|
|
||||||
|
return [
|
||||||
|
$shifttype['name'],
|
||||||
|
ShiftType_view($shifttype, $angeltype)
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* List all shift types.
|
||||||
|
*/
|
||||||
|
function shifttypes_list_controller() {
|
||||||
|
$shifttypes = ShiftTypes();
|
||||||
|
if ($shifttypes === false)
|
||||||
|
engelsystem_error("Unable to load shifttypes.");
|
||||||
|
|
||||||
|
return [
|
||||||
|
shifttypes_title(),
|
||||||
|
ShiftTypes_list_view($shifttypes)
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Text for shift type related links.
|
||||||
|
*/
|
||||||
|
function shifttypes_title() {
|
||||||
|
return _("Shifttypes");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Route shift type actions
|
||||||
|
*/
|
||||||
|
function shifttypes_controller() {
|
||||||
|
if (! isset($_REQUEST['action']))
|
||||||
|
$_REQUEST['action'] = 'list';
|
||||||
|
|
||||||
|
switch ($_REQUEST['action']) {
|
||||||
|
default:
|
||||||
|
case 'list':
|
||||||
|
return shifttypes_list_controller();
|
||||||
|
case 'view':
|
||||||
|
return shifttype_controller();
|
||||||
|
case 'edit':
|
||||||
|
return shifttype_edit_controller();
|
||||||
|
case 'delete':
|
||||||
|
return shifttype_delete_controller();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
|
@ -5,13 +5,13 @@
|
||||||
*/
|
*/
|
||||||
function users_controller() {
|
function users_controller() {
|
||||||
global $privileges, $user;
|
global $privileges, $user;
|
||||||
|
|
||||||
if (! isset($user))
|
if (! isset($user))
|
||||||
redirect(page_link_to(''));
|
redirect(page_link_to(''));
|
||||||
|
|
||||||
if (! isset($_REQUEST['action']))
|
if (! isset($_REQUEST['action']))
|
||||||
$_REQUEST['action'] = 'list';
|
$_REQUEST['action'] = 'list';
|
||||||
|
|
||||||
switch ($_REQUEST['action']) {
|
switch ($_REQUEST['action']) {
|
||||||
default:
|
default:
|
||||||
case 'list':
|
case 'list':
|
||||||
|
@ -27,16 +27,17 @@ function users_controller() {
|
||||||
|
|
||||||
function user_controller() {
|
function user_controller() {
|
||||||
global $privileges, $user;
|
global $privileges, $user;
|
||||||
|
|
||||||
if (isset($_REQUEST['user_id'])) {
|
if (isset($_REQUEST['user_id'])) {
|
||||||
$user_source = User($_REQUEST['user_id']);
|
$user_source = User($_REQUEST['user_id']);
|
||||||
} else
|
} else
|
||||||
$user_source = $user;
|
$user_source = $user;
|
||||||
|
|
||||||
$admin_user_privilege = in_array('admin_user', $privileges);
|
$admin_user_privilege = in_array('admin_user', $privileges);
|
||||||
|
|
||||||
$shifts = Shifts_by_user($user_source);
|
$shifts = Shifts_by_user($user_source);
|
||||||
foreach ($shifts as &$shift) {
|
foreach ($shifts as &$shift) {
|
||||||
|
// TODO: Move queries to model
|
||||||
$shift['needed_angeltypes'] = sql_select("SELECT DISTINCT `AngelTypes`.* FROM `ShiftEntry` JOIN `AngelTypes` ON `ShiftEntry`.`TID`=`AngelTypes`.`id` WHERE `ShiftEntry`.`SID`=" . sql_escape($shift['SID']) . " ORDER BY `AngelTypes`.`name`");
|
$shift['needed_angeltypes'] = sql_select("SELECT DISTINCT `AngelTypes`.* FROM `ShiftEntry` JOIN `AngelTypes` ON `ShiftEntry`.`TID`=`AngelTypes`.`id` WHERE `ShiftEntry`.`SID`=" . sql_escape($shift['SID']) . " ORDER BY `AngelTypes`.`name`");
|
||||||
foreach ($shift['needed_angeltypes'] as &$needed_angeltype) {
|
foreach ($shift['needed_angeltypes'] as &$needed_angeltype) {
|
||||||
$needed_angeltype['users'] = sql_select("
|
$needed_angeltype['users'] = sql_select("
|
||||||
|
@ -47,13 +48,13 @@ function user_controller() {
|
||||||
AND `ShiftEntry`.`TID`=" . sql_escape($needed_angeltype['id']));
|
AND `ShiftEntry`.`TID`=" . sql_escape($needed_angeltype['id']));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($user_source['api_key'] == "")
|
if ($user_source['api_key'] == "")
|
||||||
User_reset_api_key($user_source, false);
|
User_reset_api_key($user_source, false);
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
$user_source['Nick'],
|
$user_source['Nick'],
|
||||||
User_view($user_source, $admin_user_privilege, User_is_freeloader($user_source), User_angeltypes($user_source), User_groups($user_source), $shifts, $user['UID'] == $user_source['UID'])
|
User_view($user_source, $admin_user_privilege, User_is_freeloader($user_source), User_angeltypes($user_source), User_groups($user_source), $shifts, $user['UID'] == $user_source['UID'])
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,24 +63,24 @@ function user_controller() {
|
||||||
*/
|
*/
|
||||||
function users_list_controller() {
|
function users_list_controller() {
|
||||||
global $privileges;
|
global $privileges;
|
||||||
|
|
||||||
if (! in_array('admin_user', $privileges))
|
if (! in_array('admin_user', $privileges))
|
||||||
redirect(page_link_to(''));
|
redirect(page_link_to(''));
|
||||||
|
|
||||||
$order_by = 'Nick';
|
$order_by = 'Nick';
|
||||||
if (isset($_REQUEST['OrderBy']) && in_array($_REQUEST['OrderBy'], User_sortable_columns()))
|
if (isset($_REQUEST['OrderBy']) && in_array($_REQUEST['OrderBy'], User_sortable_columns()))
|
||||||
$order_by = $_REQUEST['OrderBy'];
|
$order_by = $_REQUEST['OrderBy'];
|
||||||
|
|
||||||
$users = Users($order_by);
|
$users = Users($order_by);
|
||||||
if ($users === false)
|
if ($users === false)
|
||||||
engelsystem_error('Unable to load users.');
|
engelsystem_error('Unable to load users.');
|
||||||
|
|
||||||
foreach ($users as &$user)
|
foreach ($users as &$user)
|
||||||
$user['freeloads'] = count(ShiftEntries_freeloaded_by_user($user));
|
$user['freeloads'] = count(ShiftEntries_freeloaded_by_user($user));
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
_('All users'),
|
_('All users'),
|
||||||
Users_view($users, $order_by, User_arrived_count(), User_active_count(), User_force_active_count(), ShiftEntries_freeleaded_count(), User_tshirts_count())
|
Users_view($users, $order_by, User_arrived_count(), User_active_count(), User_force_active_count(), ShiftEntries_freeleaded_count(), User_tshirts_count())
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,10 +97,10 @@ function user_password_recovery_controller() {
|
||||||
error(_("Token is not correct."));
|
error(_("Token is not correct."));
|
||||||
redirect(page_link_to('login'));
|
redirect(page_link_to('login'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_REQUEST['submit'])) {
|
if (isset($_REQUEST['submit'])) {
|
||||||
$ok = true;
|
$ok = true;
|
||||||
|
|
||||||
if (isset($_REQUEST['password']) && strlen($_REQUEST['password']) >= MIN_PASSWORD_LENGTH) {
|
if (isset($_REQUEST['password']) && strlen($_REQUEST['password']) >= MIN_PASSWORD_LENGTH) {
|
||||||
if ($_REQUEST['password'] != $_REQUEST['password2']) {
|
if ($_REQUEST['password'] != $_REQUEST['password2']) {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
|
@ -109,22 +110,22 @@ function user_password_recovery_controller() {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
error(_("Your password is to short (please use at least 6 characters)."));
|
error(_("Your password is to short (please use at least 6 characters)."));
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($ok) {
|
if ($ok) {
|
||||||
$result = set_password($user_source['UID'], $_REQUEST['password']);
|
$result = set_password($user_source['UID'], $_REQUEST['password']);
|
||||||
if ($result === false)
|
if ($result === false)
|
||||||
engelsystem_error(_("Password could not be updated."));
|
engelsystem_error(_("Password could not be updated."));
|
||||||
|
|
||||||
success(_("Password saved."));
|
success(_("Password saved."));
|
||||||
redirect(page_link_to('login'));
|
redirect(page_link_to('login'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return User_password_set_view();
|
return User_password_set_view();
|
||||||
} else {
|
} else {
|
||||||
if (isset($_REQUEST['submit'])) {
|
if (isset($_REQUEST['submit'])) {
|
||||||
$ok = true;
|
$ok = true;
|
||||||
|
|
||||||
if (isset($_REQUEST['email']) && strlen(strip_request_item('email')) > 0) {
|
if (isset($_REQUEST['email']) && strlen(strip_request_item('email')) > 0) {
|
||||||
$email = strip_request_item('email');
|
$email = strip_request_item('email');
|
||||||
if (check_email($email)) {
|
if (check_email($email)) {
|
||||||
|
@ -143,7 +144,7 @@ function user_password_recovery_controller() {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
error(_("Please enter your e-mail."));
|
error(_("Please enter your e-mail."));
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($ok) {
|
if ($ok) {
|
||||||
$token = User_generate_password_recovery_token($user_source);
|
$token = User_generate_password_recovery_token($user_source);
|
||||||
if ($token === false)
|
if ($token === false)
|
||||||
|
@ -151,12 +152,12 @@ function user_password_recovery_controller() {
|
||||||
$result = engelsystem_email_to_user($user_source, _("Password recovery"), sprintf(_("Please visit %s to recover your password."), page_link_to_absolute('user_password_recovery') . '&token=' . $token));
|
$result = engelsystem_email_to_user($user_source, _("Password recovery"), sprintf(_("Please visit %s to recover your password."), page_link_to_absolute('user_password_recovery') . '&token=' . $token));
|
||||||
if ($result === false)
|
if ($result === false)
|
||||||
engelsystem_error("Unable to send password recovery email.");
|
engelsystem_error("Unable to send password recovery email.");
|
||||||
|
|
||||||
success(_("We sent an email containing your password recovery link."));
|
success(_("We sent an email containing your password recovery link."));
|
||||||
redirect(page_link_to('login'));
|
redirect(page_link_to('login'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return User_password_recovery_view();
|
return User_password_recovery_view();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,12 @@ function mail_shift_change($old_shift, $new_shift) {
|
||||||
$message .= "\n";
|
$message .= "\n";
|
||||||
|
|
||||||
if ($old_shift["name"] != $new_shift["name"]) {
|
if ($old_shift["name"] != $new_shift["name"]) {
|
||||||
$message .= sprintf(_("* Shift Name changed from %s to %s"), $old_shift["name"], $new_shift["name"]) . "\n";
|
$message .= sprintf(_("* Shift type changed from %s to %s"), $old_shift["name"], $new_shift["name"]) . "\n";
|
||||||
|
$noticable_changes = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($old_shift["title"] != $new_shift["title"]) {
|
||||||
|
$message .= sprintf(_("* Shift title changed from %s to %s"), $old_shift["title"], $new_shift["title"]) . "\n";
|
||||||
$noticable_changes = true;
|
$noticable_changes = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,6 +44,7 @@ function mail_shift_change($old_shift, $new_shift) {
|
||||||
$message .= _("The updated Shift:") . "\n";
|
$message .= _("The updated Shift:") . "\n";
|
||||||
|
|
||||||
$message .= $new_shift["name"] . "\n";
|
$message .= $new_shift["name"] . "\n";
|
||||||
|
$message .= $new_shift["title"] . "\n";
|
||||||
$message .= date("y-m-d H:i", $new_shift["start"]) . " - " . date("H:i", $new_shift["end"]) . "\n";
|
$message .= date("y-m-d H:i", $new_shift["start"]) . " - " . date("H:i", $new_shift["end"]) . "\n";
|
||||||
$message .= $new_room["Name"] . "\n";
|
$message .= $new_room["Name"] . "\n";
|
||||||
|
|
||||||
|
@ -54,6 +60,7 @@ function mail_shift_delete($shift) {
|
||||||
$message = _("A Shift you are registered on was deleted:") . "\n";
|
$message = _("A Shift you are registered on was deleted:") . "\n";
|
||||||
|
|
||||||
$message .= $shift["name"] . "\n";
|
$message .= $shift["name"] . "\n";
|
||||||
|
$message .= $new_shift["title"] . "\n";
|
||||||
$message .= date("y-m-d H:i", $shift["start"]) . " - " . date("H:i", $shift["end"]) . "\n";
|
$message .= date("y-m-d H:i", $shift["start"]) . " - " . date("H:i", $shift["end"]) . "\n";
|
||||||
$message .= $room["Name"] . "\n";
|
$message .= $room["Name"] . "\n";
|
||||||
|
|
||||||
|
@ -68,6 +75,7 @@ function mail_shift_assign($user, $shift) {
|
||||||
|
|
||||||
$message = _("You have been assigned to a Shift:") . "\n";
|
$message = _("You have been assigned to a Shift:") . "\n";
|
||||||
$message .= $shift["name"] . "\n";
|
$message .= $shift["name"] . "\n";
|
||||||
|
$message .= $shift["title"] . "\n";
|
||||||
$message .= date("y-m-d H:i", $shift["start"]) . " - " . date("H:i", $shift["end"]) . "\n";
|
$message .= date("y-m-d H:i", $shift["start"]) . " - " . date("H:i", $shift["end"]) . "\n";
|
||||||
$message .= $room["Name"] . "\n";
|
$message .= $room["Name"] . "\n";
|
||||||
|
|
||||||
|
@ -81,6 +89,7 @@ function mail_shift_removed($user, $shift) {
|
||||||
|
|
||||||
$message = _("You have been removed from a Shift:") . "\n";
|
$message = _("You have been removed from a Shift:") . "\n";
|
||||||
$message .= $shift["name"] . "\n";
|
$message .= $shift["name"] . "\n";
|
||||||
|
$message .= $shift["title"] . "\n";
|
||||||
$message .= date("y-m-d H:i", $shift["start"]) . " - " . date("H:i", $shift["end"]) . "\n";
|
$message .= date("y-m-d H:i", $shift["start"]) . " - " . date("H:i", $shift["end"]) . "\n";
|
||||||
$message .= $room["Name"] . "\n";
|
$message .= $room["Name"] . "\n";
|
||||||
|
|
||||||
|
|
|
@ -76,7 +76,8 @@ function ShiftEntries_upcoming_for_user($user) {
|
||||||
return sql_select("
|
return sql_select("
|
||||||
SELECT *
|
SELECT *
|
||||||
FROM `ShiftEntry`
|
FROM `ShiftEntry`
|
||||||
JOIN `Shifts` ON `Shifts`.`SID`=`ShiftEntry`.`SID`
|
JOIN `Shifts` ON (`Shifts`.`SID` = `ShiftEntry`.`SID`)
|
||||||
|
JOIN `ShiftTypes` ON `ShiftTypes`.`id` = `Shifts`.`shifttype_id`
|
||||||
WHERE `ShiftEntry`.`UID`=" . sql_escape($user['UID']) . "
|
WHERE `ShiftEntry`.`UID`=" . sql_escape($user['UID']) . "
|
||||||
AND `Shifts`.`end` > " . sql_escape(time()) . "
|
AND `Shifts`.`end` > " . sql_escape(time()) . "
|
||||||
ORDER BY `Shifts`.`end`
|
ORDER BY `Shifts`.`end`
|
||||||
|
|
|
@ -0,0 +1,66 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete a shift type.
|
||||||
|
* @param int $shifttype_id
|
||||||
|
*/
|
||||||
|
function ShiftType_delete($shifttype_id) {
|
||||||
|
return sql_query("DELETE FROM `ShiftTypes` WHERE `id`=" . sql_escape($shifttype_id));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update a shift type.
|
||||||
|
*
|
||||||
|
* @param int $shifttype_id
|
||||||
|
* @param string $name
|
||||||
|
* @param int $angeltype_id
|
||||||
|
* @param string $description
|
||||||
|
*/
|
||||||
|
function ShiftType_update($shifttype_id, $name, $angeltype_id, $description) {
|
||||||
|
return sql_query("UPDATE `ShiftTypes` SET
|
||||||
|
`name`='" . sql_escape($name) . "',
|
||||||
|
`angeltype_id`=" . sql_null($angeltype_id) . ",
|
||||||
|
`description`='" . sql_escape($description) . "'
|
||||||
|
WHERE `id`=" . sql_escape($shifttype_id));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a shift type.
|
||||||
|
*
|
||||||
|
* @param string $name
|
||||||
|
* @param int $angeltype_id
|
||||||
|
* @param string $description
|
||||||
|
* @return new shifttype id
|
||||||
|
*/
|
||||||
|
function ShiftType_create($name, $angeltype_id, $description) {
|
||||||
|
$result = sql_query("INSERT INTO `ShiftTypes` SET
|
||||||
|
`name`='" . sql_escape($name) . "',
|
||||||
|
`angeltype_id`=" . sql_null($angeltype_id) . ",
|
||||||
|
`description`='" . sql_escape($description) . "'");
|
||||||
|
if ($result === false)
|
||||||
|
return false;
|
||||||
|
return sql_id();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a shift type by id.
|
||||||
|
*
|
||||||
|
* @param int $shifttype_id
|
||||||
|
*/
|
||||||
|
function ShiftType($shifttype_id) {
|
||||||
|
$shifttype = sql_select("SELECT * FROM `ShiftTypes` WHERE `id`=" . sql_escape($shifttype_id));
|
||||||
|
if ($shifttype === false)
|
||||||
|
return false;
|
||||||
|
if ($shifttype == null)
|
||||||
|
return null;
|
||||||
|
return $shifttype[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get all shift types.
|
||||||
|
*/
|
||||||
|
function ShiftTypes() {
|
||||||
|
return sql_select("SELECT * FROM `ShiftTypes` ORDER BY `name`");
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
|
@ -1,5 +1,74 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if a shift collides with other shifts (in time).
|
||||||
|
* @param Shift $shift
|
||||||
|
* @param array<Shift> $shifts
|
||||||
|
*/
|
||||||
|
function Shift_collides($shift, $shifts) {
|
||||||
|
foreach ($shifts as $other_shift)
|
||||||
|
if ($shift['SID'] != $other_shift['SID'])
|
||||||
|
if (! ($shift['start'] >= $other_shift['end'] || $shift['end'] <= $other_shift['start']))
|
||||||
|
return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if an angel can sign up for given shift.
|
||||||
|
*
|
||||||
|
* @param Shift $shift
|
||||||
|
* @param AngelType $angeltype
|
||||||
|
* @param array<Shift> $user_shifts
|
||||||
|
*/
|
||||||
|
function Shift_signup_allowed($shift, $angeltype, $user_angeltype = null, $user_shifts = null) {
|
||||||
|
global $user, $privileges;
|
||||||
|
|
||||||
|
if ($user_shifts == null) {
|
||||||
|
$user_shifts = Shifts_by_user($user);
|
||||||
|
if ($user_shifts === false)
|
||||||
|
engelsystem_error('Unable to load users shifts.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$collides = Shift_collides($shift, $user_shifts);
|
||||||
|
|
||||||
|
if ($user_angeltype == null) {
|
||||||
|
$user_angeltype = UserAngelType_by_User_and_AngelType($user, $angeltype);
|
||||||
|
if ($user_angeltype === false)
|
||||||
|
engelsystem_error('Unable to load user angeltype.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$signed_up = false;
|
||||||
|
foreach ($user_shifts as $user_shift)
|
||||||
|
if ($user_shift['SID'] == $shift['SID']) {
|
||||||
|
$signed_up = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// is the shift still running or alternatively is the user shift admin?
|
||||||
|
$user_may_join_shift = true;
|
||||||
|
|
||||||
|
// you cannot join if user alread joined a parallel or this shift
|
||||||
|
$user_may_join_shift &= ! $collides;
|
||||||
|
|
||||||
|
// you cannot join if you already singed up for this shift
|
||||||
|
$user_may_join_shift &= ! $signed_up;
|
||||||
|
|
||||||
|
// you cannot join if user is not of this angel type
|
||||||
|
$user_may_join_shift &= $user_angeltype != null;
|
||||||
|
|
||||||
|
// you cannot join if you are not confirmed
|
||||||
|
if ($angeltype['restricted'] == 1 && $user_angeltype != null)
|
||||||
|
$user_may_join_shift &= isset($user_angeltype['confirm_user_id']);
|
||||||
|
|
||||||
|
// you can only join if the shift is in future
|
||||||
|
$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);
|
||||||
|
|
||||||
|
return $user_may_join_shift;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Delete a shift by its external id.
|
* Delete a shift by its external id.
|
||||||
*/
|
*/
|
||||||
|
@ -12,7 +81,7 @@ function Shift_delete_by_psid($shift_psid) {
|
||||||
*/
|
*/
|
||||||
function Shift_delete($shift_id) {
|
function Shift_delete($shift_id) {
|
||||||
mail_shift_delete(Shift($shift_id));
|
mail_shift_delete(Shift($shift_id));
|
||||||
|
|
||||||
return sql_query("DELETE FROM `Shifts` WHERE `SID`=" . sql_escape($shift_id));
|
return sql_query("DELETE FROM `Shifts` WHERE `SID`=" . sql_escape($shift_id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,14 +89,15 @@ function Shift_delete($shift_id) {
|
||||||
* Update a shift.
|
* Update a shift.
|
||||||
*/
|
*/
|
||||||
function Shift_update($shift) {
|
function Shift_update($shift) {
|
||||||
$old_shift = Shift($shift['SID']);
|
$shift['name'] = ShiftType($shift['shifttype_id'])['name'];
|
||||||
mail_shift_change(Shift($shift['SID']), $shift);
|
mail_shift_change(Shift($shift['SID']), $shift);
|
||||||
|
|
||||||
return sql_query("UPDATE `Shifts` SET
|
return sql_query("UPDATE `Shifts` SET
|
||||||
|
`shifttype_id`=" . sql_escape($shift['shifttype_id']) . ",
|
||||||
`start`=" . sql_escape($shift['start']) . ",
|
`start`=" . sql_escape($shift['start']) . ",
|
||||||
`end`=" . sql_escape($shift['end']) . ",
|
`end`=" . sql_escape($shift['end']) . ",
|
||||||
`RID`=" . sql_escape($shift['RID']) . ",
|
`RID`=" . sql_escape($shift['RID']) . ",
|
||||||
`name`=" . sql_null($shift['name']) . ",
|
`title`=" . sql_null($shift['title']) . ",
|
||||||
`URL`=" . sql_null($shift['URL']) . ",
|
`URL`=" . sql_null($shift['URL']) . ",
|
||||||
`PSID`=" . sql_null($shift['PSID']) . "
|
`PSID`=" . sql_null($shift['PSID']) . "
|
||||||
WHERE `SID`=" . sql_escape($shift['SID']));
|
WHERE `SID`=" . sql_escape($shift['SID']));
|
||||||
|
@ -42,7 +112,7 @@ function Shift_update_by_psid($shift) {
|
||||||
return false;
|
return false;
|
||||||
if (count($shift_source) == 0)
|
if (count($shift_source) == 0)
|
||||||
return null;
|
return null;
|
||||||
$shift['SID'] = $shift_source['SID'];
|
$shift['SID'] = $shift_source[0]['SID'];
|
||||||
return Shift_update($shift);
|
return Shift_update($shift);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,10 +123,11 @@ function Shift_update_by_psid($shift) {
|
||||||
*/
|
*/
|
||||||
function Shift_create($shift) {
|
function Shift_create($shift) {
|
||||||
$result = sql_query("INSERT INTO `Shifts` SET
|
$result = sql_query("INSERT INTO `Shifts` SET
|
||||||
|
`shifttype_id`=" . sql_escape($shift['shifttype_id']) . ",
|
||||||
`start`=" . sql_escape($shift['start']) . ",
|
`start`=" . sql_escape($shift['start']) . ",
|
||||||
`end`=" . sql_escape($shift['end']) . ",
|
`end`=" . sql_escape($shift['end']) . ",
|
||||||
`RID`=" . sql_escape($shift['RID']) . ",
|
`RID`=" . sql_escape($shift['RID']) . ",
|
||||||
`name`=" . sql_null($shift['name']) . ",
|
`title`=" . sql_null($shift['title']) . ",
|
||||||
`URL`=" . sql_null($shift['URL']) . ",
|
`URL`=" . sql_null($shift['URL']) . ",
|
||||||
`PSID`=" . sql_null($shift['PSID']));
|
`PSID`=" . sql_null($shift['PSID']));
|
||||||
if ($result === false)
|
if ($result === false)
|
||||||
|
@ -69,9 +140,10 @@ function Shift_create($shift) {
|
||||||
*/
|
*/
|
||||||
function Shifts_by_user($user) {
|
function Shifts_by_user($user) {
|
||||||
return sql_select("
|
return sql_select("
|
||||||
SELECT *
|
SELECT `ShiftTypes`.`id` as `shifttype_id`, `ShiftTypes`.`name`, `ShiftEntry`.*, `Shifts`.*, `Room`.*
|
||||||
FROM `ShiftEntry`
|
FROM `ShiftEntry`
|
||||||
JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`)
|
JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`)
|
||||||
|
JOIN `ShiftTypes` ON (`ShiftTypes`.`id` = `Shifts`.`shifttype_id`)
|
||||||
JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`)
|
JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`)
|
||||||
WHERE `UID`=" . sql_escape($user['UID']) . "
|
WHERE `UID`=" . sql_escape($user['UID']) . "
|
||||||
ORDER BY `start`
|
ORDER BY `start`
|
||||||
|
@ -130,8 +202,12 @@ function Shifts_filtered() {
|
||||||
* ID
|
* ID
|
||||||
*/
|
*/
|
||||||
function Shift($id) {
|
function Shift($id) {
|
||||||
$shifts_source = sql_select("SELECT * FROM `Shifts` WHERE `SID`=" . sql_escape($id) . " LIMIT 1");
|
$shifts_source = sql_select("
|
||||||
$shiftsEntry_source = sql_select("SELECT `TID` , `UID` , `freeloaded` FROM `ShiftEntry` WHERE `SID`=" . sql_escape($id));
|
SELECT `Shifts`.*, `ShiftTypes`.`name`
|
||||||
|
FROM `Shifts`
|
||||||
|
JOIN `ShiftTypes` ON (`ShiftTypes`.`id` = `Shifts`.`shifttype_id`)
|
||||||
|
WHERE `SID`=" . sql_escape($id));
|
||||||
|
$shiftsEntry_source = sql_select("SELECT `id`, `TID` , `UID` , `freeloaded` FROM `ShiftEntry` WHERE `SID`=" . sql_escape($id));
|
||||||
|
|
||||||
if ($shifts_source === false)
|
if ($shifts_source === false)
|
||||||
return false;
|
return false;
|
||||||
|
@ -139,6 +215,7 @@ function Shift($id) {
|
||||||
$result = $shifts_source[0];
|
$result = $shifts_source[0];
|
||||||
|
|
||||||
$result['ShiftEntry'] = $shiftsEntry_source;
|
$result['ShiftEntry'] = $shiftsEntry_source;
|
||||||
|
$result['NeedAngels'] = [];
|
||||||
|
|
||||||
$temp = NeededAngelTypes_by_shift($id);
|
$temp = NeededAngelTypes_by_shift($id);
|
||||||
foreach ($temp as $e) {
|
foreach ($temp as $e) {
|
||||||
|
@ -160,8 +237,9 @@ function Shift($id) {
|
||||||
*/
|
*/
|
||||||
function Shifts() {
|
function Shifts() {
|
||||||
$shifts_source = sql_select("
|
$shifts_source = sql_select("
|
||||||
SELECT `Shifts`.*, `Room`.`RID`, `Room`.`Name` as `room_name`
|
SELECT `ShiftTypes`.`name`, `Shifts`.*, `Room`.`RID`, `Room`.`Name` as `room_name`
|
||||||
FROM `Shifts`
|
FROM `Shifts`
|
||||||
|
JOIN `ShiftTypes` ON (`ShiftTypes`.`id` = `Shifts`.`shifttype_id`)
|
||||||
JOIN `Room` ON `Room`.`RID` = `Shifts`.`RID`
|
JOIN `Room` ON `Room`.`RID` = `Shifts`.`RID`
|
||||||
");
|
");
|
||||||
if ($shifts_source === false)
|
if ($shifts_source === false)
|
||||||
|
|
|
@ -32,7 +32,14 @@ function admin_active() {
|
||||||
$limit = " LIMIT " . $count;
|
$limit = " LIMIT " . $count;
|
||||||
if (isset($_REQUEST['ack'])) {
|
if (isset($_REQUEST['ack'])) {
|
||||||
sql_query("UPDATE `User` SET `Aktiv` = 0 WHERE `Tshirt` = 0");
|
sql_query("UPDATE `User` SET `Aktiv` = 0 WHERE `Tshirt` = 0");
|
||||||
$users = sql_select("SELECT `User`.*, COUNT(`ShiftEntry`.`id`) as `shift_count`, ${shift_sum_formula} as `shift_length` FROM `User` LEFT JOIN `ShiftEntry` ON `User`.`UID` = `ShiftEntry`.`UID` LEFT JOIN `Shifts` ON `ShiftEntry`.`SID` = `Shifts`.`SID` WHERE `User`.`Gekommen` = 1 AND `User`.`force_active`=0 GROUP BY `User`.`UID` ORDER BY `force_active` DESC, `shift_length` DESC" . $limit);
|
$users = sql_select("
|
||||||
|
SELECT `User`.*, COUNT(`ShiftEntry`.`id`) as `shift_count`, ${shift_sum_formula} as `shift_length`
|
||||||
|
FROM `User`
|
||||||
|
LEFT JOIN `ShiftEntry` ON `User`.`UID` = `ShiftEntry`.`UID`
|
||||||
|
LEFT JOIN `Shifts` ON `ShiftEntry`.`SID` = `Shifts`.`SID`
|
||||||
|
WHERE `User`.`Gekommen` = 1 AND `User`.`force_active`=0
|
||||||
|
GROUP BY `User`.`UID`
|
||||||
|
ORDER BY `force_active` DESC, `shift_length` DESC" . $limit);
|
||||||
$user_nicks = array();
|
$user_nicks = array();
|
||||||
foreach ($users as $usr) {
|
foreach ($users as $usr) {
|
||||||
sql_query("UPDATE `User` SET `Aktiv` = 1 WHERE `UID`=" . sql_escape($usr['UID']));
|
sql_query("UPDATE `User` SET `Aktiv` = 1 WHERE `UID`=" . sql_escape($usr['UID']));
|
||||||
|
@ -85,7 +92,13 @@ function admin_active() {
|
||||||
$msg = error(_("Angel not found."), true);
|
$msg = error(_("Angel not found."), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
$users = sql_select("SELECT `User`.*, COUNT(`ShiftEntry`.`id`) as `shift_count`, ${shift_sum_formula} as `shift_length` FROM `User` LEFT JOIN `ShiftEntry` ON `User`.`UID` = `ShiftEntry`.`UID` LEFT JOIN `Shifts` ON `ShiftEntry`.`SID` = `Shifts`.`SID` WHERE `User`.`Gekommen` = 1 GROUP BY `User`.`UID` ORDER BY `force_active` DESC, `shift_length` DESC" . $limit);
|
$users = sql_select("
|
||||||
|
SELECT `User`.*, COUNT(`ShiftEntry`.`id`) as `shift_count`, ${shift_sum_formula} as `shift_length`
|
||||||
|
FROM `User` LEFT JOIN `ShiftEntry` ON `User`.`UID` = `ShiftEntry`.`UID`
|
||||||
|
LEFT JOIN `Shifts` ON `ShiftEntry`.`SID` = `Shifts`.`SID`
|
||||||
|
WHERE `User`.`Gekommen` = 1
|
||||||
|
GROUP BY `User`.`UID`
|
||||||
|
ORDER BY `force_active` DESC, `shift_length` DESC" . $limit);
|
||||||
|
|
||||||
$matched_users = array();
|
$matched_users = array();
|
||||||
if ($search == "")
|
if ($search == "")
|
||||||
|
|
|
@ -27,7 +27,15 @@ function admin_free() {
|
||||||
foreach ($angel_types_source as $angel_type)
|
foreach ($angel_types_source as $angel_type)
|
||||||
$angel_types[$angel_type['id']] = $angel_type['name'];
|
$angel_types[$angel_type['id']] = $angel_type['name'];
|
||||||
|
|
||||||
$users = sql_select("SELECT `User`.* FROM `User` ${angeltypesearch} LEFT JOIN `ShiftEntry` ON `User`.`UID` = `ShiftEntry`.`UID` LEFT JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID` AND `Shifts`.`start` < " . sql_escape(time()) . " AND `Shifts`.`end` > " . sql_escape(time()) . ") WHERE `User`.`Gekommen` = 1 AND `Shifts`.`SID` IS NULL GROUP BY `User`.`UID` ORDER BY `Nick`");
|
$users = sql_select("
|
||||||
|
SELECT `User`.*
|
||||||
|
FROM `User`
|
||||||
|
${angeltypesearch}
|
||||||
|
LEFT JOIN `ShiftEntry` ON `User`.`UID` = `ShiftEntry`.`UID`
|
||||||
|
LEFT JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID` AND `Shifts`.`start` < " . sql_escape(time()) . " AND `Shifts`.`end` > " . sql_escape(time()) . ")
|
||||||
|
WHERE `User`.`Gekommen` = 1 AND `Shifts`.`SID` IS NULL
|
||||||
|
GROUP BY `User`.`UID`
|
||||||
|
ORDER BY `Nick`");
|
||||||
|
|
||||||
$free_users_table = array();
|
$free_users_table = array();
|
||||||
if ($search == "")
|
if ($search == "")
|
||||||
|
|
|
@ -10,104 +10,156 @@ function admin_import() {
|
||||||
$html = "";
|
$html = "";
|
||||||
|
|
||||||
$step = "input";
|
$step = "input";
|
||||||
if (isset($_REQUEST['step']))
|
if (isset($_REQUEST['step']) && in_array($step, [
|
||||||
|
'input',
|
||||||
|
'check',
|
||||||
|
'import'
|
||||||
|
]))
|
||||||
$step = $_REQUEST['step'];
|
$step = $_REQUEST['step'];
|
||||||
|
|
||||||
$html .= '<p>';
|
if ($test_handle = fopen('../import/tmp', 'w')) {
|
||||||
$html .= $step == "input" ? '<b>1. Input</b>' : '1. Input';
|
fclose($test_handle);
|
||||||
$html .= ' » ';
|
unlink('../import/tmp');
|
||||||
$html .= $step == "check" ? '<b>2. Validate</b>' : '2. Validate';
|
} else {
|
||||||
$html .= ' » ';
|
error(_('Webserver has no write-permission on import directory.'));
|
||||||
$html .= $step == "import" ? '<b>3. Import</b>' : '3. Import';
|
}
|
||||||
$html .= '</p>';
|
|
||||||
|
|
||||||
$import_file = '../import/import_' . $user['UID'] . '.xml';
|
$import_file = '../import/import_' . $user['UID'] . '.xml';
|
||||||
|
$shifttype_id = null;
|
||||||
|
|
||||||
|
$shifttypes_source = ShiftTypes();
|
||||||
|
if ($shifttypes_source === false)
|
||||||
|
engelsystem_error('Unable to load shifttypes.');
|
||||||
|
$shifttypes = [];
|
||||||
|
foreach ($shifttypes_source as $shifttype)
|
||||||
|
$shifttypes[$shifttype['id']] = $shifttype['name'];
|
||||||
|
|
||||||
switch ($step) {
|
switch ($step) {
|
||||||
case "input":
|
case 'input':
|
||||||
$ok = false;
|
$ok = false;
|
||||||
if ($test_handle = fopen('../import/tmp', 'w')) {
|
|
||||||
fclose($test_handle);
|
|
||||||
unlink('../import/tmp');
|
|
||||||
} else {
|
|
||||||
error("Webserver has no write-permission on import directory.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($_REQUEST['submit'])) {
|
if (isset($_REQUEST['submit'])) {
|
||||||
$ok = true;
|
$ok = true;
|
||||||
|
|
||||||
|
if (isset($_REQUEST['shifttype_id']) && isset($shifttypes[$_REQUEST['shifttype_id']]))
|
||||||
|
$shifttype_id = $_REQUEST['shifttype_id'];
|
||||||
|
else {
|
||||||
|
$ok = false;
|
||||||
|
error(_('Please select a shift type.'));
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($_FILES['xcal_file']) && ($_FILES['xcal_file']['error'] == 0)) {
|
if (isset($_FILES['xcal_file']) && ($_FILES['xcal_file']['error'] == 0)) {
|
||||||
if (move_uploaded_file($_FILES['xcal_file']['tmp_name'], $import_file)) {
|
if (move_uploaded_file($_FILES['xcal_file']['tmp_name'], $import_file)) {
|
||||||
libxml_use_internal_errors(true);
|
libxml_use_internal_errors(true);
|
||||||
if (simplexml_load_file($import_file) === false) {
|
if (simplexml_load_file($import_file) === false) {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
error("No valid xml/xcal file provided.");
|
error(_('No valid xml/xcal file provided.'));
|
||||||
unlink($import_file);
|
unlink($import_file);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
error("File upload went wrong.");
|
error(_('File upload went wrong.'));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
error("Please provide some data.");
|
error(_('Please provide some data.'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($ok)
|
if ($ok) {
|
||||||
redirect(page_link_to('admin_import') . "&step=check");
|
redirect(page_link_to('admin_import') . "&step=check&shifttype_id=" . $shifttype_id);
|
||||||
else {
|
} else {
|
||||||
$html .= form(array(
|
$html .= div('well well-sm text-center', [
|
||||||
form_info('', _("This import will create/update/delete rooms and shifts by given FRAB-export file. The needed file format is xcal.")),
|
_('File Upload') . mute(glyph('arrow-right')) . mute(_('Validation')) . mute(glyph('arrow-right')) . mute(_('Import'))
|
||||||
form_file('xcal_file', _("xcal-File (.xcal)")),
|
]) . div('row', [
|
||||||
form_submit('submit', _("Import"))
|
div('col-md-offset-3 col-md-6', [
|
||||||
));
|
form(array(
|
||||||
|
form_info('', _("This import will create/update/delete rooms and shifts by given FRAB-export file. The needed file format is xcal.")),
|
||||||
|
form_select('shifttype_id', _('Shifttype'), $shifttypes, $shifttype_id),
|
||||||
|
form_file('xcal_file', _("xcal-File (.xcal)")),
|
||||||
|
form_submit('submit', _("Import"))
|
||||||
|
))
|
||||||
|
])
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "check":
|
case 'check':
|
||||||
if (! file_exists($import_file))
|
if (! file_exists($import_file)) {
|
||||||
|
error(_('Missing import file.'));
|
||||||
redirect(page_link_to('admin_import'));
|
redirect(page_link_to('admin_import'));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset($_REQUEST['shifttype_id']) && isset($shifttypes[$_REQUEST['shifttype_id']]))
|
||||||
|
$shifttype_id = $_REQUEST['shifttype_id'];
|
||||||
|
else {
|
||||||
|
error(_('Please select a shift type.'));
|
||||||
|
redirect(page_link_to('admin_import'));
|
||||||
|
}
|
||||||
|
|
||||||
list($rooms_new, $rooms_deleted) = prepare_rooms($import_file);
|
list($rooms_new, $rooms_deleted) = prepare_rooms($import_file);
|
||||||
list($events_new, $events_updated, $events_deleted) = prepare_events($import_file);
|
list($events_new, $events_updated, $events_deleted) = prepare_events($import_file, $shifttype_id);
|
||||||
|
|
||||||
$html .= form(array(
|
$html .= div('well well-sm text-center', [
|
||||||
'<h3>' . _("Rooms to create") . '</h3>',
|
'<span class="text-success">' . _('File Upload') . glyph('ok-circle') . '</span>' . mute(glyph('arrow-right')) . _('Validation') . mute(glyph('arrow-right')) . mute(_('Import'))
|
||||||
table(_("Name"), $rooms_new),
|
]) . form([
|
||||||
'<h3>' . _("Rooms to delete") . '</h3>',
|
div('row', [
|
||||||
table(_("Name"), $rooms_deleted),
|
div('col-sm-6', [
|
||||||
|
'<h3>' . _("Rooms to create") . '</h3>',
|
||||||
|
table(_("Name"), $rooms_new)
|
||||||
|
]),
|
||||||
|
div('col-sm-6', [
|
||||||
|
'<h3>' . _("Rooms to delete") . '</h3>',
|
||||||
|
table(_("Name"), $rooms_deleted)
|
||||||
|
])
|
||||||
|
]),
|
||||||
'<h3>' . _("Shifts to create") . '</h3>',
|
'<h3>' . _("Shifts to create") . '</h3>',
|
||||||
table(array(
|
table(array(
|
||||||
'day' => _("Day"),
|
'day' => _("Day"),
|
||||||
'start' => _("Start"),
|
'start' => _("Start"),
|
||||||
'end' => _("End"),
|
'end' => _("End"),
|
||||||
'name' => _("Name"),
|
'shifttype' => _('Shift type'),
|
||||||
|
'title' => _("Title"),
|
||||||
'room' => _("Room")
|
'room' => _("Room")
|
||||||
), shifts_printable($events_new)),
|
), shifts_printable($events_new, $shifttypes)),
|
||||||
'<h3>' . _("Shifts to update") . '</h3>',
|
'<h3>' . _("Shifts to update") . '</h3>',
|
||||||
table(array(
|
table(array(
|
||||||
'day' => _("Day"),
|
'day' => _("Day"),
|
||||||
'start' => _("Start"),
|
'start' => _("Start"),
|
||||||
'end' => _("End"),
|
'end' => _("End"),
|
||||||
'name' => _("Name"),
|
'shifttype' => _('Shift type'),
|
||||||
|
'title' => _("Title"),
|
||||||
'room' => _("Room")
|
'room' => _("Room")
|
||||||
), shifts_printable($events_updated)),
|
), shifts_printable($events_updated, $shifttypes)),
|
||||||
'<h3>' . _("Shifts to delete") . '</h3>',
|
'<h3>' . _("Shifts to delete") . '</h3>',
|
||||||
table(array(
|
table(array(
|
||||||
'day' => _("Day"),
|
'day' => _("Day"),
|
||||||
'start' => _("Start"),
|
'start' => _("Start"),
|
||||||
'end' => _("End"),
|
'end' => _("End"),
|
||||||
'name' => _("Name"),
|
'shifttype' => _('Shift type'),
|
||||||
|
'title' => _("Title"),
|
||||||
'room' => _("Room")
|
'room' => _("Room")
|
||||||
), shifts_printable($events_deleted)),
|
), shifts_printable($events_deleted, $shifttypes)),
|
||||||
form_submit('submit', _("Import"))
|
form_submit('submit', _("Import"))
|
||||||
), page_link_to('admin_import') . '&step=import');
|
], page_link_to('admin_import') . '&step=import&shifttype_id=' . $shifttype_id);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "import":
|
case 'import':
|
||||||
|
if (! file_exists($import_file)) {
|
||||||
|
error(_('Missing import file.'));
|
||||||
|
redirect(page_link_to('admin_import'));
|
||||||
|
}
|
||||||
|
|
||||||
if (! file_exists($import_file))
|
if (! file_exists($import_file))
|
||||||
redirect(page_link_to('admin_import'));
|
redirect(page_link_to('admin_import'));
|
||||||
|
|
||||||
|
if (isset($_REQUEST['shifttype_id']) && isset($shifttypes[$_REQUEST['shifttype_id']]))
|
||||||
|
$shifttype_id = $_REQUEST['shifttype_id'];
|
||||||
|
else {
|
||||||
|
error(_('Please select a shift type.'));
|
||||||
|
redirect(page_link_to('admin_import'));
|
||||||
|
}
|
||||||
|
|
||||||
list($rooms_new, $rooms_deleted) = prepare_rooms($import_file);
|
list($rooms_new, $rooms_deleted) = prepare_rooms($import_file);
|
||||||
foreach ($rooms_new as $room) {
|
foreach ($rooms_new as $room) {
|
||||||
sql_query("INSERT INTO `Room` SET `Name`='" . sql_escape($room) . "', `FromPentabarf`='Y', `Show`='Y'");
|
sql_query("INSERT INTO `Room` SET `Name`='" . sql_escape($room) . "', `FromPentabarf`='Y', `Show`='Y'");
|
||||||
|
@ -116,7 +168,7 @@ function admin_import() {
|
||||||
foreach ($rooms_deleted as $room)
|
foreach ($rooms_deleted as $room)
|
||||||
sql_query("DELETE FROM `Room` WHERE `Name`='" . sql_escape($room) . "' LIMIT 1");
|
sql_query("DELETE FROM `Room` WHERE `Name`='" . sql_escape($room) . "' LIMIT 1");
|
||||||
|
|
||||||
list($events_new, $events_updated, $events_deleted) = prepare_events($import_file);
|
list($events_new, $events_updated, $events_deleted) = prepare_events($import_file, $shifttype_id);
|
||||||
foreach ($events_new as $event) {
|
foreach ($events_new as $event) {
|
||||||
$result = Shift_create($event);
|
$result = Shift_create($event);
|
||||||
if ($result === false)
|
if ($result === false)
|
||||||
|
@ -139,13 +191,18 @@ function admin_import() {
|
||||||
|
|
||||||
unlink($import_file);
|
unlink($import_file);
|
||||||
|
|
||||||
$html .= success(_("It's done!"), true);
|
$html .= div('well well-sm text-center', [
|
||||||
|
'<span class="text-success">' . _('File Upload') . glyph('ok-circle') . '</span>' . mute(glyph('arrow-right')) . '<span class="text-success">' . _('Validation') . glyph('ok-circle') . '</span>' . mute(glyph('arrow-right')) . '<span class="text-success">' . _('Import') . glyph('ok-circle') . '</span>'
|
||||||
|
]) . success(_("It's done!"), true);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
redirect(page_link_to('admin_import'));
|
redirect(page_link_to('admin_import'));
|
||||||
}
|
}
|
||||||
|
|
||||||
return $html;
|
return page_with_title(admin_import_title(), [
|
||||||
|
msg(),
|
||||||
|
$html
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
function prepare_rooms($file) {
|
function prepare_rooms($file) {
|
||||||
|
@ -179,7 +236,7 @@ function prepare_rooms($file) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function prepare_events($file) {
|
function prepare_events($file, $shifttype_id) {
|
||||||
global $rooms_import;
|
global $rooms_import;
|
||||||
$data = read_xml($file);
|
$data = read_xml($file);
|
||||||
|
|
||||||
|
@ -195,10 +252,11 @@ function prepare_events($file) {
|
||||||
$event_id = trim($event_pb->{
|
$event_id = trim($event_pb->{
|
||||||
'event-id' });
|
'event-id' });
|
||||||
$shifts_pb[$event_id] = array(
|
$shifts_pb[$event_id] = array(
|
||||||
|
'shifttype_id' => $shifttype_id,
|
||||||
'start' => DateTime::createFromFormat("Ymd\THis", $event->dtstart)->getTimestamp(),
|
'start' => DateTime::createFromFormat("Ymd\THis", $event->dtstart)->getTimestamp(),
|
||||||
'end' => DateTime::createFromFormat("Ymd\THis", $event->dtend)->getTimestamp(),
|
'end' => DateTime::createFromFormat("Ymd\THis", $event->dtend)->getTimestamp(),
|
||||||
'RID' => $rooms_import[trim($event->location)],
|
'RID' => $rooms_import[trim($event->location)],
|
||||||
'name' => trim($event->summary),
|
'title' => trim($event->summary),
|
||||||
'URL' => trim($event->url),
|
'URL' => trim($event->url),
|
||||||
'PSID' => $event_id
|
'PSID' => $event_id
|
||||||
);
|
);
|
||||||
|
@ -209,14 +267,14 @@ function prepare_events($file) {
|
||||||
foreach ($shifts as $shift)
|
foreach ($shifts as $shift)
|
||||||
$shifts_db[$shift['PSID']] = $shift;
|
$shifts_db[$shift['PSID']] = $shift;
|
||||||
|
|
||||||
$shifts_new = array();
|
$shifts_new = [];
|
||||||
$shifts_updated = array();
|
$shifts_updated = [];
|
||||||
foreach ($shifts_pb as $shift)
|
foreach ($shifts_pb as $shift)
|
||||||
if (! isset($shifts_db[$shift['PSID']]))
|
if (! isset($shifts_db[$shift['PSID']]))
|
||||||
$shifts_new[] = $shift;
|
$shifts_new[] = $shift;
|
||||||
else {
|
else {
|
||||||
$tmp = $shifts_db[$shift['PSID']];
|
$tmp = $shifts_db[$shift['PSID']];
|
||||||
if ($shift['name'] != $tmp['name'] || $shift['start'] != $tmp['start'] || $shift['end'] != $tmp['end'] || $shift['RID'] != $tmp['RID'] || $shift['URL'] != $tmp['URL'])
|
if ($shift['shifttype_id'] != $tmp['shifttype_id'] || $shift['title'] != $tmp['title'] || $shift['start'] != $tmp['start'] || $shift['end'] != $tmp['end'] || $shift['RID'] != $tmp['RID'] || $shift['URL'] != $tmp['URL'])
|
||||||
$shifts_updated[] = $shift;
|
$shifts_updated[] = $shift;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -239,7 +297,7 @@ function read_xml($file) {
|
||||||
return $xml_import;
|
return $xml_import;
|
||||||
}
|
}
|
||||||
|
|
||||||
function shifts_printable($shifts) {
|
function shifts_printable($shifts, $shifttypes) {
|
||||||
global $rooms_import;
|
global $rooms_import;
|
||||||
$rooms = array_flip($rooms_import);
|
$rooms = array_flip($rooms_import);
|
||||||
|
|
||||||
|
@ -250,7 +308,11 @@ function shifts_printable($shifts) {
|
||||||
$shifts_printable[] = array(
|
$shifts_printable[] = array(
|
||||||
'day' => date("l, Y-m-d", $shift['start']),
|
'day' => date("l, Y-m-d", $shift['start']),
|
||||||
'start' => date("H:i", $shift['start']),
|
'start' => date("H:i", $shift['start']),
|
||||||
'name' => shorten($shift['name']),
|
'shifttype' => ShiftType_name_render([
|
||||||
|
'id' => $shift['shifttype_id'],
|
||||||
|
'name' => $shifttypes[$shift['shifttype_id']]
|
||||||
|
]),
|
||||||
|
'title' => shorten($shift['title']),
|
||||||
'end' => date("H:i", $shift['end']),
|
'end' => date("H:i", $shift['end']),
|
||||||
'room' => $rooms[$shift['RID']]
|
'room' => $rooms[$shift['RID']]
|
||||||
);
|
);
|
||||||
|
|
|
@ -22,8 +22,8 @@ function admin_log() {
|
||||||
return page_with_title(admin_log_title(), array(
|
return page_with_title(admin_log_title(), array(
|
||||||
msg(),
|
msg(),
|
||||||
form(array(
|
form(array(
|
||||||
form_text('keyword', _("Suche"), $filter),
|
form_text('keyword', _("Search"), $filter),
|
||||||
form_submit(_("Suche"), "Go")
|
form_submit(_("Search"), "Go")
|
||||||
)),
|
)),
|
||||||
table(array(
|
table(array(
|
||||||
'date' => "Time",
|
'date' => "Time",
|
||||||
|
|
|
@ -6,9 +6,8 @@ function admin_shifts_title() {
|
||||||
|
|
||||||
// Assistent zum Anlegen mehrerer neuer Schichten
|
// Assistent zum Anlegen mehrerer neuer Schichten
|
||||||
function admin_shifts() {
|
function admin_shifts() {
|
||||||
$msg = "";
|
|
||||||
$ok = true;
|
$ok = true;
|
||||||
|
|
||||||
$rid = 0;
|
$rid = 0;
|
||||||
$start = DateTime::createFromFormat("Y-m-d H:i", date("Y-m-d") . " 00:00")->getTimestamp();
|
$start = DateTime::createFromFormat("Y-m-d H:i", date("Y-m-d") . " 00:00")->getTimestamp();
|
||||||
$end = $start + 24 * 60 * 60;
|
$end = $start + 24 * 60 * 60;
|
||||||
|
@ -16,52 +15,75 @@ function admin_shifts() {
|
||||||
$angelmode = 'manually';
|
$angelmode = 'manually';
|
||||||
$length = '';
|
$length = '';
|
||||||
$change_hours = array();
|
$change_hours = array();
|
||||||
$name = "";
|
$title = "";
|
||||||
|
$shifttype_id = null;
|
||||||
|
|
||||||
// Locations laden (auch unsichtbare - fuer Erzengel ist das ok)
|
// Locations laden (auch unsichtbare - fuer Erzengel ist das ok)
|
||||||
$rooms = sql_select("SELECT * FROM `Room` ORDER BY `Name`");
|
$rooms = sql_select("SELECT * FROM `Room` ORDER BY `Name`");
|
||||||
$room_array = array();
|
$room_array = array();
|
||||||
foreach ($rooms as $room)
|
foreach ($rooms as $room)
|
||||||
$room_array[$room['RID']] = $room['Name'];
|
$room_array[$room['RID']] = $room['Name'];
|
||||||
|
|
||||||
// Engeltypen laden
|
// Engeltypen laden
|
||||||
$types = sql_select("SELECT * FROM `AngelTypes` ORDER BY `name`");
|
$types = sql_select("SELECT * FROM `AngelTypes` ORDER BY `name`");
|
||||||
$needed_angel_types = array();
|
$needed_angel_types = array();
|
||||||
foreach ($types as $type)
|
foreach ($types as $type)
|
||||||
$needed_angel_types[$type['id']] = 0;
|
$needed_angel_types[$type['id']] = 0;
|
||||||
|
|
||||||
|
// Load shift types
|
||||||
|
$shifttypes_source = ShiftTypes();
|
||||||
|
if ($shifttypes_source === false)
|
||||||
|
engelsystem_error('Unable to load shift types.');
|
||||||
|
$shifttypes = [];
|
||||||
|
foreach ($shifttypes_source as $shifttype)
|
||||||
|
$shifttypes[$shifttype['id']] = $shifttype['name'];
|
||||||
|
|
||||||
if (isset($_REQUEST['preview']) || isset($_REQUEST['back'])) {
|
if (isset($_REQUEST['preview']) || isset($_REQUEST['back'])) {
|
||||||
|
if (isset($_REQUEST['shifttype_id'])) {
|
||||||
|
$shifttype = ShiftType($_REQUEST['shifttype_id']);
|
||||||
|
if ($shifttype === false)
|
||||||
|
engelsystem_error('Unable to load shift type.');
|
||||||
|
if ($shifttype == null) {
|
||||||
|
$ok = false;
|
||||||
|
error(_('Please select a shift type.'));
|
||||||
|
} else
|
||||||
|
$shifttype_id = $_REQUEST['shifttype_id'];
|
||||||
|
} else {
|
||||||
|
$ok = false;
|
||||||
|
error(_('Please select a shift type.'));
|
||||||
|
}
|
||||||
|
|
||||||
// Name/Bezeichnung der Schicht, darf leer sein
|
// Name/Bezeichnung der Schicht, darf leer sein
|
||||||
$name = strip_request_item('name');
|
$title = strip_request_item('title');
|
||||||
|
|
||||||
// Auswahl der sichtbaren Locations für die Schichten
|
// Auswahl der sichtbaren Locations für die Schichten
|
||||||
if (isset($_REQUEST['rid']) && preg_match("/^[0-9]+$/", $_REQUEST['rid']) && isset($room_array[$_REQUEST['rid']]))
|
if (isset($_REQUEST['rid']) && preg_match("/^[0-9]+$/", $_REQUEST['rid']) && isset($room_array[$_REQUEST['rid']]))
|
||||||
$rid = $_REQUEST['rid'];
|
$rid = $_REQUEST['rid'];
|
||||||
else {
|
else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$rid = $rooms[0]['RID'];
|
$rid = $rooms[0]['RID'];
|
||||||
$msg .= error("Wähle bitte einen Raum aus.", true);
|
error(_('Please select a location.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_REQUEST['start']) && $tmp = DateTime::createFromFormat("Y-m-d H:i", trim($_REQUEST['start'])))
|
if (isset($_REQUEST['start']) && $tmp = DateTime::createFromFormat("Y-m-d H:i", trim($_REQUEST['start'])))
|
||||||
$start = $tmp->getTimestamp();
|
$start = $tmp->getTimestamp();
|
||||||
else {
|
else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error("Bitte gib einen Startzeitpunkt für die Schichten an.", true);
|
error(_('Please select a start time.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_REQUEST['end']) && $tmp = DateTime::createFromFormat("Y-m-d H:i", trim($_REQUEST['end'])))
|
if (isset($_REQUEST['end']) && $tmp = DateTime::createFromFormat("Y-m-d H:i", trim($_REQUEST['end'])))
|
||||||
$end = $tmp->getTimestamp();
|
$end = $tmp->getTimestamp();
|
||||||
else {
|
else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error("Bitte gib einen Endzeitpunkt für die Schichten an.", true);
|
error(_('Please select an end time.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($start >= $end) {
|
if ($start >= $end) {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error("Das Ende muss nach dem Startzeitpunkt liegen!", true);
|
error(_('The shifts end has to be after its start.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_REQUEST['mode'])) {
|
if (isset($_REQUEST['mode'])) {
|
||||||
if ($_REQUEST['mode'] == 'single') {
|
if ($_REQUEST['mode'] == 'single') {
|
||||||
$mode = 'single';
|
$mode = 'single';
|
||||||
|
@ -71,7 +93,7 @@ function admin_shifts() {
|
||||||
$length = trim($_REQUEST['length']);
|
$length = trim($_REQUEST['length']);
|
||||||
} else {
|
} else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error("Bitte gib eine Schichtlänge in Minuten an.", true);
|
error(_('Please enter a shift duration in minutes.'));
|
||||||
}
|
}
|
||||||
} elseif ($_REQUEST['mode'] == 'variable') {
|
} elseif ($_REQUEST['mode'] == 'variable') {
|
||||||
if (isset($_REQUEST['change_hours']) && preg_match("/^([0-9]{2}(,|$))/", trim(str_replace(" ", "", $_REQUEST['change_hours'])))) {
|
if (isset($_REQUEST['change_hours']) && preg_match("/^([0-9]{2}(,|$))/", trim(str_replace(" ", "", $_REQUEST['change_hours'])))) {
|
||||||
|
@ -79,14 +101,14 @@ function admin_shifts() {
|
||||||
$change_hours = array_map('trim', explode(",", $_REQUEST['change_hours']));
|
$change_hours = array_map('trim', explode(",", $_REQUEST['change_hours']));
|
||||||
} else {
|
} else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error("Bitte gib die Schichtwechsel-Stunden kommagetrennt ein.", true);
|
error(_('Please split the shift-change hours by colons.'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error("Bitte wähle einen Modus.", true);
|
error(_('Please select a mode.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_REQUEST['angelmode'])) {
|
if (isset($_REQUEST['angelmode'])) {
|
||||||
if ($_REQUEST['angelmode'] == 'location') {
|
if ($_REQUEST['angelmode'] == 'location') {
|
||||||
$angelmode = 'location';
|
$angelmode = 'location';
|
||||||
|
@ -97,26 +119,26 @@ function admin_shifts() {
|
||||||
$needed_angel_types[$type['id']] = trim($_REQUEST['type_' . $type['id']]);
|
$needed_angel_types[$type['id']] = trim($_REQUEST['type_' . $type['id']]);
|
||||||
} else {
|
} else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error("Bitte überprüfe die Eingaben für die benötigten Engel des Typs " . $type['name'] . ".", true);
|
error(sprintf(_('Please check the needed angels for team %s.'), $type['name']));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (array_sum($needed_angel_types) == 0) {
|
if (array_sum($needed_angel_types) == 0) {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error("Es werden 0 Engel benötigt. Bitte wähle benötigte Engel.", true);
|
error(_('There are 0 angels needed. Please enter the amounts of needed angels.'));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error("Bitte Wähle einen Modus für die benötigten Engel.", true);
|
error(_('Please select a mode for needed angels.'));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error("Bitte wähle benötigte Engel.", true);
|
error(_('Please select needed angels.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Beim Zurück-Knopf das Formular zeigen
|
// Beim Zurück-Knopf das Formular zeigen
|
||||||
if (isset($_REQUEST['back']))
|
if (isset($_REQUEST['back']))
|
||||||
$ok = false;
|
$ok = false;
|
||||||
|
|
||||||
// Alle Eingaben in Ordnung
|
// Alle Eingaben in Ordnung
|
||||||
if ($ok) {
|
if ($ok) {
|
||||||
if ($angelmode == 'location') {
|
if ($angelmode == 'location') {
|
||||||
|
@ -131,25 +153,27 @@ function admin_shifts() {
|
||||||
'start' => $start,
|
'start' => $start,
|
||||||
'end' => $end,
|
'end' => $end,
|
||||||
'RID' => $rid,
|
'RID' => $rid,
|
||||||
'name' => $name
|
'title' => $title,
|
||||||
|
'shifttype_id' => $shifttype_id
|
||||||
);
|
);
|
||||||
} elseif ($mode == 'multi') {
|
} elseif ($mode == 'multi') {
|
||||||
$shift_start = $start;
|
$shift_start = $start;
|
||||||
do {
|
do {
|
||||||
$shift_end = $shift_start + $length * 60;
|
$shift_end = $shift_start + $length * 60;
|
||||||
|
|
||||||
if ($shift_end > $end)
|
if ($shift_end > $end)
|
||||||
$shift_end = $end;
|
$shift_end = $end;
|
||||||
if ($shift_start >= $shift_end)
|
if ($shift_start >= $shift_end)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
$shifts[] = array(
|
$shifts[] = array(
|
||||||
'start' => $shift_start,
|
'start' => $shift_start,
|
||||||
'end' => $shift_end,
|
'end' => $shift_end,
|
||||||
'RID' => $rid,
|
'RID' => $rid,
|
||||||
'name' => $name
|
'title' => $title,
|
||||||
|
'shifttype_id' => $shifttype_id
|
||||||
);
|
);
|
||||||
|
|
||||||
$shift_start = $shift_end;
|
$shift_start = $shift_end;
|
||||||
} while ($shift_end < $end);
|
} while ($shift_end < $end);
|
||||||
} elseif ($mode == 'variable') {
|
} elseif ($mode == 'variable') {
|
||||||
|
@ -167,53 +191,56 @@ function admin_shifts() {
|
||||||
} else
|
} else
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
$shift_start = $start;
|
$shift_start = $start;
|
||||||
do {
|
do {
|
||||||
$day = DateTime::createFromFormat("Y-m-d H:i", date("Y-m-d", $shift_start) . " 00:00")->getTimestamp();
|
$day = DateTime::createFromFormat("Y-m-d H:i", date("Y-m-d", $shift_start) . " 00:00")->getTimestamp();
|
||||||
$shift_end = $day + $change_hours[$change_index] * 60 * 60;
|
$shift_end = $day + $change_hours[$change_index] * 60 * 60;
|
||||||
|
|
||||||
if ($shift_end > $end)
|
if ($shift_end > $end)
|
||||||
$shift_end = $end;
|
$shift_end = $end;
|
||||||
if ($shift_start >= $shift_end)
|
if ($shift_start >= $shift_end)
|
||||||
$shift_end += 24 * 60 * 60;
|
$shift_end += 24 * 60 * 60;
|
||||||
|
|
||||||
$shifts[] = array(
|
$shifts[] = array(
|
||||||
'start' => $shift_start,
|
'start' => $shift_start,
|
||||||
'end' => $shift_end,
|
'end' => $shift_end,
|
||||||
'RID' => $rid,
|
'RID' => $rid,
|
||||||
'name' => $name
|
'name' => $title,
|
||||||
|
'shifttype_id' => $shifttype_id
|
||||||
);
|
);
|
||||||
|
|
||||||
$shift_start = $shift_end;
|
$shift_start = $shift_end;
|
||||||
$change_index = ($change_index + count($change_hours) - 1) % count($change_hours);
|
$change_index = ($change_index + count($change_hours) - 1) % count($change_hours);
|
||||||
} while ($shift_end < $end);
|
} while ($shift_end < $end);
|
||||||
}
|
}
|
||||||
|
|
||||||
$shifts_table = array();
|
$shifts_table = array();
|
||||||
foreach ($shifts as $shift) {
|
foreach ($shifts as $shift) {
|
||||||
$shifts_table_entry = array(
|
$shifts_table_entry = [
|
||||||
'timeslot' => '<span class="glyphicon glyphicon-time"></span> ' . date("Y-m-d H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']) . '<br /><span class="glyphicon glyphicon-map-marker"></span> ' . $room_array[$shift['RID']],
|
'timeslot' => '<span class="glyphicon glyphicon-time"></span> ' . date("Y-m-d H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']) . '<br />' . Room_name_render(Room($shift['RID'])),
|
||||||
'entries' => $shift['name']
|
'title' => ShiftType_name_render(ShiftType($shifttype_id)) . ($shift['title'] ? '<br />' . $shift['title'] : ''),
|
||||||
);
|
'needed_angels' => ''
|
||||||
foreach ($types as $type) {
|
];
|
||||||
|
foreach ($types as $type)
|
||||||
if (isset($needed_angel_types[$type['id']]) && $needed_angel_types[$type['id']] > 0)
|
if (isset($needed_angel_types[$type['id']]) && $needed_angel_types[$type['id']] > 0)
|
||||||
$shifts_table_entry['entries'] .= '<br /><span class="icon-icon_angel"></span> <b>' . $type['name'] . ':</b> ' . $needed_angel_types[$type['id']] . ' missing';
|
$shifts_table_entry['needed_angels'] .= '<b>' . AngelType_name_render($type) . ':</b> ' . $needed_angel_types[$type['id']] . '<br />';
|
||||||
}
|
|
||||||
$shifts_table[] = $shifts_table_entry;
|
$shifts_table[] = $shifts_table_entry;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fürs Anlegen zwischenspeichern:
|
// Fürs Anlegen zwischenspeichern:
|
||||||
$_SESSION['admin_shifts_shifts'] = $shifts;
|
$_SESSION['admin_shifts_shifts'] = $shifts;
|
||||||
$_SESSION['admin_shifts_types'] = $needed_angel_types;
|
$_SESSION['admin_shifts_types'] = $needed_angel_types;
|
||||||
|
|
||||||
$hidden_types = "";
|
$hidden_types = "";
|
||||||
foreach ($needed_angel_types as $type_id => $count)
|
foreach ($needed_angel_types as $type_id => $count)
|
||||||
$hidden_types .= form_hidden('type_' . $type_id, $count);
|
$hidden_types .= form_hidden('type_' . $type_id, $count);
|
||||||
return page_with_title(_("Preview"), array(
|
return page_with_title(_("Preview"), array(
|
||||||
form(array(
|
form(array(
|
||||||
$hidden_types,
|
$hidden_types,
|
||||||
form_hidden('name', $name),
|
form_hidden('shifttype_id', $shifttype_id),
|
||||||
|
form_hidden('title', $title),
|
||||||
form_hidden('rid', $rid),
|
form_hidden('rid', $rid),
|
||||||
form_hidden('start', date("Y-m-d H:i", $start)),
|
form_hidden('start', date("Y-m-d H:i", $start)),
|
||||||
form_hidden('end', date("Y-m-d H:i", $end)),
|
form_hidden('end', date("Y-m-d H:i", $end)),
|
||||||
|
@ -223,24 +250,25 @@ function admin_shifts() {
|
||||||
form_hidden('angelmode', $angelmode),
|
form_hidden('angelmode', $angelmode),
|
||||||
form_submit('back', _("back")),
|
form_submit('back', _("back")),
|
||||||
table(array(
|
table(array(
|
||||||
'timeslot' => _("Timeslot"),
|
'timeslot' => _('Time and location'),
|
||||||
'entries' => _("Entries")
|
'title' => _('Type and title'),
|
||||||
|
'needed_angels' => _('Needed angels')
|
||||||
), $shifts_table),
|
), $shifts_table),
|
||||||
form_submit('submit', _("Save"))
|
form_submit('submit', _("Save"))
|
||||||
))
|
))
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
} elseif (isset($_REQUEST['submit'])) {
|
} elseif (isset($_REQUEST['submit'])) {
|
||||||
if (! is_array($_SESSION['admin_shifts_shifts']) || ! is_array($_SESSION['admin_shifts_types']))
|
if (! is_array($_SESSION['admin_shifts_shifts']) || ! is_array($_SESSION['admin_shifts_types']))
|
||||||
redirect(page_link_to('admin_shifts'));
|
redirect(page_link_to('admin_shifts'));
|
||||||
|
|
||||||
foreach ($_SESSION['admin_shifts_shifts'] as $shift) {
|
foreach ($_SESSION['admin_shifts_shifts'] as $shift) {
|
||||||
$shift['URL'] = null;
|
$shift['URL'] = null;
|
||||||
$shift['PSID'] = null;
|
$shift['PSID'] = null;
|
||||||
$shift_id = Shift_create($shift);
|
$shift_id = Shift_create($shift);
|
||||||
if ($shift_id === false)
|
if ($shift_id === false)
|
||||||
engelsystem_error('Unable to create shift.');
|
engelsystem_error('Unable to create shift.');
|
||||||
|
|
||||||
engelsystem_log("Shift created: " . $shift['name'] . " from " . date("Y-m-d H:i", $shift['start']) . " to " . date("Y-m-d H:i", $shift['end']));
|
engelsystem_log("Shift created: " . $shift['name'] . " from " . date("Y-m-d H:i", $shift['start']) . " to " . date("Y-m-d H:i", $shift['end']));
|
||||||
$needed_angel_types_info = array();
|
$needed_angel_types_info = array();
|
||||||
foreach ($_SESSION['admin_shifts_types'] as $type_id => $count) {
|
foreach ($_SESSION['admin_shifts_types'] as $type_id => $count) {
|
||||||
|
@ -251,27 +279,27 @@ function admin_shifts() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
engelsystem_log("Shift needs following angel types: " . join(", ", $needed_angel_types_info));
|
engelsystem_log("Shift needs following angel types: " . join(", ", $needed_angel_types_info));
|
||||||
$msg = success("Schichten angelegt.", true);
|
success("Schichten angelegt.");
|
||||||
|
redirect(page_link_to('admin_shifts'));
|
||||||
} else {
|
} else {
|
||||||
unset($_SESSION['admin_shifts_shifts']);
|
unset($_SESSION['admin_shifts_shifts']);
|
||||||
unset($_SESSION['admin_shifts_types']);
|
unset($_SESSION['admin_shifts_types']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! isset($_REQUEST['rid']))
|
if (! isset($_REQUEST['rid']))
|
||||||
$_REQUEST['rid'] = null;
|
$_REQUEST['rid'] = null;
|
||||||
$room_select = html_select_key('rid', 'rid', $room_array, $_REQUEST['rid']);
|
$room_select = html_select_key('rid', 'rid', $room_array, $_REQUEST['rid']);
|
||||||
$angel_types = "";
|
$angel_types = "";
|
||||||
foreach ($types as $type)
|
foreach ($types as $type)
|
||||||
$angel_types .= form_spinner('type_' . $type['id'], $type['name'], $needed_angel_types[$type['id']]);
|
$angel_types .= form_spinner('type_' . $type['id'], $type['name'], $needed_angel_types[$type['id']]);
|
||||||
|
|
||||||
return page_with_title(admin_shifts_title(), array(
|
return page_with_title(admin_shifts_title(), array(
|
||||||
msg(),
|
msg(),
|
||||||
$msg,
|
|
||||||
form(array(
|
form(array(
|
||||||
form_text('name', _("Name"), $name),
|
form_select('shifttype_id', _('Shifttype'), $shifttypes, $shifttype_id),
|
||||||
// TODO: form_textarea('description', _("Description"), ''),
|
form_text('title', _("Title"), $title),
|
||||||
form_select('rid', _("Room"), $room_array, $_REQUEST['rid']),
|
form_select('rid', _("Room"), $room_array, $_REQUEST['rid']),
|
||||||
'<div class="row">',
|
'<div class="row">',
|
||||||
'<div class="col-md-6">',
|
'<div class="col-md-6">',
|
||||||
|
@ -291,8 +319,8 @@ function admin_shifts() {
|
||||||
$angel_types,
|
$angel_types,
|
||||||
'</div>',
|
'</div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
form_submit('preview', _("Preview"))
|
form_submit('preview', _("Preview"))
|
||||||
))
|
))
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -293,9 +293,9 @@ function guest_login() {
|
||||||
form_text('nick', _("Nick"), $nick),
|
form_text('nick', _("Nick"), $nick),
|
||||||
form_password('password', _("Password")),
|
form_password('password', _("Password")),
|
||||||
form_submit('submit', _("Login")),
|
form_submit('submit', _("Login")),
|
||||||
form_info("", buttons(array(
|
buttons(array(
|
||||||
button(page_link_to('user_password_recovery'), _("I forgot my password"))
|
button(page_link_to('user_password_recovery'), _("I forgot my password"))
|
||||||
))),
|
)),
|
||||||
info(_("Please note: You have to activate cookies!"), true)
|
info(_("Please note: You have to activate cookies!"), true)
|
||||||
)),
|
)),
|
||||||
'</div>',
|
'</div>',
|
||||||
|
|
|
@ -22,7 +22,14 @@ function user_ical() {
|
||||||
require_once realpath(__DIR__ . '/user_shifts.php');
|
require_once realpath(__DIR__ . '/user_shifts.php');
|
||||||
view_user_shifts();
|
view_user_shifts();
|
||||||
} else {
|
} else {
|
||||||
$ical_shifts = sql_select("SELECT `Shifts`.*, `Room`.`Name` as `room_name` FROM `ShiftEntry` INNER JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`) INNER JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`) WHERE `UID`=" . sql_escape($user['UID']) . " ORDER BY `start`");
|
$ical_shifts = sql_select("
|
||||||
|
SELECT `ShiftTypes`.`name`, `Shifts`.*, `Room`.`Name` as `room_name`
|
||||||
|
FROM `ShiftEntry`
|
||||||
|
INNER JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`)
|
||||||
|
JOIN `ShiftTypes` ON (`ShiftTypes`.`id` = `Shifts`.`shifttype_id`)
|
||||||
|
INNER JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`)
|
||||||
|
WHERE `UID`=" . sql_escape($user['UID']) . "
|
||||||
|
ORDER BY `start`");
|
||||||
}
|
}
|
||||||
|
|
||||||
header("Content-Type: text/calendar; charset=utf-8");
|
header("Content-Type: text/calendar; charset=utf-8");
|
||||||
|
|
|
@ -35,12 +35,14 @@ function user_myshifts() {
|
||||||
`ShiftEntry`.`freeload_comment`,
|
`ShiftEntry`.`freeload_comment`,
|
||||||
`ShiftEntry`.`Comment`,
|
`ShiftEntry`.`Comment`,
|
||||||
`ShiftEntry`.`UID`,
|
`ShiftEntry`.`UID`,
|
||||||
|
`ShiftTypes`.`name`,
|
||||||
`Shifts`.*,
|
`Shifts`.*,
|
||||||
`Room`.`Name`,
|
`Room`.`Name`,
|
||||||
`AngelTypes`.`name` as `angel_type`
|
`AngelTypes`.`name` as `angel_type`
|
||||||
FROM `ShiftEntry`
|
FROM `ShiftEntry`
|
||||||
JOIN `AngelTypes` ON (`ShiftEntry`.`TID` = `AngelTypes`.`id`)
|
JOIN `AngelTypes` ON (`ShiftEntry`.`TID` = `AngelTypes`.`id`)
|
||||||
JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`)
|
JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`)
|
||||||
|
JOIN `ShiftTypes` ON (`ShiftTypes`.`id` = `Shifts`.`shifttype_id`)
|
||||||
JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`)
|
JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`)
|
||||||
WHERE `ShiftEntry`.`id`=" . sql_escape($id) . "
|
WHERE `ShiftEntry`.`id`=" . sql_escape($id) . "
|
||||||
AND `UID`=" . sql_escape($shifts_user['UID']) . " LIMIT 1");
|
AND `UID`=" . sql_escape($shifts_user['UID']) . " LIMIT 1");
|
||||||
|
@ -76,7 +78,11 @@ function user_myshifts() {
|
||||||
redirect(page_link_to('user_myshifts'));
|
redirect(page_link_to('user_myshifts'));
|
||||||
} elseif (isset($_REQUEST['cancel']) && preg_match("/^[0-9]*$/", $_REQUEST['cancel'])) {
|
} elseif (isset($_REQUEST['cancel']) && preg_match("/^[0-9]*$/", $_REQUEST['cancel'])) {
|
||||||
$id = $_REQUEST['cancel'];
|
$id = $_REQUEST['cancel'];
|
||||||
$shift = sql_select("SELECT `Shifts`.`start` FROM `Shifts` INNER JOIN `ShiftEntry` USING (`SID`) WHERE `ShiftEntry`.`id`=" . sql_escape($id) . " AND `UID`=" . sql_escape($shifts_user['UID']) . " LIMIT 1");
|
$shift = sql_select("
|
||||||
|
SELECT `Shifts`.`start`
|
||||||
|
FROM `Shifts`
|
||||||
|
INNER JOIN `ShiftEntry` USING (`SID`)
|
||||||
|
WHERE `ShiftEntry`.`id`=" . sql_escape($id) . " AND `UID`=" . sql_escape($shifts_user['UID']));
|
||||||
if (count($shift) > 0) {
|
if (count($shift) > 0) {
|
||||||
$shift = $shift[0];
|
$shift = $shift[0];
|
||||||
if (($shift['start'] > time() + $LETZTES_AUSTRAGEN * 3600) || in_array('user_shifts_admin', $privileges)) {
|
if (($shift['start'] > time() + $LETZTES_AUSTRAGEN * 3600) || in_array('user_shifts_admin', $privileges)) {
|
||||||
|
|
|
@ -6,25 +6,39 @@ function shifts_title() {
|
||||||
|
|
||||||
function user_shifts() {
|
function user_shifts() {
|
||||||
global $user, $privileges, $max_freeloadable_shifts;
|
global $user, $privileges, $max_freeloadable_shifts;
|
||||||
|
|
||||||
if (User_is_freeloader($user))
|
if (User_is_freeloader($user))
|
||||||
redirect(page_link_to('user_myshifts'));
|
redirect(page_link_to('user_myshifts'));
|
||||||
|
|
||||||
|
// Locations laden
|
||||||
|
$rooms = sql_select("SELECT * FROM `Room` WHERE `show`='Y' ORDER BY `Name`");
|
||||||
|
$room_array = array();
|
||||||
|
foreach ($rooms as $room)
|
||||||
|
$room_array[$room['RID']] = $room['Name'];
|
||||||
|
|
||||||
// Löschen einzelner Schicht-Einträge (Also Belegung einer Schicht von Engeln) durch Admins
|
// 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']) && in_array('user_shifts_admin', $privileges)) {
|
||||||
if (isset($_REQUEST['entry_id']) && test_request_int('entry_id'))
|
if (isset($_REQUEST['entry_id']) && test_request_int('entry_id'))
|
||||||
$entry_id = $_REQUEST['entry_id'];
|
$entry_id = $_REQUEST['entry_id'];
|
||||||
else
|
else
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(page_link_to('user_shifts'));
|
||||||
|
|
||||||
$shift_entry_source = sql_select("SELECT `User`.`Nick`, `ShiftEntry`.`Comment`, `ShiftEntry`.`UID`, `Shifts`.*, `Room`.`Name`, `AngelTypes`.`name` as `angel_type` FROM `ShiftEntry` JOIN `User` ON (`User`.`UID`=`ShiftEntry`.`UID`) JOIN `AngelTypes` ON (`ShiftEntry`.`TID` = `AngelTypes`.`id`) JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`) JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`) WHERE `ShiftEntry`.`id`=" . sql_escape($entry_id) . " LIMIT 1");
|
$shift_entry_source = sql_select("
|
||||||
|
SELECT `User`.`Nick`, `ShiftEntry`.`Comment`, `ShiftEntry`.`UID`, `ShiftTypes`.`name`, `Shifts`.*, `Room`.`Name`, `AngelTypes`.`name` as `angel_type`
|
||||||
|
FROM `ShiftEntry`
|
||||||
|
JOIN `User` ON (`User`.`UID`=`ShiftEntry`.`UID`)
|
||||||
|
JOIN `AngelTypes` ON (`ShiftEntry`.`TID` = `AngelTypes`.`id`)
|
||||||
|
JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`)
|
||||||
|
JOIN `ShiftTypes` ON (`ShiftTypes`.`id` = `Shifts`.`shifttype_id`)
|
||||||
|
JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`)
|
||||||
|
WHERE `ShiftEntry`.`id`=" . sql_escape($entry_id));
|
||||||
if (count($shift_entry_source) > 0) {
|
if (count($shift_entry_source) > 0) {
|
||||||
$shift_entry_source = $shift_entry_source[0];
|
$shift_entry_source = $shift_entry_source[0];
|
||||||
|
|
||||||
$result = ShiftEntry_delete($entry_id);
|
$result = ShiftEntry_delete($entry_id);
|
||||||
if ($result === false)
|
if ($result === false)
|
||||||
engelsystem_error('Unable to delete shift entry.');
|
engelsystem_error('Unable to delete shift entry.');
|
||||||
|
|
||||||
engelsystem_log("Deleted " . User_Nick_render($shift_entry_source) . "'s shift: " . $shift_entry_source['name'] . " at " . $shift_entry_source['Name'] . " from " . date("y-m-d H:i", $shift_entry_source['start']) . " to " . date("y-m-d H:i", $shift_entry_source['end']) . " as " . $shift_entry_source['angel_type']);
|
engelsystem_log("Deleted " . User_Nick_render($shift_entry_source) . "'s shift: " . $shift_entry_source['name'] . " at " . $shift_entry_source['Name'] . " from " . date("y-m-d H:i", $shift_entry_source['start']) . " to " . date("y-m-d H:i", $shift_entry_source['end']) . " as " . $shift_entry_source['angel_type']);
|
||||||
success(_("Shift entry deleted."));
|
success(_("Shift entry deleted."));
|
||||||
} else
|
} else
|
||||||
|
@ -34,28 +48,22 @@ function user_shifts() {
|
||||||
elseif (isset($_REQUEST['edit_shift']) && in_array('admin_shifts', $privileges)) {
|
elseif (isset($_REQUEST['edit_shift']) && in_array('admin_shifts', $privileges)) {
|
||||||
$msg = "";
|
$msg = "";
|
||||||
$ok = true;
|
$ok = true;
|
||||||
|
|
||||||
if (isset($_REQUEST['edit_shift']) && test_request_int('edit_shift'))
|
if (isset($_REQUEST['edit_shift']) && test_request_int('edit_shift'))
|
||||||
$shift_id = $_REQUEST['edit_shift'];
|
$shift_id = $_REQUEST['edit_shift'];
|
||||||
else
|
else
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(page_link_to('user_shifts'));
|
||||||
|
|
||||||
/*
|
$shift = sql_select("
|
||||||
* if (sql_num_query("SELECT * FROM `ShiftEntry` WHERE `SID`=" . sql_escape($shift_id) . " LIMIT 1") > 0) { error("Du kannst nur Schichten bearbeiten, bei denen niemand eingetragen ist."); redirect(page_link_to('user_shift')); }
|
SELECT `ShiftTypes`.`name`, `Shifts`.*, `Room`.* FROM `Shifts`
|
||||||
*/
|
JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`)
|
||||||
|
JOIN `ShiftTypes` ON (`ShiftTypes`.`id` = `Shifts`.`shifttype_id`)
|
||||||
$shift = sql_select("SELECT * FROM `Shifts` JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`) WHERE `SID`=" . sql_escape($shift_id) . " LIMIT 1");
|
WHERE `SID`=" . sql_escape($shift_id));
|
||||||
if (count($shift) == 0)
|
if (count($shift) == 0)
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(page_link_to('user_shifts'));
|
||||||
$shift = $shift[0];
|
$shift = $shift[0];
|
||||||
|
|
||||||
// Locations laden
|
// Engeltypen laden
|
||||||
$rooms = sql_select("SELECT * FROM `Room` WHERE `show`='Y' ORDER BY `Name`");
|
|
||||||
$room_array = array();
|
|
||||||
foreach ($rooms as $room)
|
|
||||||
$room_array[$room['RID']] = $room['Name'];
|
|
||||||
|
|
||||||
// Engeltypen laden
|
|
||||||
$types = sql_select("SELECT * FROM `AngelTypes` ORDER BY `name`");
|
$types = sql_select("SELECT * FROM `AngelTypes` ORDER BY `name`");
|
||||||
$angel_types = array();
|
$angel_types = array();
|
||||||
$needed_angel_types = array();
|
$needed_angel_types = array();
|
||||||
|
@ -63,30 +71,30 @@ function user_shifts() {
|
||||||
$angel_types[$type['id']] = $type;
|
$angel_types[$type['id']] = $type;
|
||||||
$needed_angel_types[$type['id']] = 0;
|
$needed_angel_types[$type['id']] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 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'];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Benötigte Engeltypen von der Schicht
|
// Benötigte Engeltypen von der Schicht
|
||||||
$needed_angel_types_source = sql_select("SELECT `AngelTypes`.*, `NeededAngelTypes`.`count` FROM `AngelTypes` LEFT JOIN `NeededAngelTypes` ON (`NeededAngelTypes`.`angel_type_id` = `AngelTypes`.`id` AND `NeededAngelTypes`.`shift_id`=" . sql_escape($shift_id) . ") 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`.`shift_id`=" . sql_escape($shift_id) . ") 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'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$name = $shift['name'];
|
$name = $shift['name'];
|
||||||
$rid = $shift['RID'];
|
$rid = $shift['RID'];
|
||||||
$start = $shift['start'];
|
$start = $shift['start'];
|
||||||
$end = $shift['end'];
|
$end = $shift['end'];
|
||||||
|
|
||||||
if (isset($_REQUEST['submit'])) {
|
if (isset($_REQUEST['submit'])) {
|
||||||
// Name/Bezeichnung der Schicht, darf leer sein
|
// Name/Bezeichnung der Schicht, darf leer sein
|
||||||
$name = strip_request_item('name');
|
$name = strip_request_item('name');
|
||||||
|
|
||||||
// Auswahl der sichtbaren Locations für die Schichten
|
// Auswahl der sichtbaren Locations für die Schichten
|
||||||
if (isset($_REQUEST['rid']) && preg_match("/^[0-9]+$/", $_REQUEST['rid']) && isset($room_array[$_REQUEST['rid']]))
|
if (isset($_REQUEST['rid']) && preg_match("/^[0-9]+$/", $_REQUEST['rid']) && isset($room_array[$_REQUEST['rid']]))
|
||||||
$rid = $_REQUEST['rid'];
|
$rid = $_REQUEST['rid'];
|
||||||
|
@ -95,26 +103,26 @@ function user_shifts() {
|
||||||
$rid = $rooms[0]['RID'];
|
$rid = $rooms[0]['RID'];
|
||||||
$msg .= error(_("Please select a room."), true);
|
$msg .= error(_("Please select a room."), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_REQUEST['start']) && $tmp = DateTime::createFromFormat("Y-m-d H:i", trim($_REQUEST['start'])))
|
if (isset($_REQUEST['start']) && $tmp = DateTime::createFromFormat("Y-m-d H:i", trim($_REQUEST['start'])))
|
||||||
$start = $tmp->getTimestamp();
|
$start = $tmp->getTimestamp();
|
||||||
else {
|
else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error(_("Please enter a valid starting time for the shifts."), true);
|
$msg .= error(_("Please enter a valid starting time for the shifts."), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_REQUEST['end']) && $tmp = DateTime::createFromFormat("Y-m-d H:i", trim($_REQUEST['end'])))
|
if (isset($_REQUEST['end']) && $tmp = DateTime::createFromFormat("Y-m-d H:i", trim($_REQUEST['end'])))
|
||||||
$end = $tmp->getTimestamp();
|
$end = $tmp->getTimestamp();
|
||||||
else {
|
else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error(_("Please enter a valid ending time for the shifts."), true);
|
$msg .= error(_("Please enter a valid ending time for the shifts."), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($start >= $end) {
|
if ($start >= $end) {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$msg .= error(_("The ending time has to be after the starting time."), true);
|
$msg .= error(_("The ending time has to be after the starting time."), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($needed_angel_types_source as $type) {
|
foreach ($needed_angel_types_source as $type) {
|
||||||
if (isset($_REQUEST['type_' . $type['id']]) && preg_match("/^[0-9]+$/", trim($_REQUEST['type_' . $type['id']]))) {
|
if (isset($_REQUEST['type_' . $type['id']]) && preg_match("/^[0-9]+$/", trim($_REQUEST['type_' . $type['id']]))) {
|
||||||
$needed_angel_types[$type['id']] = trim($_REQUEST['type_' . $type['id']]);
|
$needed_angel_types[$type['id']] = trim($_REQUEST['type_' . $type['id']]);
|
||||||
|
@ -123,7 +131,7 @@ function user_shifts() {
|
||||||
$msg .= error(sprintf(_("Please check your input for needed angels of type %s."), $type['name']), true);
|
$msg .= error(sprintf(_("Please check your input for needed angels of type %s."), $type['name']), true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($ok) {
|
if ($ok) {
|
||||||
$shift['name'] = $name;
|
$shift['name'] = $name;
|
||||||
$shift['RID'] = $rid;
|
$shift['RID'] = $rid;
|
||||||
|
@ -138,19 +146,19 @@ function user_shifts() {
|
||||||
sql_query("INSERT INTO `NeededAngelTypes` SET `shift_id`=" . sql_escape($shift_id) . ", `angel_type_id`=" . sql_escape($type_id) . ", `count`=" . sql_escape($count));
|
sql_query("INSERT INTO `NeededAngelTypes` SET `shift_id`=" . sql_escape($shift_id) . ", `angel_type_id`=" . sql_escape($type_id) . ", `count`=" . sql_escape($count));
|
||||||
$needed_angel_types_info[] = $angel_types[$type_id]['name'] . ": " . $count;
|
$needed_angel_types_info[] = $angel_types[$type_id]['name'] . ": " . $count;
|
||||||
}
|
}
|
||||||
|
|
||||||
engelsystem_log("Updated shift '" . $name . "' from " . date("y-m-d H:i", $start) . " to " . date("y-m-d H:i", $end) . " with angel types " . join(", ", $needed_angel_types_info));
|
engelsystem_log("Updated shift '" . $name . "' from " . date("y-m-d H:i", $start) . " to " . date("y-m-d H:i", $end) . " with angel types " . join(", ", $needed_angel_types_info));
|
||||||
success(_("Shift updated."));
|
success(_("Shift updated."));
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(shift_link($shift_id));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$room_select = html_select_key('rid', 'rid', $room_array, $rid);
|
$room_select = html_select_key('rid', 'rid', $room_array, $rid);
|
||||||
|
|
||||||
$angel_types = "";
|
$angel_types = "";
|
||||||
foreach ($types as $type)
|
foreach ($types as $type)
|
||||||
$angel_types .= form_spinner('type_' . $type['id'], $type['name'], $needed_angel_types[$type['id']]);
|
$angel_types .= form_spinner('type_' . $type['id'], $type['name'], $needed_angel_types[$type['id']]);
|
||||||
|
|
||||||
return page_with_title(shifts_title(), array(
|
return page_with_title(shifts_title(), array(
|
||||||
msg(),
|
msg(),
|
||||||
'<noscript>' . info(_("This page is much more comfortable with javascript."), true) . '</noscript>',
|
'<noscript>' . info(_("This page is much more comfortable with javascript."), true) . '</noscript>',
|
||||||
|
@ -161,8 +169,8 @@ function user_shifts() {
|
||||||
form_text('end', _("End:"), date("Y-m-d H:i", $end)),
|
form_text('end', _("End:"), date("Y-m-d H:i", $end)),
|
||||||
'<h2>' . _("Needed angels") . '</h2>',
|
'<h2>' . _("Needed angels") . '</h2>',
|
||||||
$angel_types,
|
$angel_types,
|
||||||
form_submit('submit', _("Save"))
|
form_submit('submit', _("Save"))
|
||||||
))
|
))
|
||||||
));
|
));
|
||||||
} // Schicht komplett löschen (nur für admins/user mit user_shifts_admin privileg)
|
} // Schicht komplett löschen (nur für admins/user mit user_shifts_admin privileg)
|
||||||
elseif (isset($_REQUEST['delete_shift']) && in_array('user_shifts_admin', $privileges)) {
|
elseif (isset($_REQUEST['delete_shift']) && in_array('user_shifts_admin', $privileges)) {
|
||||||
|
@ -170,64 +178,72 @@ function user_shifts() {
|
||||||
$shift_id = $_REQUEST['delete_shift'];
|
$shift_id = $_REQUEST['delete_shift'];
|
||||||
else
|
else
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(page_link_to('user_shifts'));
|
||||||
|
|
||||||
$shift = sql_select("SELECT * FROM `Shifts` JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`) WHERE `SID`=" . sql_escape($shift_id) . " LIMIT 1");
|
$shift = Shift($shift_id);
|
||||||
if (count($shift) == 0)
|
if ($shift === false)
|
||||||
|
engelsystem_error('Unable to load shift.');
|
||||||
|
if ($shift == null)
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(page_link_to('user_shifts'));
|
||||||
$shift = $shift[0];
|
|
||||||
|
// Schicht löschen bestätigt
|
||||||
// Schicht löschen bestätigt
|
|
||||||
if (isset($_REQUEST['delete'])) {
|
if (isset($_REQUEST['delete'])) {
|
||||||
$result = Shift_delete($shift_id);
|
$result = Shift_delete($shift_id);
|
||||||
if ($result === false)
|
if ($result === false)
|
||||||
engelsystem_error('Unable to delete shift.');
|
engelsystem_error('Unable to delete shift.');
|
||||||
|
|
||||||
engelsystem_log("Deleted shift " . $shift['name'] . " from " . date("y-m-d H:i", $shift['start']) . " to " . date("y-m-d H:i", $shift['end']));
|
engelsystem_log("Deleted shift " . $shift['name'] . " from " . date("y-m-d H:i", $shift['start']) . " to " . date("y-m-d H:i", $shift['end']));
|
||||||
success(_("Shift deleted."));
|
success(_("Shift deleted."));
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(page_link_to('user_shifts'));
|
||||||
}
|
}
|
||||||
|
|
||||||
return page_with_title(shifts_title(), array(
|
return page_with_title(shifts_title(), array(
|
||||||
error(sprintf(_("Do you want to delete the shift %s from %s to %s?"), $shift['name'], date("Y-m-d H:i", $shift['start']), date("H:i", $shift['end'])), true),
|
error(sprintf(_("Do you want to delete the shift %s from %s to %s?"), $shift['name'], date("Y-m-d H:i", $shift['start']), date("H:i", $shift['end'])), true),
|
||||||
'<a class="button" href="?p=user_shifts&delete_shift=' . $shift_id . '&delete">' . _("delete") . '</a>'
|
'<a class="button" href="?p=user_shifts&delete_shift=' . $shift_id . '&delete">' . _("delete") . '</a>'
|
||||||
));
|
));
|
||||||
} elseif (isset($_REQUEST['shift_id'])) {
|
} elseif (isset($_REQUEST['shift_id'])) {
|
||||||
if (isset($_REQUEST['shift_id']) && preg_match("/^[0-9]*$/", $_REQUEST['shift_id']))
|
if (isset($_REQUEST['shift_id']) && preg_match("/^[0-9]*$/", $_REQUEST['shift_id']))
|
||||||
$shift_id = $_REQUEST['shift_id'];
|
$shift_id = $_REQUEST['shift_id'];
|
||||||
else
|
else
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(page_link_to('user_shifts'));
|
||||||
|
|
||||||
$shift = sql_select("SELECT * FROM `Shifts` JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`) WHERE `SID`=" . sql_escape($shift_id) . " LIMIT 1");
|
$shift = Shift($shift_id);
|
||||||
if (count($shift) == 0)
|
$room;
|
||||||
|
$shift['Name'] = $room_array[$shift['RID']];
|
||||||
|
if ($shift === false)
|
||||||
|
engelsystem_error('Unable to load shift.');
|
||||||
|
if ($shift == null)
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(page_link_to('user_shifts'));
|
||||||
$shift = $shift[0];
|
|
||||||
|
|
||||||
if (isset($_REQUEST['type_id']) && preg_match("/^[0-9]*$/", $_REQUEST['type_id']))
|
if (isset($_REQUEST['type_id']) && preg_match("/^[0-9]*$/", $_REQUEST['type_id']))
|
||||||
$type_id = $_REQUEST['type_id'];
|
$type_id = $_REQUEST['type_id'];
|
||||||
else
|
else
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(page_link_to('user_shifts'));
|
||||||
|
|
||||||
// Schicht läuft schon, Eintragen für Engel nicht mehr möglich
|
// Schicht läuft schon, Eintragen für Engel nicht mehr möglich
|
||||||
if (! in_array('user_shifts_admin', $privileges) && time() > $shift['start']) {
|
if (! in_array('user_shifts_admin', $privileges) && time() > $shift['start']) {
|
||||||
error(_("This shift is running now or ended already. Please contact a dispatcher to join the shift."));
|
error(_("This shift is running now or ended already. Please contact a dispatcher to join the shift."));
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(shift_link($shift));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Another shift the user is signed up for collides with this one
|
// Another shift the user is signed up for collides with this one
|
||||||
if (! in_array('user_shifts_admin', $privileges) && sql_num_query("SELECT `Shifts`.`SID` FROM `Shifts` INNER JOIN `ShiftEntry` ON (`Shifts`.`SID` = `ShiftEntry`.`SID` AND `ShiftEntry`.`UID` = " . sql_escape($user['UID']) . ") WHERE `start` < '" . sql_escape($shift['end']) . "' AND `end` > '" . sql_escape($shift['start']) . "'") > 0) {
|
if (! in_array('user_shifts_admin', $privileges) && sql_num_query("
|
||||||
|
SELECT `Shifts`.`SID`
|
||||||
|
FROM `Shifts`
|
||||||
|
INNER JOIN `ShiftEntry` ON (`Shifts`.`SID` = `ShiftEntry`.`SID` AND `ShiftEntry`.`UID` = " . sql_escape($user['UID']) . ")
|
||||||
|
WHERE `start` < '" . sql_escape($shift['end']) . "' AND `end` > '" . sql_escape($shift['start']) . "'") > 0) {
|
||||||
error(_("You already subscribed to shift in the same timeslot. Please contact a dispatcher to join the shift."));
|
error(_("You already subscribed to shift in the same timeslot. Please contact a dispatcher to join the shift."));
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(shift_link($shift));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (in_array('user_shifts_admin', $privileges))
|
if (in_array('user_shifts_admin', $privileges))
|
||||||
$type = sql_select("SELECT * FROM `AngelTypes` WHERE `id`=" . sql_escape($type_id) . " LIMIT 1");
|
$type = sql_select("SELECT * FROM `AngelTypes` WHERE `id`=" . sql_escape($type_id) . " LIMIT 1");
|
||||||
else
|
else
|
||||||
$type = sql_select("SELECT * FROM `UserAngelTypes` JOIN `AngelTypes` ON (`UserAngelTypes`.`angeltype_id` = `AngelTypes`.`id`) WHERE `AngelTypes`.`id` = " . sql_escape($type_id) . " AND (`AngelTypes`.`restricted` = 0 OR (`UserAngelTypes`.`user_id` = " . sql_escape($user['UID']) . " AND NOT `UserAngelTypes`.`confirm_user_id` IS NULL)) LIMIT 1");
|
$type = sql_select("SELECT * FROM `UserAngelTypes` JOIN `AngelTypes` ON (`UserAngelTypes`.`angeltype_id` = `AngelTypes`.`id`) WHERE `AngelTypes`.`id` = " . sql_escape($type_id) . " AND (`AngelTypes`.`restricted` = 0 OR (`UserAngelTypes`.`user_id` = " . sql_escape($user['UID']) . " AND NOT `UserAngelTypes`.`confirm_user_id` IS NULL)) LIMIT 1");
|
||||||
|
|
||||||
if (count($type) == 0)
|
if (count($type) == 0)
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(page_link_to('user_shifts'));
|
||||||
$type = $type[0];
|
$type = $type[0];
|
||||||
|
|
||||||
if (isset($_REQUEST['submit'])) {
|
if (isset($_REQUEST['submit'])) {
|
||||||
$selected_type_id = $type_id;
|
$selected_type_id = $type_id;
|
||||||
if (in_array('user_shifts_admin', $privileges)) {
|
if (in_array('user_shifts_admin', $privileges)) {
|
||||||
|
@ -235,25 +251,25 @@ function user_shifts() {
|
||||||
$user_id = $_REQUEST['user_id'];
|
$user_id = $_REQUEST['user_id'];
|
||||||
else
|
else
|
||||||
$user_id = $user['UID'];
|
$user_id = $user['UID'];
|
||||||
|
|
||||||
if (sql_num_query("SELECT * FROM `User` WHERE `UID`=" . sql_escape($user_id) . " LIMIT 1") == 0)
|
if (sql_num_query("SELECT * FROM `User` WHERE `UID`=" . sql_escape($user_id) . " LIMIT 1") == 0)
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(page_link_to('user_shifts'));
|
||||||
|
|
||||||
if (isset($_REQUEST['angeltype_id']) && test_request_int('angeltype_id') && sql_num_query("SELECT * FROM `AngelTypes` WHERE `id`=" . sql_escape($_REQUEST['angeltype_id']) . " LIMIT 1") > 0)
|
if (isset($_REQUEST['angeltype_id']) && test_request_int('angeltype_id') && sql_num_query("SELECT * FROM `AngelTypes` WHERE `id`=" . sql_escape($_REQUEST['angeltype_id']) . " LIMIT 1") > 0)
|
||||||
$selected_type_id = $_REQUEST['angeltype_id'];
|
$selected_type_id = $_REQUEST['angeltype_id'];
|
||||||
} else
|
} else
|
||||||
$user_id = $user['UID'];
|
$user_id = $user['UID'];
|
||||||
|
|
||||||
if (sql_num_query("SELECT * FROM `ShiftEntry` WHERE `SID`='" . sql_escape($shift['SID']) . "' AND `UID` = '" . sql_escape($user_id) . "'"))
|
if (sql_num_query("SELECT * FROM `ShiftEntry` WHERE `SID`='" . sql_escape($shift['SID']) . "' AND `UID` = '" . sql_escape($user_id) . "'"))
|
||||||
return error("This angel does already have an entry for this shift.", true);
|
return error("This angel does already have an entry for this shift.", true);
|
||||||
|
|
||||||
$freeloaded = $shift['freeloaded'];
|
$freeloaded = $shift['freeloaded'];
|
||||||
$freeload_comment = $shift['freeload_comment'];
|
$freeload_comment = $shift['freeload_comment'];
|
||||||
if (in_array("user_shifts_admin", $privileges)) {
|
if (in_array("user_shifts_admin", $privileges)) {
|
||||||
$freeloaded = isset($_REQUEST['freeloaded']);
|
$freeloaded = isset($_REQUEST['freeloaded']);
|
||||||
$freeload_comment = strip_request_item_nl('freeload_comment');
|
$freeload_comment = strip_request_item_nl('freeload_comment');
|
||||||
}
|
}
|
||||||
|
|
||||||
$comment = strip_request_item_nl('comment');
|
$comment = strip_request_item_nl('comment');
|
||||||
$result = ShiftEntry_create(array(
|
$result = ShiftEntry_create(array(
|
||||||
'SID' => $shift_id,
|
'SID' => $shift_id,
|
||||||
|
@ -261,28 +277,28 @@ function user_shifts() {
|
||||||
'UID' => $user_id,
|
'UID' => $user_id,
|
||||||
'Comment' => $comment,
|
'Comment' => $comment,
|
||||||
'freeloaded' => $freeloaded,
|
'freeloaded' => $freeloaded,
|
||||||
'freeload_comment' => $freeload_comment
|
'freeload_comment' => $freeload_comment
|
||||||
));
|
));
|
||||||
if ($result === false)
|
if ($result === false)
|
||||||
engelsystem_error('Unable to create shift entry.');
|
engelsystem_error('Unable to create shift entry.');
|
||||||
|
|
||||||
if ($type['restricted'] == 0 && sql_num_query("SELECT * FROM `UserAngelTypes` INNER JOIN `AngelTypes` ON `AngelTypes`.`id` = `UserAngelTypes`.`angeltype_id` WHERE `angeltype_id` = '" . sql_escape($selected_type_id) . "' AND `user_id` = '" . sql_escape($user_id) . "' ") == 0)
|
if ($type['restricted'] == 0 && sql_num_query("SELECT * FROM `UserAngelTypes` INNER JOIN `AngelTypes` ON `AngelTypes`.`id` = `UserAngelTypes`.`angeltype_id` WHERE `angeltype_id` = '" . sql_escape($selected_type_id) . "' AND `user_id` = '" . sql_escape($user_id) . "' ") == 0)
|
||||||
sql_query("INSERT INTO `UserAngelTypes` (`user_id`, `angeltype_id`) VALUES ('" . sql_escape($user_id) . "', '" . sql_escape($selected_type_id) . "')");
|
sql_query("INSERT INTO `UserAngelTypes` (`user_id`, `angeltype_id`) VALUES ('" . sql_escape($user_id) . "', '" . sql_escape($selected_type_id) . "')");
|
||||||
|
|
||||||
$user_source = User($user_id);
|
$user_source = User($user_id);
|
||||||
engelsystem_log("User " . User_Nick_render($user_source) . " signed up for shift " . $shift['name'] . " from " . date("y-m-d H:i", $shift['start']) . " to " . date("y-m-d H:i", $shift['end']));
|
engelsystem_log("User " . User_Nick_render($user_source) . " signed up for shift " . $shift['name'] . " from " . date("y-m-d H:i", $shift['start']) . " to " . date("y-m-d H:i", $shift['end']));
|
||||||
success(_("You are subscribed. Thank you!") . ' <a href="' . page_link_to('user_myshifts') . '">' . _("My shifts") . ' »</a>');
|
success(_("You are subscribed. Thank you!") . ' <a href="' . page_link_to('user_myshifts') . '">' . _("My shifts") . ' »</a>');
|
||||||
redirect(page_link_to('user_shifts'));
|
redirect(shift_link($shift));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (in_array('user_shifts_admin', $privileges)) {
|
if (in_array('user_shifts_admin', $privileges)) {
|
||||||
$users = sql_select("SELECT *, (SELECT count(*) FROM `ShiftEntry` WHERE `freeloaded`=1 AND `ShiftEntry`.`UID`=`User`.`UID`) AS `freeloaded` FROM `User` ORDER BY `Nick`");
|
$users = sql_select("SELECT *, (SELECT count(*) FROM `ShiftEntry` WHERE `freeloaded`=1 AND `ShiftEntry`.`UID`=`User`.`UID`) AS `freeloaded` FROM `User` ORDER BY `Nick`");
|
||||||
$users_select = array();
|
$users_select = array();
|
||||||
|
|
||||||
foreach ($users as $usr)
|
foreach ($users as $usr)
|
||||||
$users_select[$usr['UID']] = $usr['Nick'] . ($usr['freeloaded'] == 0 ? "" : " (" . _("Freeloader") . ")");
|
$users_select[$usr['UID']] = $usr['Nick'] . ($usr['freeloaded'] == 0 ? "" : " (" . _("Freeloader") . ")");
|
||||||
$user_text = html_select_key('user_id', 'user_id', $users_select, $user['UID']);
|
$user_text = html_select_key('user_id', 'user_id', $users_select, $user['UID']);
|
||||||
|
|
||||||
$angeltypes_source = sql_select("SELECT * FROM `AngelTypes` ORDER BY `name`");
|
$angeltypes_source = sql_select("SELECT * FROM `AngelTypes` ORDER BY `name`");
|
||||||
$angeltypes = array();
|
$angeltypes = array();
|
||||||
foreach ($angeltypes_source as $angeltype)
|
foreach ($angeltypes_source as $angeltype)
|
||||||
|
@ -292,7 +308,7 @@ function user_shifts() {
|
||||||
$user_text = User_Nick_render($user);
|
$user_text = User_Nick_render($user);
|
||||||
$angeltyppe_select = $type['name'];
|
$angeltyppe_select = $type['name'];
|
||||||
}
|
}
|
||||||
|
|
||||||
return ShiftEntry_edit_view($user_text, date("Y-m-d H:i", $shift['start']) . ' – ' . date('Y-m-d H:i', $shift['end']) . ' (' . shift_length($shift) . ')', $shift['Name'], $shift['name'], $angeltyppe_select, "", false, null, in_array('user_shifts_admin', $privileges));
|
return ShiftEntry_edit_view($user_text, date("Y-m-d H:i", $shift['start']) . ' – ' . date('Y-m-d H:i', $shift['end']) . ' (' . shift_length($shift) . ')', $shift['Name'], $shift['name'], $angeltyppe_select, "", false, null, in_array('user_shifts_admin', $privileges));
|
||||||
} else {
|
} else {
|
||||||
return view_user_shifts();
|
return view_user_shifts();
|
||||||
|
@ -302,22 +318,25 @@ function user_shifts() {
|
||||||
function view_user_shifts() {
|
function view_user_shifts() {
|
||||||
global $user, $privileges;
|
global $user, $privileges;
|
||||||
global $ical_shifts;
|
global $ical_shifts;
|
||||||
|
|
||||||
$ical_shifts = array();
|
$ical_shifts = array();
|
||||||
$days = sql_select_single_col("SELECT DISTINCT DATE(FROM_UNIXTIME(`start`)) AS `id`, DATE(FROM_UNIXTIME(`start`)) AS `name` FROM `Shifts` ORDER BY `start`");
|
$days = sql_select_single_col("
|
||||||
|
SELECT DISTINCT DATE(FROM_UNIXTIME(`start`)) AS `id`, DATE(FROM_UNIXTIME(`start`)) AS `name`
|
||||||
|
FROM `Shifts`
|
||||||
|
ORDER BY `start`");
|
||||||
|
|
||||||
if (count($days) == 0) {
|
if (count($days) == 0) {
|
||||||
error(_("The administration has not configured any shifts yet."));
|
error(_("The administration has not configured any shifts yet."));
|
||||||
redirect('?');
|
redirect('?');
|
||||||
}
|
}
|
||||||
|
|
||||||
$rooms = sql_select("SELECT `RID` AS `id`, `Name` AS `name` FROM `Room` WHERE `show`='Y' ORDER BY `Name`");
|
$rooms = sql_select("SELECT `RID` AS `id`, `Name` AS `name` FROM `Room` WHERE `show`='Y' ORDER BY `Name`");
|
||||||
|
|
||||||
if (count($rooms) == 0) {
|
if (count($rooms) == 0) {
|
||||||
error(_("The administration has not configured any rooms yet."));
|
error(_("The administration has not configured any rooms yet."));
|
||||||
redirect('?');
|
redirect('?');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (in_array('user_shifts_admin', $privileges))
|
if (in_array('user_shifts_admin', $privileges))
|
||||||
$types = sql_select("SELECT `id`, `name` FROM `AngelTypes` ORDER BY `AngelTypes`.`name`");
|
$types = sql_select("SELECT `id`, `name` FROM `AngelTypes` ORDER BY `AngelTypes`.`name`");
|
||||||
else
|
else
|
||||||
|
@ -327,32 +346,32 @@ function view_user_shifts() {
|
||||||
$filled = array(
|
$filled = array(
|
||||||
array(
|
array(
|
||||||
'id' => '1',
|
'id' => '1',
|
||||||
'name' => _('occupied')
|
'name' => _('occupied')
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'id' => '0',
|
'id' => '0',
|
||||||
'name' => _('free')
|
'name' => _('free')
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
if (count($types) == 0) {
|
if (count($types) == 0) {
|
||||||
error(_("The administration has not configured any angeltypes yet - or you are not subscribed to any angeltype."));
|
error(_("The administration has not configured any angeltypes yet - or you are not subscribed to any angeltype."));
|
||||||
redirect('?');
|
redirect('?');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! isset($_SESSION['user_shifts']))
|
if (! isset($_SESSION['user_shifts']))
|
||||||
$_SESSION['user_shifts'] = array();
|
$_SESSION['user_shifts'] = array();
|
||||||
|
|
||||||
if (! isset($_SESSION['user_shifts']['filled'])) {
|
if (! isset($_SESSION['user_shifts']['filled'])) {
|
||||||
$_SESSION['user_shifts']['filled'] = array(
|
$_SESSION['user_shifts']['filled'] = array(
|
||||||
0
|
0
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (array(
|
foreach (array(
|
||||||
'rooms',
|
'rooms',
|
||||||
'types',
|
'types',
|
||||||
'filled'
|
'filled'
|
||||||
) as $key) {
|
) as $key) {
|
||||||
if (isset($_REQUEST[$key])) {
|
if (isset($_REQUEST[$key])) {
|
||||||
$filtered = array_filter($_REQUEST[$key], 'is_numeric');
|
$filtered = array_filter($_REQUEST[$key], 'is_numeric');
|
||||||
|
@ -363,7 +382,7 @@ function view_user_shifts() {
|
||||||
if (! isset($_SESSION['user_shifts'][$key]))
|
if (! isset($_SESSION['user_shifts'][$key]))
|
||||||
$_SESSION['user_shifts'][$key] = array_map('get_ids_from_array', $$key);
|
$_SESSION['user_shifts'][$key] = array_map('get_ids_from_array', $$key);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_REQUEST['rooms'])) {
|
if (isset($_REQUEST['rooms'])) {
|
||||||
if (isset($_REQUEST['new_style']))
|
if (isset($_REQUEST['new_style']))
|
||||||
$_SESSION['user_shifts']['new_style'] = true;
|
$_SESSION['user_shifts']['new_style'] = true;
|
||||||
|
@ -374,7 +393,7 @@ function view_user_shifts() {
|
||||||
$_SESSION['user_shifts']['new_style'] = true;
|
$_SESSION['user_shifts']['new_style'] = true;
|
||||||
foreach (array(
|
foreach (array(
|
||||||
'start',
|
'start',
|
||||||
'end'
|
'end'
|
||||||
) as $key) {
|
) as $key) {
|
||||||
if (isset($_REQUEST[$key . '_day']) && in_array($_REQUEST[$key . '_day'], $days))
|
if (isset($_REQUEST[$key . '_day']) && in_array($_REQUEST[$key . '_day'], $days))
|
||||||
$_SESSION['user_shifts'][$key . '_day'] = $_REQUEST[$key . '_day'];
|
$_SESSION['user_shifts'][$key . '_day'] = $_REQUEST[$key . '_day'];
|
||||||
|
@ -391,52 +410,59 @@ function view_user_shifts() {
|
||||||
$_SESSION['user_shifts']['end_day'] = $_SESSION['user_shifts']['start_day'];
|
$_SESSION['user_shifts']['end_day'] = $_SESSION['user_shifts']['start_day'];
|
||||||
if ($_SESSION['user_shifts']['start_day'] == $_SESSION['user_shifts']['end_day'] && $_SESSION['user_shifts']['start_time'] >= $_SESSION['user_shifts']['end_time'])
|
if ($_SESSION['user_shifts']['start_day'] == $_SESSION['user_shifts']['end_day'] && $_SESSION['user_shifts']['start_time'] >= $_SESSION['user_shifts']['end_time'])
|
||||||
$_SESSION['user_shifts']['end_time'] = '23:59';
|
$_SESSION['user_shifts']['end_time'] = '23:59';
|
||||||
|
|
||||||
if (isset($_SESSION['user_shifts']['start_day'])) {
|
if (isset($_SESSION['user_shifts']['start_day'])) {
|
||||||
$starttime = DateTime::createFromFormat("Y-m-d H:i", $_SESSION['user_shifts']['start_day'] . $_SESSION['user_shifts']['start_time']);
|
$starttime = DateTime::createFromFormat("Y-m-d H:i", $_SESSION['user_shifts']['start_day'] . $_SESSION['user_shifts']['start_time']);
|
||||||
$starttime = $starttime->getTimestamp();
|
$starttime = $starttime->getTimestamp();
|
||||||
} else
|
} else
|
||||||
$starttime = now();
|
$starttime = now();
|
||||||
|
|
||||||
if (isset($_SESSION['user_shifts']['end_day'])) {
|
if (isset($_SESSION['user_shifts']['end_day'])) {
|
||||||
$endtime = DateTime::createFromFormat("Y-m-d H:i", $_SESSION['user_shifts']['end_day'] . $_SESSION['user_shifts']['end_time']);
|
$endtime = DateTime::createFromFormat("Y-m-d H:i", $_SESSION['user_shifts']['end_day'] . $_SESSION['user_shifts']['end_time']);
|
||||||
$endtime = $endtime->getTimestamp();
|
$endtime = $endtime->getTimestamp();
|
||||||
} else
|
} else
|
||||||
$endtime = now() + 24 * 60 * 60;
|
$endtime = now() + 24 * 60 * 60;
|
||||||
|
|
||||||
if (! isset($_SESSION['user_shifts']['rooms']) || count($_SESSION['user_shifts']['rooms']) == 0)
|
if (! isset($_SESSION['user_shifts']['rooms']) || count($_SESSION['user_shifts']['rooms']) == 0)
|
||||||
$_SESSION['user_shifts']['rooms'] = array(
|
$_SESSION['user_shifts']['rooms'] = array(
|
||||||
0
|
0
|
||||||
);
|
);
|
||||||
|
|
||||||
$SQL = "SELECT DISTINCT `Shifts`.*, `Room`.`Name` as `room_name`, nat2.`special_needs` > 0 AS 'has_special_needs'
|
$SQL = "SELECT DISTINCT `Shifts`.*, `ShiftTypes`.`name`, `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`)
|
||||||
|
INNER JOIN `ShiftTypes` ON (`ShiftTypes`.`id` = `Shifts`.`shifttype_id`)
|
||||||
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 nat.`angel_type_id` IN (" . implode(',', $_SESSION['user_shifts']['types']) . ") 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 nat.`angel_type_id` IN (" . implode(',', $_SESSION['user_shifts']['types']) . ") 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 `start` BETWEEN " . $starttime . " AND " . $endtime;
|
AND `start` BETWEEN " . $starttime . " AND " . $endtime;
|
||||||
|
|
||||||
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 (nat.`count` > entries.`count` OR entries.`count` IS NULL OR EXISTS (SELECT `SID` FROM `ShiftEntry` WHERE `UID` = " .sql_escape($user['UID']) . " AND `ShiftEntry`.`SID` = `Shifts`.`SID`))";
|
AND (nat.`count` > entries.`count` OR entries.`count` IS NULL OR EXISTS (SELECT `SID` FROM `ShiftEntry` WHERE `UID` = " . sql_escape($user['UID']) . " AND `ShiftEntry`.`SID` = `Shifts`.`SID`))";
|
||||||
elseif ($_SESSION['user_shifts']['filled'][0] == 1)
|
elseif ($_SESSION['user_shifts']['filled'][0] == 1)
|
||||||
$SQL .= "
|
$SQL .= "
|
||||||
AND (nat.`count` <= entries.`count` OR EXISTS (SELECT `SID` FROM `ShiftEntry` WHERE `UID` = " .sql_escape($user['UID']) . " AND `ShiftEntry`.`SID` = `Shifts`.`SID`))";
|
AND (nat.`count` <= entries.`count` OR EXISTS (SELECT `SID` FROM `ShiftEntry` WHERE `UID` = " . sql_escape($user['UID']) . " AND `ShiftEntry`.`SID` = `Shifts`.`SID`))";
|
||||||
}
|
}
|
||||||
$SQL .= "
|
$SQL .= "
|
||||||
ORDER BY `start`";
|
ORDER BY `start`";
|
||||||
|
|
||||||
$shifts = sql_select($SQL);
|
$shifts = sql_select($SQL);
|
||||||
$ownshifts_source = sql_select("SELECT `Shifts`.* FROM `Shifts` INNER JOIN `ShiftEntry` ON (`Shifts`.`SID` = `ShiftEntry`.`SID` AND `ShiftEntry`.`UID` = '" . sql_escape($user['UID']) . "')
|
|
||||||
|
$ownshifts_source = sql_select("
|
||||||
|
SELECT `ShiftTypes`.`name`, `Shifts`.*
|
||||||
|
FROM `Shifts`
|
||||||
|
INNER JOIN `ShiftTypes` ON (`ShiftTypes`.`id` = `Shifts`.`shifttype_id`)
|
||||||
|
INNER JOIN `ShiftEntry` ON (`Shifts`.`SID` = `ShiftEntry`.`SID` AND `ShiftEntry`.`UID` = '" . sql_escape($user['UID']) . "')
|
||||||
WHERE `Shifts`.`RID` IN (" . implode(',', $_SESSION['user_shifts']['rooms']) . ")
|
WHERE `Shifts`.`RID` IN (" . implode(',', $_SESSION['user_shifts']['rooms']) . ")
|
||||||
AND `start` BETWEEN " . $starttime . " AND " . $endtime);
|
AND `start` BETWEEN " . $starttime . " AND " . $endtime);
|
||||||
$ownshifts = array();
|
$ownshifts = array();
|
||||||
foreach ($ownshifts_source as $ownshift)
|
foreach ($ownshifts_source as $ownshift)
|
||||||
$ownshifts[$ownshift['SID']] = $ownshift;
|
$ownshifts[$ownshift['SID']] = $ownshift;
|
||||||
unset($ownshifts_source);
|
unset($ownshifts_source);
|
||||||
|
|
||||||
$shifts_table = "";
|
$shifts_table = "";
|
||||||
// qqqq
|
// qqqq
|
||||||
/*
|
/*
|
||||||
|
@ -448,7 +474,7 @@ function view_user_shifts() {
|
||||||
$block = array();
|
$block = array();
|
||||||
$todo = array();
|
$todo = array();
|
||||||
$myrooms = $rooms;
|
$myrooms = $rooms;
|
||||||
|
|
||||||
// delete un-selected rooms from array
|
// delete un-selected rooms from array
|
||||||
foreach ($myrooms as $k => $v) {
|
foreach ($myrooms as $k => $v) {
|
||||||
if (array_search($v["id"], $_SESSION['user_shifts']['rooms']) === FALSE)
|
if (array_search($v["id"], $_SESSION['user_shifts']['rooms']) === FALSE)
|
||||||
|
@ -456,7 +482,7 @@ function view_user_shifts() {
|
||||||
// initialize $block array
|
// initialize $block array
|
||||||
$block[$v["id"]] = array_fill(0, $maxshow, 0);
|
$block[$v["id"]] = array_fill(0, $maxshow, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// calculate number of parallel shifts in each timeslot for each room
|
// calculate number of parallel shifts in each timeslot for each room
|
||||||
foreach ($shifts as $k => $shift) {
|
foreach ($shifts as $k => $shift) {
|
||||||
$rid = $shift["RID"];
|
$rid = $shift["RID"];
|
||||||
|
@ -466,7 +492,7 @@ function view_user_shifts() {
|
||||||
$block[$rid][$i] ++;
|
$block[$rid][$i] ++;
|
||||||
$shifts[$k]['own'] = in_array($shift['SID'], array_keys($ownshifts));
|
$shifts[$k]['own'] = in_array($shift['SID'], array_keys($ownshifts));
|
||||||
}
|
}
|
||||||
|
|
||||||
$shifts_table = '<div class="shifts-table"><table id="shifts" class="table scrollable"><thead><tr><th>-</th>';
|
$shifts_table = '<div class="shifts-table"><table id="shifts" class="table scrollable"><thead><tr><th>-</th>';
|
||||||
foreach ($myrooms as $key => $room) {
|
foreach ($myrooms as $key => $room) {
|
||||||
$rid = $room["id"];
|
$rid = $room["id"];
|
||||||
|
@ -483,15 +509,14 @@ function view_user_shifts() {
|
||||||
$shifts_table .= "<th" . (($colspan > 1) ? ' colspan="' . $colspan . '"' : '') . ">${room['name']}</th>\n";
|
$shifts_table .= "<th" . (($colspan > 1) ? ' colspan="' . $colspan . '"' : '') . ">${room['name']}</th>\n";
|
||||||
}
|
}
|
||||||
unset($block, $blocks, $firstblock, $colspan, $key, $room);
|
unset($block, $blocks, $firstblock, $colspan, $key, $room);
|
||||||
|
|
||||||
$shifts_table .= "</tr></thead><tbody>";
|
$shifts_table .= "</tr></thead><tbody>";
|
||||||
for ($i = 0; $i < $maxshow; $i ++) {
|
for ($i = 0; $i < $maxshow; $i ++) {
|
||||||
$thistime = $first + ($i * 15 * 60);
|
$thistime = $first + ($i * 15 * 60);
|
||||||
if ($thistime % (24 * 60 * 60) == 23 * 60 * 60 && $endtime - $starttime > 24 * 60 * 60) {
|
if ($thistime % (24 * 60 * 60) == 23 * 60 * 60 && $endtime - $starttime > 24 * 60 * 60) {
|
||||||
$shifts_table .= "<tr class=\"row-day\"><th class=\"row-header\">";
|
$shifts_table .= "<tr class=\"row-day\"><th class=\"row-header\">";
|
||||||
$shifts_table .= date('y-m-d<b\r />H:i', $thistime);
|
$shifts_table .= date('y-m-d<b\r />H:i', $thistime);
|
||||||
}
|
} elseif ($thistime % (60 * 60) == 0) {
|
||||||
elseif ($thistime % (60 * 60) == 0) {
|
|
||||||
$shifts_table .= "<tr class=\"row-hour\"><th>";
|
$shifts_table .= "<tr class=\"row-hour\"><th>";
|
||||||
$shifts_table .= date("H:i", $thistime);
|
$shifts_table .= date("H:i", $thistime);
|
||||||
} else {
|
} else {
|
||||||
|
@ -506,33 +531,32 @@ function view_user_shifts() {
|
||||||
$blocks = ($shift["end"] - $shift["start"]) / (15 * 60);
|
$blocks = ($shift["end"] - $shift["start"]) / (15 * 60);
|
||||||
if ($blocks < 1)
|
if ($blocks < 1)
|
||||||
$blocks = 1;
|
$blocks = 1;
|
||||||
|
|
||||||
$collides = in_array($shift['SID'], array_keys($ownshifts));
|
$collides = in_array($shift['SID'], array_keys($ownshifts));
|
||||||
if (! $collides)
|
if (! $collides)
|
||||||
foreach ($ownshifts as $ownshift) {
|
foreach ($ownshifts as $ownshift) {
|
||||||
if ($ownshift['start'] >= $shift['start'] && $ownshift['start'] < $shift['end'] ||
|
if ($ownshift['start'] >= $shift['start'] && $ownshift['start'] < $shift['end'] || $ownshift['end'] > $shift['start'] && $ownshift['end'] <= $shift['end'] || $ownshift['start'] < $shift['start'] && $ownshift['end'] > $shift['end']) {
|
||||||
$ownshift['end'] > $shift['start'] && $ownshift['end'] <= $shift['end'] ||
|
|
||||||
$ownshift['start'] < $shift['start'] && $ownshift['end'] > $shift['end'])
|
|
||||||
{
|
|
||||||
$collides = true;
|
$collides = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// qqqqqq
|
// qqqqqq
|
||||||
$is_free = false;
|
$is_free = false;
|
||||||
$shifts_row = date('d.m. H:i', $shift['start']);
|
$shifts_row = '<a href="' . shift_link($shift) . '">' . date('d.m. H:i', $shift['start']);
|
||||||
$shifts_row .= " – ";
|
$shifts_row .= " – ";
|
||||||
$shifts_row .= date('H:i', $shift['end']);
|
$shifts_row .= date('H:i', $shift['end']);
|
||||||
$shifts_row .= "<br /><b>";
|
$shifts_row .= "<br /><b>";
|
||||||
$shifts_row .= $shift['name'];
|
$shifts_row .= ShiftType($shift['shifttype_id'])['name'];
|
||||||
$shifts_row .= "</b><br />";
|
$shifts_row .= "</b><br />";
|
||||||
$shifts_row .= $room["name"];
|
if ($shift['title'] != '') {
|
||||||
$shifts_row .= "<br />";
|
$shifts_row .= $shift['title'];
|
||||||
|
$shifts_row .= "<br />";
|
||||||
|
}
|
||||||
if (in_array('admin_shifts', $privileges))
|
if (in_array('admin_shifts', $privileges))
|
||||||
$shifts_row .= ' ' . table_buttons(array(
|
$shifts_row .= ' ' . table_buttons(array(
|
||||||
button(page_link_to('user_shifts') . '&edit_shift=' . $shift['SID'], glyph('edit'), 'btn-xs'),
|
button(page_link_to('user_shifts') . '&edit_shift=' . $shift['SID'], glyph('edit'), 'btn-xs'),
|
||||||
button(page_link_to('user_shifts') . '&delete_shift=' . $shift['SID'], glyph('trash'), 'btn-xs')
|
button(page_link_to('user_shifts') . '&delete_shift=' . $shift['SID'], glyph('trash'), 'btn-xs')
|
||||||
));
|
));
|
||||||
$shifts_row .= '<br />';
|
$shifts_row .= '<br />';
|
||||||
$query = "SELECT `NeededAngelTypes`.`count`, `AngelTypes`.`id`, `AngelTypes`.`restricted`, `UserAngelTypes`.`confirm_user_id`, `AngelTypes`.`name`, `UserAngelTypes`.`user_id`
|
$query = "SELECT `NeededAngelTypes`.`count`, `AngelTypes`.`id`, `AngelTypes`.`restricted`, `UserAngelTypes`.`confirm_user_id`, `AngelTypes`.`name`, `UserAngelTypes`.`user_id`
|
||||||
|
@ -550,7 +574,7 @@ function view_user_shifts() {
|
||||||
$query .= " AND `angel_type_id` IN (" . implode(',', $_SESSION['user_shifts']['types']) . ") ";
|
$query .= " AND `angel_type_id` IN (" . implode(',', $_SESSION['user_shifts']['types']) . ") ";
|
||||||
$query .= " ORDER BY `AngelTypes`.`name`";
|
$query .= " ORDER BY `AngelTypes`.`name`";
|
||||||
$angeltypes = sql_select($query);
|
$angeltypes = sql_select($query);
|
||||||
|
|
||||||
if (count($angeltypes) > 0) {
|
if (count($angeltypes) > 0) {
|
||||||
foreach ($angeltypes as $angeltype) {
|
foreach ($angeltypes as $angeltype) {
|
||||||
$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`");
|
$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`");
|
||||||
|
@ -567,7 +591,7 @@ function view_user_shifts() {
|
||||||
}
|
}
|
||||||
if (in_array('user_shifts_admin', $privileges))
|
if (in_array('user_shifts_admin', $privileges))
|
||||||
$entry_list[] = "<span style=\"$style\">" . User_Nick_render($entry) . ' ' . table_buttons(array(
|
$entry_list[] = "<span style=\"$style\">" . User_Nick_render($entry) . ' ' . table_buttons(array(
|
||||||
button(page_link_to('user_shifts') . '&entry_id=' . $entry['id'], glyph('trash'), 'btn-xs')
|
button(page_link_to('user_shifts') . '&entry_id=' . $entry['id'], glyph('trash'), 'btn-xs')
|
||||||
)) . '</span>';
|
)) . '</span>';
|
||||||
else
|
else
|
||||||
$entry_list[] = "<span style=\"$style\">" . User_Nick_render($entry) . "</span>";
|
$entry_list[] = "<span style=\"$style\">" . User_Nick_render($entry) . "</span>";
|
||||||
|
@ -576,20 +600,20 @@ function view_user_shifts() {
|
||||||
$inner_text = sprintf(ngettext("%d helper needed", "%d helpers needed", $angeltype['count'] - count($entries)), $angeltype['count'] - count($entries));
|
$inner_text = sprintf(ngettext("%d helper needed", "%d helpers needed", $angeltype['count'] - count($entries)), $angeltype['count'] - count($entries));
|
||||||
// is the shift still running or alternatively is the user shift admin?
|
// is the shift still running or alternatively is the user shift admin?
|
||||||
$user_may_join_shift = true;
|
$user_may_join_shift = true;
|
||||||
|
|
||||||
// you cannot join if user alread joined a parallel or this shift
|
// you cannot join if user alread joined a parallel or this shift
|
||||||
$user_may_join_shift &= ! $collides;
|
$user_may_join_shift &= ! $collides;
|
||||||
|
|
||||||
// you cannot join if user is not of this angel type
|
// you cannot join if user is not of this angel type
|
||||||
$user_may_join_shift &= isset($angeltype['user_id']);
|
$user_may_join_shift &= isset($angeltype['user_id']);
|
||||||
|
|
||||||
// you cannot join if you are not confirmed
|
// you cannot join if you are not confirmed
|
||||||
if ($angeltype['restricted'] == 1 && isset($angeltype['user_id']))
|
if ($angeltype['restricted'] == 1 && isset($angeltype['user_id']))
|
||||||
$user_may_join_shift &= isset($angeltype['confirm_user_id']);
|
$user_may_join_shift &= isset($angeltype['confirm_user_id']);
|
||||||
|
|
||||||
// you can only join if the shift is in future or running
|
// you can only join if the shift is in future or running
|
||||||
$user_may_join_shift &= time() < $shift['start'];
|
$user_may_join_shift &= time() < $shift['start'];
|
||||||
|
|
||||||
// User shift admins may join anybody in every shift
|
// User shift admins may join anybody in every shift
|
||||||
$user_may_join_shift |= in_array('user_shifts_admin', $privileges);
|
$user_may_join_shift |= in_array('user_shifts_admin', $privileges);
|
||||||
if ($user_may_join_shift)
|
if ($user_may_join_shift)
|
||||||
|
@ -604,11 +628,11 @@ function view_user_shifts() {
|
||||||
else
|
else
|
||||||
$entry_list[] = $inner_text . ' <a href="' . page_link_to('user_settings') . '#angel_types_anchor">(Werde ' . $angeltype['name'] . ')</a>';
|
$entry_list[] = $inner_text . ' <a href="' . page_link_to('user_settings') . '#angel_types_anchor">(Werde ' . $angeltype['name'] . ')</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
unset($inner_text);
|
unset($inner_text);
|
||||||
$is_free = true;
|
$is_free = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$shifts_row .= '<b>' . $angeltype['name'] . ':</b> ';
|
$shifts_row .= '<b>' . $angeltype['name'] . ':</b> ';
|
||||||
$shifts_row .= join(", ", $entry_list);
|
$shifts_row .= join(", ", $entry_list);
|
||||||
$shifts_row .= '<br />';
|
$shifts_row .= '<br />';
|
||||||
|
@ -650,17 +674,20 @@ function view_user_shifts() {
|
||||||
$info[] = date("Y-m-d", $shift['start']);
|
$info[] = date("Y-m-d", $shift['start']);
|
||||||
$info[] = date("H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']);
|
$info[] = date("H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']);
|
||||||
if (count($_SESSION['user_shifts']['rooms']) > 1)
|
if (count($_SESSION['user_shifts']['rooms']) > 1)
|
||||||
$info[] = $shift['room_name'];
|
$info[] = Room_name_render([
|
||||||
|
'Name' => $shift['room_name'],
|
||||||
|
'RID' => $shift['RID']
|
||||||
|
]);
|
||||||
|
|
||||||
$shift_row = array(
|
$shift_row = array(
|
||||||
'info' => join('<br />', $info),
|
'info' => join('<br />', $info),
|
||||||
'entries' => $shift['name']
|
'entries' => '<a href="' . shift_link($shift) . '">' . $shift['name'] . '</a>' . ($shift['title'] ? '<br />' . $shift['title'] : '')
|
||||||
);
|
);
|
||||||
|
|
||||||
if (in_array('admin_shifts', $privileges))
|
if (in_array('admin_shifts', $privileges))
|
||||||
$shift_row['info'] .= ' ' . table_buttons(array(
|
$shift_row['info'] .= ' ' . table_buttons(array(
|
||||||
button(page_link_to('user_shifts') . '&edit_shift=' . $shift['SID'], glyph('edit'), 'btn-xs'),
|
button(page_link_to('user_shifts') . '&edit_shift=' . $shift['SID'], glyph('edit'), 'btn-xs'),
|
||||||
button(page_link_to('user_shifts') . '&delete_shift=' . $shift['SID'], glyph('trash'), 'btn-xs')
|
button(page_link_to('user_shifts') . '&delete_shift=' . $shift['SID'], glyph('trash'), 'btn-xs')
|
||||||
));
|
));
|
||||||
$shift_row['entries'] .= '<br />';
|
$shift_row['entries'] .= '<br />';
|
||||||
$is_free = false;
|
$is_free = false;
|
||||||
|
@ -681,7 +708,7 @@ function view_user_shifts() {
|
||||||
$angeltypes = sql_select($query);
|
$angeltypes = sql_select($query);
|
||||||
if (count($angeltypes) > 0) {
|
if (count($angeltypes) > 0) {
|
||||||
$my_shift = sql_num_query("SELECT * FROM `ShiftEntry` WHERE `SID`=" . sql_escape($shift['SID']) . " AND `UID`=" . sql_escape($user['UID']) . " LIMIT 1") > 0;
|
$my_shift = sql_num_query("SELECT * FROM `ShiftEntry` WHERE `SID`=" . sql_escape($shift['SID']) . " AND `UID`=" . sql_escape($user['UID']) . " LIMIT 1") > 0;
|
||||||
|
|
||||||
foreach ($angeltypes as &$angeltype) {
|
foreach ($angeltypes as &$angeltype) {
|
||||||
$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`");
|
$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`");
|
||||||
$entry_list = array();
|
$entry_list = array();
|
||||||
|
@ -689,7 +716,7 @@ function view_user_shifts() {
|
||||||
foreach ($entries as $entry) {
|
foreach ($entries as $entry) {
|
||||||
if (in_array('user_shifts_admin', $privileges))
|
if (in_array('user_shifts_admin', $privileges))
|
||||||
$member = User_Nick_render($entry) . ' ' . table_buttons(array(
|
$member = User_Nick_render($entry) . ' ' . table_buttons(array(
|
||||||
button(page_link_to('user_shifts') . '&entry_id=' . $entry['id'], glyph('trash'), 'btn-xs')
|
button(page_link_to('user_shifts') . '&entry_id=' . $entry['id'], glyph('trash'), 'btn-xs')
|
||||||
));
|
));
|
||||||
else
|
else
|
||||||
$member = User_Nick_render($entry);
|
$member = User_Nick_render($entry);
|
||||||
|
@ -705,20 +732,20 @@ function view_user_shifts() {
|
||||||
$inner_text = sprintf(ngettext("%d helper needed", "%d helpers needed", $angeltype['count'] - count($entries) + $freeloader), $angeltype['count'] - count($entries) + $freeloader);
|
$inner_text = sprintf(ngettext("%d helper needed", "%d helpers needed", $angeltype['count'] - count($entries) + $freeloader), $angeltype['count'] - count($entries) + $freeloader);
|
||||||
// is the shift still running or alternatively is the user shift admin?
|
// is the shift still running or alternatively is the user shift admin?
|
||||||
$user_may_join_shift = true;
|
$user_may_join_shift = true;
|
||||||
|
|
||||||
/* you cannot join if user already joined this shift */
|
/* you cannot join if user already joined this shift */
|
||||||
$user_may_join_shift &= ! $my_shift;
|
$user_may_join_shift &= ! $my_shift;
|
||||||
|
|
||||||
// you cannot join if user is not of this angel type
|
// you cannot join if user is not of this angel type
|
||||||
$user_may_join_shift &= isset($angeltype['user_id']);
|
$user_may_join_shift &= isset($angeltype['user_id']);
|
||||||
|
|
||||||
// you cannot join if you are not confirmed
|
// you cannot join if you are not confirmed
|
||||||
if ($angeltype['restricted'] == 1 && isset($angeltype['user_id']))
|
if ($angeltype['restricted'] == 1 && isset($angeltype['user_id']))
|
||||||
$user_may_join_shift &= isset($angeltype['confirm_user_id']);
|
$user_may_join_shift &= isset($angeltype['confirm_user_id']);
|
||||||
|
|
||||||
// you can only join if the shift is in future or running
|
// you can only join if the shift is in future or running
|
||||||
$user_may_join_shift &= time() < $shift['start'];
|
$user_may_join_shift &= time() < $shift['start'];
|
||||||
|
|
||||||
// User shift admins may join anybody in every shift
|
// User shift admins may join anybody in every shift
|
||||||
$user_may_join_shift |= in_array('user_shifts_admin', $privileges);
|
$user_may_join_shift |= in_array('user_shifts_admin', $privileges);
|
||||||
if ($user_may_join_shift)
|
if ($user_may_join_shift)
|
||||||
|
@ -732,11 +759,11 @@ function view_user_shifts() {
|
||||||
$entry_list[] = $inner_text . ' <a href="' . page_link_to('user_settings') . '#angel_types_anchor">(Werde ' . $angeltype['name'] . ')</a>';
|
$entry_list[] = $inner_text . ' <a href="' . page_link_to('user_settings') . '#angel_types_anchor">(Werde ' . $angeltype['name'] . ')</a>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
unset($inner_text);
|
unset($inner_text);
|
||||||
$is_free = true;
|
$is_free = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$shift_row['entries'] .= '<b>' . $angeltype['name'] . ':</b> ';
|
$shift_row['entries'] .= '<b>' . $angeltype['name'] . ':</b> ';
|
||||||
$shift_row['entries'] .= join(", ", $entry_list);
|
$shift_row['entries'] .= join(", ", $entry_list);
|
||||||
$shift_row['entries'] .= '<br />';
|
$shift_row['entries'] .= '<br />';
|
||||||
|
@ -751,13 +778,13 @@ function view_user_shifts() {
|
||||||
}
|
}
|
||||||
$shifts_table = table(array(
|
$shifts_table = table(array(
|
||||||
'info' => _("Time") . "/" . _("Room"),
|
'info' => _("Time") . "/" . _("Room"),
|
||||||
'entries' => _("Entries")
|
'entries' => _("Entries")
|
||||||
), $shifts_table);
|
), $shifts_table);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($user['api_key'] == "")
|
if ($user['api_key'] == "")
|
||||||
User_reset_api_key($user, false);
|
User_reset_api_key($user, false);
|
||||||
|
|
||||||
return page(array(
|
return page(array(
|
||||||
'<div class="col-md-12">',
|
'<div class="col-md-12">',
|
||||||
msg(),
|
msg(),
|
||||||
|
@ -774,9 +801,9 @@ function view_user_shifts() {
|
||||||
'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' => msg() . $shifts_table,
|
'shifts_table' => msg() . $shifts_table,
|
||||||
'ical_text' => '<h2>' . _("iCal export") . '</h2><p>' . sprintf(_("Export of shown shifts. <a href=\"%s\">iCal format</a> or <a href=\"%s\">JSON format</a> available (please keep secret, otherwise <a href=\"%s\">reset the api key</a>)."), page_link_to_absolute('ical') . '&key=' . $user['api_key'], page_link_to_absolute('shifts_json_export') . '&key=' . $user['api_key'], page_link_to('user_myshifts') . '&reset') . '</p>',
|
'ical_text' => '<h2>' . _("iCal export") . '</h2><p>' . sprintf(_("Export of shown shifts. <a href=\"%s\">iCal format</a> or <a href=\"%s\">JSON format</a> available (please keep secret, otherwise <a href=\"%s\">reset the api key</a>)."), page_link_to_absolute('ical') . '&key=' . $user['api_key'], page_link_to_absolute('shifts_json_export') . '&key=' . $user['api_key'], page_link_to('user_myshifts') . '&reset') . '</p>',
|
||||||
'filter' => _("Filter")
|
'filter' => _("Filter")
|
||||||
)),
|
)),
|
||||||
'</div>'
|
'</div>'
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -802,14 +829,14 @@ function make_select($items, $selected, $name, $title = null) {
|
||||||
$html_items = array();
|
$html_items = array();
|
||||||
if (isset($title))
|
if (isset($title))
|
||||||
$html_items[] = '<h4>' . $title . '</h4>' . "\n";
|
$html_items[] = '<h4>' . $title . '</h4>' . "\n";
|
||||||
|
|
||||||
foreach ($items as $i)
|
foreach ($items as $i)
|
||||||
$html_items[] = '<div class="checkbox"><label><input type="checkbox" name="' . $name . '[]" value="' . $i['id'] . '"' . (in_array($i['id'], $selected) ? ' checked="checked"' : '') . '> ' . $i['name'] . '</label>' . (! isset($i['enabled']) || $i['enabled'] ? '' : glyph("lock")) . '</div><br />';
|
$html_items[] = '<div class="checkbox"><label><input type="checkbox" name="' . $name . '[]" value="' . $i['id'] . '"' . (in_array($i['id'], $selected) ? ' checked="checked"' : '') . '> ' . $i['name'] . '</label>' . (! isset($i['enabled']) || $i['enabled'] ? '' : glyph("lock")) . '</div><br />';
|
||||||
$html = '<div id="selection_' . $name . '" class="selection ' . $name . '">' . "\n";
|
$html = '<div id="selection_' . $name . '" class="selection ' . $name . '">' . "\n";
|
||||||
$html .= implode("\n", $html_items);
|
$html .= implode("\n", $html_items);
|
||||||
$html .= buttons(array(
|
$html .= buttons(array(
|
||||||
button("javascript: check_all('selection_" . $name . "')", _("All"), ""),
|
button("javascript: check_all('selection_" . $name . "')", _("All"), ""),
|
||||||
button("javascript: uncheck_all('selection_" . $name . "')", _("None"), "")
|
button("javascript: uncheck_all('selection_" . $name . "')", _("None"), "")
|
||||||
));
|
));
|
||||||
$html .= '</div>' . "\n";
|
$html .= '</div>' . "\n";
|
||||||
return $html;
|
return $html;
|
||||||
|
|
|
@ -14,22 +14,22 @@ function page_link_to_absolute($page) {
|
||||||
* Renders the header toolbar containing search, login/logout, user and settings links.
|
* Renders the header toolbar containing search, login/logout, user and settings links.
|
||||||
*/
|
*/
|
||||||
function header_toolbar() {
|
function header_toolbar() {
|
||||||
global $p, $privileges, $user, $enable_tshirt_size;
|
global $p, $privileges, $user, $enable_tshirt_size, $max_freeloadable_shifts;
|
||||||
|
|
||||||
$toolbar_items = array();
|
$toolbar_items = array();
|
||||||
|
|
||||||
if (isset($user))
|
if (isset($user))
|
||||||
$toolbar_items[] = toolbar_item_link(page_link_to('users') . '&action=view', 'time', User_shift_state_render($user));
|
$toolbar_items[] = toolbar_item_link(page_link_to('shifts') . '&action=next', 'time', User_shift_state_render($user));
|
||||||
|
|
||||||
if (! isset($user) && in_array('register', $privileges))
|
if (! isset($user) && in_array('register', $privileges))
|
||||||
$toolbar_items[] = toolbar_item_link(page_link_to('register'), 'plus', register_title(), $p == 'register');
|
$toolbar_items[] = toolbar_item_link(page_link_to('register'), 'plus', register_title(), $p == 'register');
|
||||||
|
|
||||||
if (in_array('login', $privileges))
|
if (in_array('login', $privileges))
|
||||||
$toolbar_items[] = toolbar_item_link(page_link_to('login'), 'log-in', login_title(), $p == 'login');
|
$toolbar_items[] = toolbar_item_link(page_link_to('login'), 'log-in', login_title(), $p == 'login');
|
||||||
|
|
||||||
if (isset($user) && in_array('user_messages', $privileges))
|
if (isset($user) && in_array('user_messages', $privileges))
|
||||||
$toolbar_items[] = toolbar_item_link(page_link_to('user_messages'), 'envelope', user_unread_messages());
|
$toolbar_items[] = toolbar_item_link(page_link_to('user_messages'), 'envelope', user_unread_messages());
|
||||||
|
|
||||||
$hints = [];
|
$hints = [];
|
||||||
if (isset($user)) {
|
if (isset($user)) {
|
||||||
$hint_class = 'info';
|
$hint_class = 'info';
|
||||||
|
@ -40,30 +40,30 @@ function header_toolbar() {
|
||||||
if ($new_questions != "")
|
if ($new_questions != "")
|
||||||
$hints[] = $new_questions;
|
$hints[] = $new_questions;
|
||||||
}
|
}
|
||||||
|
|
||||||
$unconfirmed_hint = user_angeltypes_unconfirmed_hint();
|
$unconfirmed_hint = user_angeltypes_unconfirmed_hint();
|
||||||
if ($unconfirmed_hint != '')
|
if ($unconfirmed_hint != '')
|
||||||
$hints[] = $unconfirmed_hint;
|
$hints[] = $unconfirmed_hint;
|
||||||
|
|
||||||
if (User_is_freeloader($user)) {
|
if (User_is_freeloader($user)) {
|
||||||
$hints[] = error(sprintf(_("You freeloaded at least %s shifts. Shift signup is locked. Please go to heavens desk to be unlocked again."), $max_freeloadable_shifts), true);
|
$hints[] = error(sprintf(_("You freeloaded at least %s shifts. Shift signup is locked. Please go to heavens desk to be unlocked again."), $max_freeloadable_shifts), true);
|
||||||
$hint_class = 'danger';
|
$hint_class = 'danger';
|
||||||
$glyphicon = 'warning-sign';
|
$glyphicon = 'warning-sign';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hinweis für Engel, die noch nicht angekommen sind
|
// Hinweis für Engel, die noch nicht angekommen sind
|
||||||
if ($user['Gekommen'] == 0) {
|
if ($user['Gekommen'] == 0) {
|
||||||
$hints[] = error(_("You are not marked as arrived. Please go to heaven's desk, get your angel badge and/or tell them that you arrived already."), true);
|
$hints[] = error(_("You are not marked as arrived. Please go to heaven's desk, get your angel badge and/or tell them that you arrived already."), true);
|
||||||
$hint_class = 'danger';
|
$hint_class = 'danger';
|
||||||
$glyphicon = 'warning-sign';
|
$glyphicon = 'warning-sign';
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($enable_tshirt_size && $user['Size'] == "") {
|
if ($enable_tshirt_size && $user['Size'] == "") {
|
||||||
$hints[] = error(_("You need to specify a tshirt size in your settings!"), true);
|
$hints[] = error(_("You need to specify a tshirt size in your settings!"), true);
|
||||||
$hint_class = 'danger';
|
$hint_class = 'danger';
|
||||||
$glyphicon = 'warning-sign';
|
$glyphicon = 'warning-sign';
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($user['DECT'] == "") {
|
if ($user['DECT'] == "") {
|
||||||
$hints[] = error(_("You need to specify a DECT phone number in your settings! If you don't have a DECT phone, just enter \"-\"."), true);
|
$hints[] = error(_("You need to specify a DECT phone number in your settings! If you don't have a DECT phone, just enter \"-\"."), true);
|
||||||
$hint_class = 'danger';
|
$hint_class = 'danger';
|
||||||
|
@ -72,40 +72,40 @@ function header_toolbar() {
|
||||||
}
|
}
|
||||||
if (count($hints) > 0)
|
if (count($hints) > 0)
|
||||||
$toolbar_items[] = toolbar_popover($glyphicon . ' text-' . $hint_class, '', $hints, 'bg-' . $hint_class);
|
$toolbar_items[] = toolbar_popover($glyphicon . ' text-' . $hint_class, '', $hints, 'bg-' . $hint_class);
|
||||||
|
|
||||||
$user_submenu = make_langselect();
|
$user_submenu = make_langselect();
|
||||||
$user_submenu[] = toolbar_item_divider();
|
$user_submenu[] = toolbar_item_divider();
|
||||||
if (in_array('user_myshifts', $privileges))
|
if (in_array('user_myshifts', $privileges))
|
||||||
$toolbar_items[] = toolbar_item_link(page_link_to('users') . '&action=view', ' icon-icon_angel', $user['Nick'], $p == 'users');
|
$toolbar_items[] = toolbar_item_link(page_link_to('users') . '&action=view', ' icon-icon_angel', $user['Nick'], $p == 'users');
|
||||||
|
|
||||||
if (in_array('user_settings', $privileges))
|
if (in_array('user_settings', $privileges))
|
||||||
$user_submenu[] = toolbar_item_link(page_link_to('user_settings'), 'list-alt', settings_title(), $p == 'user_settings');
|
$user_submenu[] = toolbar_item_link(page_link_to('user_settings'), 'list-alt', settings_title(), $p == 'user_settings');
|
||||||
|
|
||||||
if (in_array('logout', $privileges))
|
if (in_array('logout', $privileges))
|
||||||
$user_submenu[] = toolbar_item_link(page_link_to('logout'), 'log-out', logout_title(), $p == 'logout');
|
$user_submenu[] = toolbar_item_link(page_link_to('logout'), 'log-out', logout_title(), $p == 'logout');
|
||||||
|
|
||||||
if (count($user_submenu) > 0)
|
if (count($user_submenu) > 0)
|
||||||
$toolbar_items[] = toolbar_dropdown('', '', $user_submenu);
|
$toolbar_items[] = toolbar_dropdown('', '', $user_submenu);
|
||||||
|
|
||||||
return toolbar($toolbar_items, true);
|
return toolbar($toolbar_items, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
function make_navigation() {
|
function make_navigation() {
|
||||||
global $p, $privileges;
|
global $p, $privileges;
|
||||||
|
|
||||||
$menu = array();
|
$menu = array();
|
||||||
$pages = array(
|
$pages = array(
|
||||||
"news" => news_title(),
|
"news" => news_title(),
|
||||||
"user_meetings" => meetings_title(),
|
"user_meetings" => meetings_title(),
|
||||||
"user_shifts" => shifts_title(),
|
"user_shifts" => shifts_title(),
|
||||||
"angeltypes" => angeltypes_title(),
|
"angeltypes" => angeltypes_title(),
|
||||||
"user_questions" => questions_title()
|
"user_questions" => questions_title()
|
||||||
);
|
);
|
||||||
|
|
||||||
foreach ($pages as $page => $title)
|
foreach ($pages as $page => $title)
|
||||||
if (in_array($page, $privileges))
|
if (in_array($page, $privileges))
|
||||||
$menu[] = toolbar_item_link(page_link_to($page), '', $title, $page == $p);
|
$menu[] = toolbar_item_link(page_link_to($page), '', $title, $page == $p);
|
||||||
|
|
||||||
$admin_menu = array();
|
$admin_menu = array();
|
||||||
$admin_pages = array(
|
$admin_pages = array(
|
||||||
"admin_arrive" => admin_arrive_title(),
|
"admin_arrive" => admin_arrive_title(),
|
||||||
|
@ -113,31 +113,32 @@ function make_navigation() {
|
||||||
"admin_user" => admin_user_title(),
|
"admin_user" => admin_user_title(),
|
||||||
"admin_free" => admin_free_title(),
|
"admin_free" => admin_free_title(),
|
||||||
"admin_questions" => admin_questions_title(),
|
"admin_questions" => admin_questions_title(),
|
||||||
|
"shifttypes" => shifttypes_title(),
|
||||||
"admin_shifts" => admin_shifts_title(),
|
"admin_shifts" => admin_shifts_title(),
|
||||||
"admin_rooms" => admin_rooms_title(),
|
"admin_rooms" => admin_rooms_title(),
|
||||||
"admin_groups" => admin_groups_title(),
|
"admin_groups" => admin_groups_title(),
|
||||||
"admin_import" => admin_import_title(),
|
"admin_import" => admin_import_title(),
|
||||||
"admin_log" => admin_log_title()
|
"admin_log" => admin_log_title()
|
||||||
);
|
);
|
||||||
|
|
||||||
foreach ($admin_pages as $page => $title)
|
foreach ($admin_pages as $page => $title)
|
||||||
if (in_array($page, $privileges))
|
if (in_array($page, $privileges))
|
||||||
$admin_menu[] = toolbar_item_link(page_link_to($page), '', $title, $page == $p);
|
$admin_menu[] = toolbar_item_link(page_link_to($page), '', $title, $page == $p);
|
||||||
|
|
||||||
if (count($admin_menu) > 0)
|
if (count($admin_menu) > 0)
|
||||||
$menu[] = toolbar_dropdown('', _("Admin"), $admin_menu);
|
$menu[] = toolbar_dropdown('', _("Admin"), $admin_menu);
|
||||||
|
|
||||||
return toolbar($menu);
|
return toolbar($menu);
|
||||||
}
|
}
|
||||||
|
|
||||||
function make_navigation_for($name, $pages) {
|
function make_navigation_for($name, $pages) {
|
||||||
global $privileges, $p;
|
global $privileges, $p;
|
||||||
|
|
||||||
$menu = "";
|
$menu = "";
|
||||||
foreach ($pages as $page)
|
foreach ($pages as $page)
|
||||||
if (in_array($page, $privileges))
|
if (in_array($page, $privileges))
|
||||||
$menu .= '<li' . ($page == $p ? ' class="selected"' : '') . '><a href="' . page_link_to($page) . '">' . $title . '</a></li>';
|
$menu .= '<li' . ($page == $p ? ' class="selected"' : '') . '><a href="' . page_link_to($page) . '">' . $title . '</a></li>';
|
||||||
|
|
||||||
if ($menu != "")
|
if ($menu != "")
|
||||||
$menu = '<nav class="container"><h4>' . $name . '</h4><ul class="content">' . $menu . '</ul></nav>';
|
$menu = '<nav class="container"><h4>' . $name . '</h4><ul class="content">' . $menu . '</ul></nav>';
|
||||||
return $menu;
|
return $menu;
|
||||||
|
|
|
@ -6,13 +6,26 @@
|
||||||
$themes = array(
|
$themes = array(
|
||||||
"0" => "Engelsystem light",
|
"0" => "Engelsystem light",
|
||||||
"1" => "Engelsystem dark",
|
"1" => "Engelsystem dark",
|
||||||
"2" => "Engelsystem 31c3"
|
"2" => "Engelsystem 31c3"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Display muted (grey) text.
|
||||||
|
*
|
||||||
|
* @param string $text
|
||||||
|
*/
|
||||||
|
function mute($text) {
|
||||||
|
return '<span class="text-muted">' . $text . '</span>';
|
||||||
|
}
|
||||||
|
|
||||||
|
function progress_bar($valuemin, $valuemax, $valuenow, $class = '', $content = '') {
|
||||||
|
return '<div class="progress"><div class="progress-bar ' . $class . '" role="progressbar" aria-valuenow="' . $valuenow . '" aria-valuemin="' . $valuemin . '" aria-valuemax="' . $valuemax . '" style="width: ' . (($valuenow - $valuemin) * 100 / ($valuemax - $valuemin)) . '%">' . $content . '</div></div>';
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Render glyphicon
|
* Render glyphicon
|
||||||
*
|
*
|
||||||
* @param string $glyph_name
|
* @param string $glyph_name
|
||||||
*/
|
*/
|
||||||
function glyph($glyph_name) {
|
function glyph($glyph_name) {
|
||||||
return ' <span class="glyphicon glyphicon-' . $glyph_name . '"></span> ';
|
return ' <span class="glyphicon glyphicon-' . $glyph_name . '"></span> ';
|
||||||
|
@ -21,7 +34,7 @@ function glyph($glyph_name) {
|
||||||
/**
|
/**
|
||||||
* Renders a tick or a cross by given boolean
|
* Renders a tick or a cross by given boolean
|
||||||
*
|
*
|
||||||
* @param boolean $boolean
|
* @param boolean $boolean
|
||||||
*/
|
*/
|
||||||
function glyph_bool($boolean) {
|
function glyph_bool($boolean) {
|
||||||
return '<span class="text-' . ($boolean ? 'success' : 'danger') . '">' . glyph($boolean ? 'ok' : 'remove') . '</span>';
|
return '<span class="text-' . ($boolean ? 'success' : 'danger') . '">' . glyph($boolean ? 'ok' : 'remove') . '</span>';
|
||||||
|
@ -39,7 +52,7 @@ function heading($content, $number = 1) {
|
||||||
/**
|
/**
|
||||||
* Render a toolbar.
|
* Render a toolbar.
|
||||||
*
|
*
|
||||||
* @param array $items
|
* @param array $items
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
function toolbar($items = array(), $right = false) {
|
function toolbar($items = array(), $right = false) {
|
||||||
|
@ -49,10 +62,10 @@ function toolbar($items = array(), $right = false) {
|
||||||
/**
|
/**
|
||||||
* Render a link for a toolbar.
|
* Render a link for a toolbar.
|
||||||
*
|
*
|
||||||
* @param string $href
|
* @param string $href
|
||||||
* @param string $glyphicon
|
* @param string $glyphicon
|
||||||
* @param string $label
|
* @param string $label
|
||||||
* @param bool $selected
|
* @param bool $selected
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
function toolbar_item_link($href, $glyphicon, $label, $selected = false) {
|
function toolbar_item_link($href, $glyphicon, $label, $selected = false) {
|
||||||
|
@ -74,7 +87,7 @@ function toolbar_popover($glyphicon, $label, $content, $class = '') {
|
||||||
return '<li class="dropdown messages ' . $class . '">
|
return '<li class="dropdown messages ' . $class . '">
|
||||||
<a id="' . $id . '" href="#" tabindex="0">' . ($glyphicon != '' ? '<span class="glyphicon glyphicon-' . $glyphicon . '"></span> ' : '') . $label . ' <span class="caret"></span></a>
|
<a id="' . $id . '" href="#" tabindex="0">' . ($glyphicon != '' ? '<span class="glyphicon glyphicon-' . $glyphicon . '"></span> ' : '') . $label . ' <span class="caret"></span></a>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(document).ready(function(){$("#' . $id . '").popover({trigger: "focus", html: true, content: "' . addslashes(join('', $content)) . '", placement: "bottom", container: "body"})});
|
$(document).ready(function(){$("#' . $id . '").popover({trigger: "click focus", html: true, content: "' . addslashes(join('', $content)) . '", placement: "bottom", container: "#navbar-collapse-1"})});
|
||||||
</script></li>';
|
</script></li>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -125,9 +138,9 @@ function form_checkboxes($name, $label, $items, $selected) {
|
||||||
$html = form_element($label, '');
|
$html = form_element($label, '');
|
||||||
foreach ($items as $key => $item)
|
foreach ($items as $key => $item)
|
||||||
$html .= form_checkbox($name . '_' . $key, $item, array_search($key, $selected) !== false);
|
$html .= form_checkbox($name . '_' . $key, $item, array_search($key, $selected) !== false);
|
||||||
|
|
||||||
return $html;
|
return $html;
|
||||||
|
|
||||||
$html = "<ul>";
|
$html = "<ul>";
|
||||||
foreach ($items as $key => $item) {
|
foreach ($items as $key => $item) {
|
||||||
$id = $name . '_' . $key;
|
$id = $name . '_' . $key;
|
||||||
|
@ -191,7 +204,7 @@ function form_radio($name, $label, $selected, $value) {
|
||||||
*/
|
*/
|
||||||
function form_info($label, $text = "") {
|
function form_info($label, $text = "") {
|
||||||
if ($label == "")
|
if ($label == "")
|
||||||
return '<span class="help-block">' . $text . '</span>';
|
return '<span class="help-block">' . glyph('info-sign') . $text . '</span>';
|
||||||
if ($text == "")
|
if ($text == "")
|
||||||
return '<h4>' . $label . '</h4>';
|
return '<h4>' . $label . '</h4>';
|
||||||
return form_element($label, '<p class="form-control-static">' . $text . '</p>', '');
|
return form_element($label, '<p class="form-control-static">' . $text . '</p>', '');
|
||||||
|
@ -283,17 +296,17 @@ function table($columns, $rows_raw, $data = true) {
|
||||||
// If only one column is given
|
// If only one column is given
|
||||||
if (! is_array($columns)) {
|
if (! is_array($columns)) {
|
||||||
$columns = array(
|
$columns = array(
|
||||||
'col' => $columns
|
'col' => $columns
|
||||||
);
|
);
|
||||||
|
|
||||||
$rows = array();
|
$rows = array();
|
||||||
foreach ($rows_raw as $row)
|
foreach ($rows_raw as $row)
|
||||||
$rows[] = array(
|
$rows[] = array(
|
||||||
'col' => $row
|
'col' => $row
|
||||||
);
|
);
|
||||||
} else
|
} else
|
||||||
$rows = $rows_raw;
|
$rows = $rows_raw;
|
||||||
|
|
||||||
if (count($rows) == 0)
|
if (count($rows) == 0)
|
||||||
return info(_("No data found."), true);
|
return info(_("No data found."), true);
|
||||||
$html = "";
|
$html = "";
|
||||||
|
@ -381,7 +394,7 @@ function html_options($name, $options, $selected = "") {
|
||||||
$html = "";
|
$html = "";
|
||||||
foreach ($options as $value => $label)
|
foreach ($options as $value => $label)
|
||||||
$html .= '<input type="radio"' . ($value == $selected ? ' checked="checked"' : '') . ' name="' . $name . '" value="' . $value . '"> ' . $label;
|
$html .= '<input type="radio"' . ($value == $selected ? ' checked="checked"' : '') . ' name="' . $name . '" value="' . $value . '"> ' . $label;
|
||||||
|
|
||||||
return $html;
|
return $html;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -419,7 +432,7 @@ function ReplaceSmilies($neueckig) {
|
||||||
$neueckig = str_replace(";P", "<img src=\"pic/smiles/icon_mad.gif\">", $neueckig);
|
$neueckig = str_replace(";P", "<img src=\"pic/smiles/icon_mad.gif\">", $neueckig);
|
||||||
$neueckig = str_replace(";oP", "<img src=\"pic/smiles/icon_mad.gif\">", $neueckig);
|
$neueckig = str_replace(";oP", "<img src=\"pic/smiles/icon_mad.gif\">", $neueckig);
|
||||||
$neueckig = str_replace("?)", "<img src=\"pic/smiles/icon_question.gif\">", $neueckig);
|
$neueckig = str_replace("?)", "<img src=\"pic/smiles/icon_question.gif\">", $neueckig);
|
||||||
|
|
||||||
return $neueckig;
|
return $neueckig;
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -1,8 +1,18 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* AngelTypes
|
* AngelTypes
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Renders the angeltypes name as link.
|
||||||
|
*
|
||||||
|
* @param AngelType $angeltype
|
||||||
|
*/
|
||||||
|
function AngelType_name_render($angeltype) {
|
||||||
|
return '<a href="' . page_link_to('angeltypes') . '&action=view&angeltype_id=' . $angeltype['id'] . '">' . ($angeltype['restricted'] ? glyph('lock') : '') . $angeltype['name'] . '</a>';
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Render angeltype membership state
|
* Render angeltype membership state
|
||||||
*
|
*
|
||||||
|
@ -35,15 +45,15 @@ function AngelType_delete_view($angeltype) {
|
||||||
info(sprintf(_("Do you want to delete angeltype %s?"), $angeltype['name']), true),
|
info(sprintf(_("Do you want to delete angeltype %s?"), $angeltype['name']), true),
|
||||||
buttons(array(
|
buttons(array(
|
||||||
button(page_link_to('angeltypes'), _("cancel"), 'cancel'),
|
button(page_link_to('angeltypes'), _("cancel"), 'cancel'),
|
||||||
button(page_link_to('angeltypes') . '&action=delete&angeltype_id=' . $angeltype['id'] . '&confirmed', _("delete"), 'ok')
|
button(page_link_to('angeltypes') . '&action=delete&angeltype_id=' . $angeltype['id'] . '&confirmed', _("delete"), 'ok')
|
||||||
))
|
))
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
function AngelType_edit_view($name, $restricted, $description, $coordinator_mode) {
|
function AngelType_edit_view($name, $restricted, $description, $coordinator_mode) {
|
||||||
return page_with_title(sprintf(_("Edit %s"), $name), array(
|
return page_with_title(sprintf(_("Edit %s"), $name), array(
|
||||||
buttons(array(
|
buttons(array(
|
||||||
button(page_link_to('angeltypes'), _("Angeltypes"), 'back')
|
button(page_link_to('angeltypes'), _("Angeltypes"), 'back')
|
||||||
)),
|
)),
|
||||||
msg(),
|
msg(),
|
||||||
form(array(
|
form(array(
|
||||||
|
@ -52,16 +62,16 @@ function AngelType_edit_view($name, $restricted, $description, $coordinator_mode
|
||||||
form_info("", _("Restricted angel types can only be used by an angel if enabled by an archangel (double opt-in).")),
|
form_info("", _("Restricted angel types can only be used by an angel if enabled by an archangel (double opt-in).")),
|
||||||
form_textarea('description', _("Description"), $description),
|
form_textarea('description', _("Description"), $description),
|
||||||
form_info("", _("Please use markdown for the description.")),
|
form_info("", _("Please use markdown for the description.")),
|
||||||
form_submit('submit', _("Save"))
|
form_submit('submit', _("Save"))
|
||||||
))
|
))
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
function AngelType_view($angeltype, $members, $user_angeltype, $admin_user_angeltypes, $admin_angeltypes, $coordinator) {
|
function AngelType_view($angeltype, $members, $user_angeltype, $admin_user_angeltypes, $admin_angeltypes, $coordinator) {
|
||||||
$buttons = array(
|
$buttons = array(
|
||||||
button(page_link_to('angeltypes'), _("Angeltypes"), 'back')
|
button(page_link_to('angeltypes'), _("Angeltypes"), 'back')
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($user_angeltype == null)
|
if ($user_angeltype == null)
|
||||||
$buttons[] = button(page_link_to('user_angeltypes') . '&action=add&angeltype_id=' . $angeltype['id'], _("join"), 'add');
|
$buttons[] = button(page_link_to('user_angeltypes') . '&action=add&angeltype_id=' . $angeltype['id'], _("join"), 'add');
|
||||||
else {
|
else {
|
||||||
|
@ -69,24 +79,24 @@ function AngelType_view($angeltype, $members, $user_angeltype, $admin_user_angel
|
||||||
error(sprintf(_("You are unconfirmed for this angeltype. Please go to the introduction for %s to get confirmed."), $angeltype['name']));
|
error(sprintf(_("You are unconfirmed for this angeltype. Please go to the introduction for %s to get confirmed."), $angeltype['name']));
|
||||||
$buttons[] = button(page_link_to('user_angeltypes') . '&action=delete&user_angeltype_id=' . $user_angeltype['id'], _("leave"), 'cancel');
|
$buttons[] = button(page_link_to('user_angeltypes') . '&action=delete&user_angeltype_id=' . $user_angeltype['id'], _("leave"), 'cancel');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($admin_angeltypes || $coordinator)
|
if ($admin_angeltypes || $coordinator)
|
||||||
$buttons[] = button(page_link_to('angeltypes') . '&action=edit&angeltype_id=' . $angeltype['id'], _("edit"), 'edit');
|
$buttons[] = button(page_link_to('angeltypes') . '&action=edit&angeltype_id=' . $angeltype['id'], _("edit"), 'edit');
|
||||||
if ($admin_angeltypes)
|
if ($admin_angeltypes)
|
||||||
$buttons[] = button(page_link_to('angeltypes') . '&action=delete&angeltype_id=' . $angeltype['id'], _("delete"), 'delete');
|
$buttons[] = button(page_link_to('angeltypes') . '&action=delete&angeltype_id=' . $angeltype['id'], _("delete"), 'delete');
|
||||||
|
|
||||||
$page = array(
|
$page = array(
|
||||||
msg(),
|
msg(),
|
||||||
buttons($buttons)
|
buttons($buttons)
|
||||||
);
|
);
|
||||||
|
|
||||||
$page[] = '<h3>' . _("Description") . '</h3>';
|
$page[] = '<h3>' . _("Description") . '</h3>';
|
||||||
$parsedown = new Parsedown();
|
$parsedown = new Parsedown();
|
||||||
if ($angeltype['description'] != "")
|
if ($angeltype['description'] != "")
|
||||||
$page[] = '<div class="well">' . $parsedown->parse($angeltype['description']) . '</div>';
|
$page[] = '<div class="well">' . $parsedown->parse($angeltype['description']) . '</div>';
|
||||||
|
|
||||||
// Team-Coordinators list missing
|
// Team-Coordinators list missing
|
||||||
|
|
||||||
$coordinators = array();
|
$coordinators = array();
|
||||||
$members_confirmed = array();
|
$members_confirmed = array();
|
||||||
$members_unconfirmed = array();
|
$members_unconfirmed = array();
|
||||||
|
@ -95,7 +105,7 @@ function AngelType_view($angeltype, $members, $user_angeltype, $admin_user_angel
|
||||||
if ($angeltype['restricted'] && $member['confirm_user_id'] == null) {
|
if ($angeltype['restricted'] && $member['confirm_user_id'] == null) {
|
||||||
$member['actions'] = join(" ", array(
|
$member['actions'] = join(" ", array(
|
||||||
'<a href="' . page_link_to('user_angeltypes') . '&action=confirm&user_angeltype_id=' . $member['user_angeltype_id'] . '" class="ok">' . _("confirm") . '</a>',
|
'<a href="' . page_link_to('user_angeltypes') . '&action=confirm&user_angeltype_id=' . $member['user_angeltype_id'] . '" class="ok">' . _("confirm") . '</a>',
|
||||||
'<a href="' . page_link_to('user_angeltypes') . '&action=delete&user_angeltype_id=' . $member['user_angeltype_id'] . '" class="cancel">' . _("deny") . '</a>'
|
'<a href="' . page_link_to('user_angeltypes') . '&action=delete&user_angeltype_id=' . $member['user_angeltype_id'] . '" class="cancel">' . _("deny") . '</a>'
|
||||||
));
|
));
|
||||||
$members_unconfirmed[] = $member;
|
$members_unconfirmed[] = $member;
|
||||||
} elseif ($member['coordinator']) {
|
} elseif ($member['coordinator']) {
|
||||||
|
@ -108,7 +118,7 @@ function AngelType_view($angeltype, $members, $user_angeltype, $admin_user_angel
|
||||||
if ($admin_user_angeltypes)
|
if ($admin_user_angeltypes)
|
||||||
$member['actions'] = join(" ", array(
|
$member['actions'] = join(" ", array(
|
||||||
$admin_angeltypes ? '<a href="' . page_link_to('user_angeltypes') . '&action=update&user_angeltype_id=' . $member['user_angeltype_id'] . '&coordinator=1" class="add">' . _("Add coordinator rights") . '</a>' : '',
|
$admin_angeltypes ? '<a href="' . page_link_to('user_angeltypes') . '&action=update&user_angeltype_id=' . $member['user_angeltype_id'] . '&coordinator=1" class="add">' . _("Add coordinator rights") . '</a>' : '',
|
||||||
'<a href="' . page_link_to('user_angeltypes') . '&action=delete&user_angeltype_id=' . $member['user_angeltype_id'] . '" class="cancel">' . _("remove") . '</a>'
|
'<a href="' . page_link_to('user_angeltypes') . '&action=delete&user_angeltype_id=' . $member['user_angeltype_id'] . '" class="cancel">' . _("remove") . '</a>'
|
||||||
));
|
));
|
||||||
$members_confirmed[] = $member;
|
$members_confirmed[] = $member;
|
||||||
}
|
}
|
||||||
|
@ -118,74 +128,74 @@ function AngelType_view($angeltype, $members, $user_angeltype, $admin_user_angel
|
||||||
$page[] = table(array(
|
$page[] = table(array(
|
||||||
'Nick' => _("Nick"),
|
'Nick' => _("Nick"),
|
||||||
'DECT' => _("DECT"),
|
'DECT' => _("DECT"),
|
||||||
'actions' => ""
|
'actions' => ""
|
||||||
), $coordinators);
|
), $coordinators);
|
||||||
}
|
}
|
||||||
$page[] = '<h3>' . _("Members") . '</h3>';
|
$page[] = '<h3>' . _("Members") . '</h3>';
|
||||||
if ($admin_user_angeltypes)
|
if ($admin_user_angeltypes)
|
||||||
$page[] = buttons(array(
|
$page[] = buttons(array(
|
||||||
button(page_link_to('user_angeltypes') . '&action=add&angeltype_id=' . $angeltype['id'], _("Add"), 'add')
|
button(page_link_to('user_angeltypes') . '&action=add&angeltype_id=' . $angeltype['id'], _("Add"), 'add')
|
||||||
));
|
));
|
||||||
$page[] = table(array(
|
$page[] = table(array(
|
||||||
'Nick' => _("Nick"),
|
'Nick' => _("Nick"),
|
||||||
'DECT' => _("DECT"),
|
'DECT' => _("DECT"),
|
||||||
'actions' => ""
|
'actions' => ""
|
||||||
), $members_confirmed);
|
), $members_confirmed);
|
||||||
|
|
||||||
if ($admin_user_angeltypes && $angeltype['restricted'] && count($members_unconfirmed) > 0) {
|
if ($admin_user_angeltypes && $angeltype['restricted'] && count($members_unconfirmed) > 0) {
|
||||||
$page[] = '<h3>' . _("Unconfirmed") . '</h3>';
|
$page[] = '<h3>' . _("Unconfirmed") . '</h3>';
|
||||||
$page[] = buttons(array(
|
$page[] = buttons(array(
|
||||||
button(page_link_to('user_angeltypes') . '&action=confirm_all&angeltype_id=' . $angeltype['id'], _("confirm all"), 'ok'),
|
button(page_link_to('user_angeltypes') . '&action=confirm_all&angeltype_id=' . $angeltype['id'], _("confirm all"), 'ok'),
|
||||||
button(page_link_to('user_angeltypes') . '&action=delete_all&angeltype_id=' . $angeltype['id'], _("deny all"), 'cancel')
|
button(page_link_to('user_angeltypes') . '&action=delete_all&angeltype_id=' . $angeltype['id'], _("deny all"), 'cancel')
|
||||||
));
|
));
|
||||||
$page[] = table(array(
|
$page[] = table(array(
|
||||||
'Nick' => _("Nick"),
|
'Nick' => _("Nick"),
|
||||||
'DECT' => _("DECT"),
|
'DECT' => _("DECT"),
|
||||||
'actions' => ""
|
'actions' => ""
|
||||||
), $members_unconfirmed);
|
), $members_unconfirmed);
|
||||||
}
|
}
|
||||||
|
|
||||||
return page_with_title(sprintf(_("Team %s"), $angeltype['name']), $page);
|
return page_with_title(sprintf(_("Team %s"), $angeltype['name']), $page);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Display the list of angeltypes.
|
* Display the list of angeltypes.
|
||||||
*
|
*
|
||||||
* @param array $angeltypes
|
* @param array $angeltypes
|
||||||
*/
|
*/
|
||||||
function AngelTypes_list_view($angeltypes, $admin_angeltypes) {
|
function AngelTypes_list_view($angeltypes, $admin_angeltypes) {
|
||||||
return page_with_title(angeltypes_title(), array(
|
return page_with_title(angeltypes_title(), array(
|
||||||
msg(),
|
msg(),
|
||||||
buttons(array(
|
buttons(array(
|
||||||
$admin_angeltypes ? button(page_link_to('angeltypes') . '&action=edit', _("New angeltype"), 'add') : '',
|
$admin_angeltypes ? button(page_link_to('angeltypes') . '&action=edit', _("New angeltype"), 'add') : '',
|
||||||
button(page_link_to('angeltypes') . '&action=about', _("Teams/Job description"))
|
button(page_link_to('angeltypes') . '&action=about', _("Teams/Job description"))
|
||||||
)),
|
)),
|
||||||
table(array(
|
table(array(
|
||||||
'name' => _("Name"),
|
'name' => _("Name"),
|
||||||
'restricted' => glyph('lock') . _("Restricted"),
|
'restricted' => glyph('lock') . _("Restricted"),
|
||||||
'membership' => _("Membership"),
|
'membership' => _("Membership"),
|
||||||
'actions' => ""
|
'actions' => ""
|
||||||
), $angeltypes)
|
), $angeltypes)
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
function AngelTypes_about_view($angeltypes, $user_logged_in) {
|
function AngelTypes_about_view($angeltypes, $user_logged_in) {
|
||||||
global $faq_url;
|
global $faq_url;
|
||||||
|
|
||||||
$content = array(
|
$content = array(
|
||||||
buttons(array(
|
buttons(array(
|
||||||
! $user_logged_in ? button(page_link_to('register'), register_title()) : '',
|
! $user_logged_in ? button(page_link_to('register'), register_title()) : '',
|
||||||
! $user_logged_in ? button(page_link_to('login'), login_title()) : '',
|
! $user_logged_in ? button(page_link_to('login'), login_title()) : '',
|
||||||
$user_logged_in ? button(page_link_to('angeltypes'), angeltypes_title(), 'back') : '',
|
$user_logged_in ? button(page_link_to('angeltypes'), angeltypes_title(), 'back') : '',
|
||||||
button($faq_url, _("FAQ"), "btn-primary")
|
button($faq_url, _("FAQ"), "btn-primary")
|
||||||
)),
|
)),
|
||||||
'<p>' . _("Here is the list of teams and their tasks. If you have questions, read the FAQ.") . '</p>',
|
'<p>' . _("Here is the list of teams and their tasks. If you have questions, read the FAQ.") . '</p>',
|
||||||
'<hr />'
|
'<hr />'
|
||||||
);
|
);
|
||||||
$parsedown = new Parsedown();
|
$parsedown = new Parsedown();
|
||||||
foreach ($angeltypes as $angeltype) {
|
foreach ($angeltypes as $angeltype) {
|
||||||
$content[] = '<h2>' . $angeltype['name'] . '</h2>';
|
$content[] = '<h2>' . $angeltype['name'] . '</h2>';
|
||||||
|
|
||||||
if (isset($angeltype['user_angeltype_id'])) {
|
if (isset($angeltype['user_angeltype_id'])) {
|
||||||
$buttons = array();
|
$buttons = array();
|
||||||
if ($angeltype['user_angeltype_id'] != null)
|
if ($angeltype['user_angeltype_id'] != null)
|
||||||
|
@ -194,14 +204,14 @@ function AngelTypes_about_view($angeltypes, $user_logged_in) {
|
||||||
$buttons[] = button(page_link_to('user_angeltypes') . '&action=add&angeltype_id=' . $angeltype['id'], _("join"), 'add');
|
$buttons[] = button(page_link_to('user_angeltypes') . '&action=add&angeltype_id=' . $angeltype['id'], _("join"), 'add');
|
||||||
$content[] = buttons($buttons);
|
$content[] = buttons($buttons);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($angeltype['restricted'])
|
if ($angeltype['restricted'])
|
||||||
$content[] = info(_("This angeltype is restricted by double-opt-in by a team coordinator. Please show up at the according introduction meetings."), true);
|
$content[] = info(_("This angeltype is restricted by double-opt-in by a team coordinator. Please show up at the according introduction meetings."), true);
|
||||||
if ($angeltype['description'] != "")
|
if ($angeltype['description'] != "")
|
||||||
$content[] = '<div class="well">' . $parsedown->parse($angeltype['description']) . '</div>';
|
$content[] = '<div class="well">' . $parsedown->parse($angeltype['description']) . '</div>';
|
||||||
$content[] = '<hr />';
|
$content[] = '<hr />';
|
||||||
}
|
}
|
||||||
|
|
||||||
return page_with_title(_("Teams/Job description"), $content);
|
return page_with_title(_("Teams/Job description"), $content);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
function Room_name_render($room) {
|
||||||
|
global $privileges;
|
||||||
|
if (in_array('admin_rooms', $privileges))
|
||||||
|
return '<a href="' . room_link($room) . '">' . glyph('map-marker') . $room['Name'] . '</a>';
|
||||||
|
return $room['Name'];
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,80 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
function ShiftType_name_render($shifttype) {
|
||||||
|
global $privileges;
|
||||||
|
if (in_array('shifttypes', $privileges))
|
||||||
|
return '<a href="' . shifttype_link($shifttype) . '">' . $shifttype['name'] . '</a>';
|
||||||
|
return $shifttype['name'];
|
||||||
|
}
|
||||||
|
|
||||||
|
function ShiftType_delete_view($shifttype) {
|
||||||
|
return page_with_title(sprintf(_("Delete shifttype %s"), $shifttype['name']), array(
|
||||||
|
info(sprintf(_("Do you want to delete shifttype %s?"), $shifttype['name']), true),
|
||||||
|
buttons(array(
|
||||||
|
button(page_link_to('shifttypes'), _("cancel"), 'cancel'),
|
||||||
|
button(page_link_to('shifttypes') . '&action=delete&shifttype_id=' . $shifttype['id'] . '&confirmed', _("delete"), 'ok')
|
||||||
|
))
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
function ShiftType_edit_view($name, $angeltype_id, $angeltypes, $description, $shifttype_id) {
|
||||||
|
$angeltypes_select = [
|
||||||
|
'' => _('All')
|
||||||
|
];
|
||||||
|
foreach ($angeltypes as $angeltype)
|
||||||
|
$angeltypes_select[$angeltype['id']] = $angeltype['name'];
|
||||||
|
|
||||||
|
return page_with_title($shifttype_id ? _('Edit shifttype') : _('Create shifttype'), [
|
||||||
|
msg(),
|
||||||
|
buttons([
|
||||||
|
button(page_link_to('shifttypes'), shifttypes_title(), 'back')
|
||||||
|
]),
|
||||||
|
form([
|
||||||
|
form_text('name', _('Name'), $name),
|
||||||
|
form_select('angeltype_id', _('Angeltype'), $angeltypes_select, $angeltype_id),
|
||||||
|
form_textarea('description', _('Description'), $description),
|
||||||
|
form_info('', _('Please use markdown for the description.')),
|
||||||
|
form_submit('submit', _('Save'))
|
||||||
|
])
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
function ShiftType_view($shifttype, $angeltype) {
|
||||||
|
$parsedown = new Parsedown();
|
||||||
|
$title = $shifttype['name'];
|
||||||
|
if ($angeltype)
|
||||||
|
$title .= ' <small>' . sprintf(_('for team %s'), $angeltype['name']) . '</small>';
|
||||||
|
return page_with_title($title, [
|
||||||
|
msg(),
|
||||||
|
buttons([
|
||||||
|
button(page_link_to('shifttypes'), shifttypes_title(), 'back'),
|
||||||
|
$angeltype ? button(page_link_to('angeltypes') . '&action=view&angeltype_id=' . $angeltype['id'], $angeltype['name']) : '',
|
||||||
|
button(page_link_to('shifttypes') . '&action=edit&shifttype_id=' . $shifttype['id'], _('edit'), 'edit'),
|
||||||
|
button(page_link_to('shifttypes') . '&action=delete&shifttype_id=' . $shifttype['id'], _('delete'), 'delete')
|
||||||
|
]),
|
||||||
|
$parsedown->parse($shifttype['description'])
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
function ShiftTypes_list_view($shifttypes) {
|
||||||
|
foreach ($shifttypes as &$shifttype) {
|
||||||
|
$shifttype['name'] = '<a href="' . page_link_to('shifttypes') . '&action=view&shifttype_id=' . $shifttype['id'] . '">' . $shifttype['name'] . '</a>';
|
||||||
|
$shifttype['actions'] = table_buttons([
|
||||||
|
button(page_link_to('shifttypes') . '&action=edit&shifttype_id=' . $shifttype['id'], _('edit'), 'btn-xs'),
|
||||||
|
button(page_link_to('shifttypes') . '&action=delete&shifttype_id=' . $shifttype['id'], _('delete'), 'btn-xs')
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return page_with_title(shifttypes_title(), [
|
||||||
|
msg(),
|
||||||
|
buttons([
|
||||||
|
button(page_link_to('shifttypes') . '&action=edit', _('New shifttype'), 'add')
|
||||||
|
]),
|
||||||
|
table([
|
||||||
|
'name' => _('Name'),
|
||||||
|
'actions' => ''
|
||||||
|
], $shifttypes)
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
|
@ -1,7 +1,117 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
function Shift_signup_button_render($shift, $angeltype, $user_angeltype = null, $user_shifts = null) {
|
||||||
|
global $user;
|
||||||
|
|
||||||
|
if ($user_angeltype == null) {
|
||||||
|
$user_angeltype = UserAngelType_by_User_and_AngelType($user, $angeltype);
|
||||||
|
if ($user_angeltype === false)
|
||||||
|
engelsystem_error('Unable to load user angeltype.');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Shift_signup_allowed($shift, $angeltype, $user_angeltype, $user_shifts))
|
||||||
|
return button(page_link_to('user_shifts') . '&shift_id=' . $shift['SID'] . '&type_id=' . $angeltype['id'], _('Sign up'));
|
||||||
|
elseif ($user_angeltype == null)
|
||||||
|
return button(page_link_to('angeltypes') . '&action=view&angeltype_id=' . $angeltype['id'], sprintf('Become %s', $angeltype['name']));
|
||||||
|
else
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
function Shift_view($shift, $shifttype, $room, $shift_admin, $angeltypes_source, $user_shift_admin, $admin_rooms, $admin_shifttypes, $user_shifts, $signed_up) {
|
||||||
|
$parsedown = new Parsedown();
|
||||||
|
|
||||||
|
$angeltypes = [];
|
||||||
|
foreach ($angeltypes_source as $angeltype)
|
||||||
|
$angeltypes[$angeltype['id']] = $angeltype;
|
||||||
|
|
||||||
|
$needed_angels = '';
|
||||||
|
foreach ($shift['NeedAngels'] as $needed_angeltype) {
|
||||||
|
$class = 'progress-bar-warning';
|
||||||
|
if ($needed_angeltype['taken'] == 0)
|
||||||
|
$class = 'progress-bar-danger';
|
||||||
|
if ($needed_angeltype['taken'] >= $needed_angeltype['count'])
|
||||||
|
$class = 'progress-bar-success';
|
||||||
|
$needed_angels .= '<div class="list-group-item">';
|
||||||
|
|
||||||
|
$needed_angels .= '<div class="pull-right">' . Shift_signup_button_render($shift, $angeltypes[$needed_angeltype['TID']]) . '</div>';
|
||||||
|
|
||||||
|
$needed_angels .= '<h3>' . AngelType_name_render($angeltypes[$needed_angeltype['TID']]) . '</h3>';
|
||||||
|
$needed_angels .= progress_bar(0, $needed_angeltype['count'], $needed_angeltype['taken'], $class, $needed_angeltype['taken'] . ' / ' . $needed_angeltype['count']);
|
||||||
|
|
||||||
|
$angels = [];
|
||||||
|
foreach ($shift['ShiftEntry'] as $shift_entry) {
|
||||||
|
if ($shift_entry['TID'] == $needed_angeltype['TID']) {
|
||||||
|
$entry = User_Nick_render(User($shift_entry['UID']));
|
||||||
|
if ($shift_entry['freeloaded'])
|
||||||
|
$entry = '<strike>' . $entry . '</strike>';
|
||||||
|
if ($user_shift_admin) {
|
||||||
|
$entry .= ' <div class="btn-group">';
|
||||||
|
$entry .= button_glyph(page_link_to('user_myshifts') . '&edit=' . $shift['SID'] . '&id=' . $shift_entry['UID'], 'pencil', 'btn-xs');
|
||||||
|
$entry .= button_glyph(page_link_to('user_shifts') . '&entry_id=' . $shift_entry['id'], 'trash', 'btn-xs');
|
||||||
|
$entry .= '</div>';
|
||||||
|
}
|
||||||
|
$angels[] = $entry;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$needed_angels .= join(', ', $angels);
|
||||||
|
|
||||||
|
$needed_angels .= '</div>';
|
||||||
|
}
|
||||||
|
|
||||||
|
return page_with_title($shift['name'] . ' <small class="moment-countdown" data-timestamp="' . $shift['start'] . '">%c</small>', [
|
||||||
|
msg(),
|
||||||
|
Shift_collides($shift, $user_shifts) ? info(_('This shift collides with one of your shifts.'), true) : '',
|
||||||
|
$signed_up ? info(_('You are signed up for this shift.'), true) : '',
|
||||||
|
($shift_admin || $admin_shifttypes || $admin_rooms) ? buttons([
|
||||||
|
$shift_admin ? button(shift_edit_link($shift), glyph('pencil') . _('edit')) : '',
|
||||||
|
$shift_admin ? button(shift_delete_link($shift), glyph('trash') . _('delete')) : '',
|
||||||
|
$admin_shifttypes ? button(shifttype_link($shifttype), $shifttype['name']) : '',
|
||||||
|
$admin_rooms ? button(room_link($room), glyph('map-marker') . $room['Name']) : ''
|
||||||
|
]) : '',
|
||||||
|
div('row', [
|
||||||
|
div('col-sm-3 col-xs-6', [
|
||||||
|
'<h4>' . _('Title') . '</h4>',
|
||||||
|
'<p class="lead">' . ($shift['URL'] != '' ? '<a href="' . $shift['URL'] . '">' . $shift['title'] . '</a>' : $shift['title']) . '</p>'
|
||||||
|
]),
|
||||||
|
div('col-sm-3 col-xs-6', [
|
||||||
|
'<h4>' . _('Start') . '</h4>',
|
||||||
|
'<p class="lead' . (time() >= $shift['start'] ? ' text-success' : '') . '">',
|
||||||
|
glyph('calendar') . date('y-m-d', $shift['start']),
|
||||||
|
'<br />',
|
||||||
|
glyph('time') . date('H:i', $shift['start']),
|
||||||
|
'</p>'
|
||||||
|
]),
|
||||||
|
div('col-sm-3 col-xs-6', [
|
||||||
|
'<h4>' . _('End') . '</h4>',
|
||||||
|
'<p class="lead' . (time() >= $shift['end'] ? ' text-success' : '') . '">',
|
||||||
|
glyph('calendar') . date('y-m-d', $shift['end']),
|
||||||
|
'<br />',
|
||||||
|
glyph('time') . date('H:i', $shift['end']),
|
||||||
|
'</p>'
|
||||||
|
]),
|
||||||
|
div('col-sm-3 col-xs-6', [
|
||||||
|
'<h4>' . _('Location') . '</h4>',
|
||||||
|
'<p class="lead">' . glyph('map-marker') . $room['Name'] . '</p>'
|
||||||
|
])
|
||||||
|
]),
|
||||||
|
div('row', [
|
||||||
|
div('col-sm-6', [
|
||||||
|
'<h2>' . _('Needed angels') . '</h2>',
|
||||||
|
'<div class="list-group">' . $needed_angels . '</div>'
|
||||||
|
]),
|
||||||
|
div('col-sm-6', [
|
||||||
|
'<h2>' . _('Description') . '</h2>',
|
||||||
|
$parsedown->parse($shifttype['description'])
|
||||||
|
])
|
||||||
|
])
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Calc shift length in format 12:23h.
|
* Calc shift length in format 12:23h.
|
||||||
* @param Shift $shift
|
*
|
||||||
|
* @param Shift $shift
|
||||||
*/
|
*/
|
||||||
function shift_length($shift) {
|
function shift_length($shift) {
|
||||||
$length = floor(($shift['end'] - $shift['start']) / (60 * 60)) . ":";
|
$length = floor(($shift['end'] - $shift['start']) / (60 * 60)) . ":";
|
||||||
|
|
|
@ -16,7 +16,7 @@ $tshirt_sizes = array(
|
||||||
'S-G' => "S Girl",
|
'S-G' => "S Girl",
|
||||||
'M-G' => "M Girl",
|
'M-G' => "M Girl",
|
||||||
'L-G' => "L Girl",
|
'L-G' => "L Girl",
|
||||||
'XL-G' => "XL Girl"
|
'XL-G' => "XL Girl"
|
||||||
);
|
);
|
||||||
|
|
||||||
function Users_view($users, $order_by, $arrived_count, $active_count, $force_active_count, $freeloads_count, $tshirts_count) {
|
function Users_view($users, $order_by, $arrived_count, $active_count, $force_active_count, $freeloads_count, $tshirts_count) {
|
||||||
|
@ -28,7 +28,7 @@ function Users_view($users, $order_by, $arrived_count, $active_count, $force_act
|
||||||
$user['Tshirt'] = glyph_bool($user['Tshirt']);
|
$user['Tshirt'] = glyph_bool($user['Tshirt']);
|
||||||
$user['lastLogIn'] = date(_('m/d/Y h:i a'), $user['lastLogIn']);
|
$user['lastLogIn'] = date(_('m/d/Y h:i a'), $user['lastLogIn']);
|
||||||
$user['actions'] = table_buttons(array(
|
$user['actions'] = table_buttons(array(
|
||||||
button_glyph(page_link_to('admin_user') . '&id=' . $user['UID'], 'edit', 'btn-xs')
|
button_glyph(page_link_to('admin_user') . '&id=' . $user['UID'], 'edit', 'btn-xs')
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
$users[] = array(
|
$users[] = array(
|
||||||
|
@ -38,13 +38,13 @@ function Users_view($users, $order_by, $arrived_count, $active_count, $force_act
|
||||||
'force_active' => $force_active_count,
|
'force_active' => $force_active_count,
|
||||||
'freeloads' => $freeloads_count,
|
'freeloads' => $freeloads_count,
|
||||||
'Tshirt' => $tshirts_count,
|
'Tshirt' => $tshirts_count,
|
||||||
'actions' => '<strong>' . count($users) . '</strong>'
|
'actions' => '<strong>' . count($users) . '</strong>'
|
||||||
);
|
);
|
||||||
|
|
||||||
return page_with_title(_('All users'), array(
|
return page_with_title(_('All users'), array(
|
||||||
msg(),
|
msg(),
|
||||||
buttons(array(
|
buttons(array(
|
||||||
button(page_link_to('register'), glyph('plus') . _('New user'))
|
button(page_link_to('register'), glyph('plus') . _('New user'))
|
||||||
)),
|
)),
|
||||||
table(array(
|
table(array(
|
||||||
'Nick' => Users_table_header_link('Nick', _('Nick'), $order_by),
|
'Nick' => Users_table_header_link('Nick', _('Nick'), $order_by),
|
||||||
|
@ -58,8 +58,8 @@ function Users_view($users, $order_by, $arrived_count, $active_count, $force_act
|
||||||
'Tshirt' => Users_table_header_link('Tshirt', _('T-Shirt'), $order_by),
|
'Tshirt' => Users_table_header_link('Tshirt', _('T-Shirt'), $order_by),
|
||||||
'Size' => Users_table_header_link('Size', _('Size'), $order_by),
|
'Size' => Users_table_header_link('Size', _('Size'), $order_by),
|
||||||
'lastLogIn' => Users_table_header_link('lastLogIn', _('Last login'), $order_by),
|
'lastLogIn' => Users_table_header_link('lastLogIn', _('Last login'), $order_by),
|
||||||
'actions' => ''
|
'actions' => ''
|
||||||
), $users)
|
), $users)
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,18 +71,18 @@ function User_shift_state_render($user) {
|
||||||
$upcoming_shifts = ShiftEntries_upcoming_for_user($user);
|
$upcoming_shifts = ShiftEntries_upcoming_for_user($user);
|
||||||
if ($upcoming_shifts === false)
|
if ($upcoming_shifts === false)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (count($upcoming_shifts) == 0)
|
if (count($upcoming_shifts) == 0)
|
||||||
return '<span class="text-success">' . _("Free") . '</span>';
|
return '<span class="text-success">' . _("Free") . '</span>';
|
||||||
|
|
||||||
if ($upcoming_shifts[0]['start'] > time())
|
if ($upcoming_shifts[0]['start'] > time())
|
||||||
if ($upcoming_shifts[0]['start'] - time() > 3600)
|
if ($upcoming_shifts[0]['start'] - time() > 3600)
|
||||||
return '<span class="text-success moment-countdown" data-timestamp="' . $upcoming_shifts[0]['start'] . '">' . _("Next shift %c") . '</span>';
|
return '<span class="text-success moment-countdown" data-timestamp="' . $upcoming_shifts[0]['start'] . '">' . _("Next shift %c") . '</span>';
|
||||||
else
|
else
|
||||||
return '<span class="text-warning moment-countdown" data-timestamp="' . $upcoming_shifts[0]['start'] . '">' . _("Next shift %c") . '</span>';
|
return '<span class="text-warning moment-countdown" data-timestamp="' . $upcoming_shifts[0]['start'] . '">' . _("Next shift %c") . '</span>';
|
||||||
|
|
||||||
$halfway = ($upcoming_shifts[0]['start'] + $upcoming_shifts[0]['end']) / 2;
|
$halfway = ($upcoming_shifts[0]['start'] + $upcoming_shifts[0]['end']) / 2;
|
||||||
|
|
||||||
if (time() < $halfway)
|
if (time() < $halfway)
|
||||||
return '<span class="text-danger moment-countdown" data-timestamp="' . $upcoming_shifts[0]['start'] . '">' . _("Shift starts %c") . '</span>';
|
return '<span class="text-danger moment-countdown" data-timestamp="' . $upcoming_shifts[0]['start'] . '">' . _("Shift starts %c") . '</span>';
|
||||||
else
|
else
|
||||||
|
@ -91,17 +91,19 @@ function User_shift_state_render($user) {
|
||||||
|
|
||||||
function User_view($user_source, $admin_user_privilege, $freeloader, $user_angeltypes, $user_groups, $shifts, $its_me) {
|
function User_view($user_source, $admin_user_privilege, $freeloader, $user_angeltypes, $user_groups, $shifts, $its_me) {
|
||||||
global $LETZTES_AUSTRAGEN, $privileges;
|
global $LETZTES_AUSTRAGEN, $privileges;
|
||||||
|
|
||||||
$user_name = htmlspecialchars($user_source['Vorname']) . " " . htmlspecialchars($user_source['Name']);
|
$user_name = htmlspecialchars($user_source['Vorname']) . " " . htmlspecialchars($user_source['Name']);
|
||||||
|
|
||||||
$myshifts_table = array();
|
$myshifts_table = array();
|
||||||
$html = "";
|
$html = "";
|
||||||
$timesum = 0;
|
$timesum = 0;
|
||||||
foreach ($shifts as $shift) {
|
foreach ($shifts as $shift) {
|
||||||
$shift_info = $shift['name'];
|
$shift_info = '<a href="' . shift_link($shift) . '">' . $shift['name'] . '</a>';
|
||||||
|
if ($shift['title'])
|
||||||
|
$shift_info .= '<br /><a href="' . shift_link($shift) . '">' . $shift['title'] . '</a>';
|
||||||
foreach ($shift['needed_angeltypes'] as $needed_angel_type) {
|
foreach ($shift['needed_angeltypes'] as $needed_angel_type) {
|
||||||
$shift_info .= '<br><b>' . $needed_angel_type['name'] . ':</b> ';
|
$shift_info .= '<br><b>' . $needed_angel_type['name'] . ':</b> ';
|
||||||
|
|
||||||
$shift_entries = array();
|
$shift_entries = array();
|
||||||
foreach ($needed_angel_type['users'] as $user_shift) {
|
foreach ($needed_angel_type['users'] as $user_shift) {
|
||||||
if ($its_me)
|
if ($its_me)
|
||||||
|
@ -110,34 +112,36 @@ function User_view($user_source, $admin_user_privilege, $freeloader, $user_angel
|
||||||
$member = User_Nick_render($user_shift);
|
$member = User_Nick_render($user_shift);
|
||||||
if ($user_shift['freeloaded'])
|
if ($user_shift['freeloaded'])
|
||||||
$member = '<strike>' . $member . '</strike>';
|
$member = '<strike>' . $member . '</strike>';
|
||||||
|
|
||||||
$shift_entries[] = $member;
|
$shift_entries[] = $member;
|
||||||
}
|
}
|
||||||
$shift_info .= join(", ", $shift_entries);
|
$shift_info .= join(", ", $shift_entries);
|
||||||
}
|
}
|
||||||
|
|
||||||
$myshift = array(
|
$myshift = array(
|
||||||
'date' => date("Y-m-d", $shift['start']),
|
'date' => date("Y-m-d", $shift['start']),
|
||||||
'time' => date("H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']),
|
'time' => date("H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']),
|
||||||
'room' => $shift['Name'],
|
'room' => $shift['Name'],
|
||||||
'shift_info' => $shift_info,
|
'shift_info' => $shift_info,
|
||||||
'comment' => $shift['Comment']
|
'comment' => $shift['Comment']
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($shift['freeloaded']) {
|
if ($shift['freeloaded']) {
|
||||||
if (in_array("user_shifts_admin", $privileges))
|
if (in_array("user_shifts_admin", $privileges))
|
||||||
$myshift['comment'] .= '<br /><p class="error">' . _("Freeloaded") . ': ' . $shift['freeload_comment'] . '</p>';
|
$myshift['comment'] .= '<br /><p class="error">' . _("Freeloaded") . ': ' . $shift['freeload_comment'] . '</p>';
|
||||||
else
|
else
|
||||||
$myshift['comment'] .= '<br /><p class="error">' . _("Freeloaded") . '</p>';
|
$myshift['comment'] .= '<br /><p class="error">' . _("Freeloaded") . '</p>';
|
||||||
}
|
}
|
||||||
|
|
||||||
$myshift['actions'] = array();
|
$myshift['actions'] = [
|
||||||
|
button(shift_link($shift), glyph('eye-open') . _('view'), 'btn-xs')
|
||||||
|
];
|
||||||
if ($its_me || in_array('user_shifts_admin', $privileges))
|
if ($its_me || in_array('user_shifts_admin', $privileges))
|
||||||
$myshift['actions'][] = button(page_link_to('user_myshifts') . '&edit=' . $shift['id'] . '&id=' . $user_source['UID'], glyph('edit') . _('edit'), 'btn-xs');
|
$myshift['actions'][] = button(page_link_to('user_myshifts') . '&edit=' . $shift['id'] . '&id=' . $user_source['UID'], glyph('edit') . _('edit'), 'btn-xs');
|
||||||
if (($shift['start'] > time() + $LETZTES_AUSTRAGEN * 3600) || in_array('user_shifts_admin', $privileges))
|
if (($shift['start'] > time() + $LETZTES_AUSTRAGEN * 3600) || in_array('user_shifts_admin', $privileges))
|
||||||
$myshift['actions'][] = button(page_link_to('user_myshifts') . ((! $its_me) ? '&id=' . $user_source['UID'] : '') . '&cancel=' . $shift['id'], glyph('trash') . _('sign off'), 'btn-xs');
|
$myshift['actions'][] = button(page_link_to('user_myshifts') . ((! $its_me) ? '&id=' . $user_source['UID'] : '') . '&cancel=' . $shift['id'], glyph('trash') . _('sign off'), 'btn-xs');
|
||||||
$myshift['actions'] = table_buttons($myshift['actions']);
|
$myshift['actions'] = table_buttons($myshift['actions']);
|
||||||
|
|
||||||
if ($shift['freeloaded'])
|
if ($shift['freeloaded'])
|
||||||
$timesum += - 2 * ($shift['end'] - $shift['start']);
|
$timesum += - 2 * ($shift['end'] - $shift['start']);
|
||||||
else
|
else
|
||||||
|
@ -151,9 +155,9 @@ function User_view($user_source, $admin_user_privilege, $freeloader, $user_angel
|
||||||
'room' => "",
|
'room' => "",
|
||||||
'shift_info' => "",
|
'shift_info' => "",
|
||||||
'comment' => "",
|
'comment' => "",
|
||||||
'actions' => ""
|
'actions' => ""
|
||||||
);
|
);
|
||||||
|
|
||||||
return page_with_title('<span class="icon-icon_angel"></span> ' . htmlspecialchars($user_source['Nick']) . ' <small>' . $user_name . '</small>', array(
|
return page_with_title('<span class="icon-icon_angel"></span> ' . htmlspecialchars($user_source['Nick']) . ' <small>' . $user_name . '</small>', array(
|
||||||
msg(),
|
msg(),
|
||||||
div('row', array(
|
div('row', array(
|
||||||
|
@ -161,7 +165,7 @@ function User_view($user_source, $admin_user_privilege, $freeloader, $user_angel
|
||||||
'<h1>',
|
'<h1>',
|
||||||
'<span class="glyphicon glyphicon-phone"></span>',
|
'<span class="glyphicon glyphicon-phone"></span>',
|
||||||
$user_source['DECT'],
|
$user_source['DECT'],
|
||||||
'</h1>'
|
'</h1>'
|
||||||
)),
|
)),
|
||||||
div('col-md-3', array(
|
div('col-md-3', array(
|
||||||
'<h4>' . _("User state") . '</h4>',
|
'<h4>' . _("User state") . '</h4>',
|
||||||
|
@ -169,28 +173,28 @@ function User_view($user_source, $admin_user_privilege, $freeloader, $user_angel
|
||||||
$user_source['Gekommen'] ? User_shift_state_render($user_source) . '<br />' : '',
|
$user_source['Gekommen'] ? User_shift_state_render($user_source) . '<br />' : '',
|
||||||
($user_source['Gekommen'] ? '<span class="text-success"><span class="glyphicon glyphicon-home"></span> ' . _("Arrived") . '</span>' : '<span class="text-danger">' . _("Not arrived") . '</span>'),
|
($user_source['Gekommen'] ? '<span class="text-success"><span class="glyphicon glyphicon-home"></span> ' . _("Arrived") . '</span>' : '<span class="text-danger">' . _("Not arrived") . '</span>'),
|
||||||
($user_source['Gekommen'] && $admin_user_privilege && $user_source['Aktiv']) ? ' <span class="text-success">' . _("Active") . '</span>' : '',
|
($user_source['Gekommen'] && $admin_user_privilege && $user_source['Aktiv']) ? ' <span class="text-success">' . _("Active") . '</span>' : '',
|
||||||
($user_source['Gekommen'] && $admin_user_privilege && $user_source['Tshirt']) ? ' <span class="text-success">' . _("T-Shirt") . '</span>' : ''
|
($user_source['Gekommen'] && $admin_user_privilege && $user_source['Tshirt']) ? ' <span class="text-success">' . _("T-Shirt") . '</span>' : ''
|
||||||
)),
|
)),
|
||||||
div('col-md-3', array(
|
div('col-md-3', array(
|
||||||
'<h4>' . _("Angeltypes") . '</h4>',
|
'<h4>' . _("Angeltypes") . '</h4>',
|
||||||
User_angeltypes_render($user_angeltypes)
|
User_angeltypes_render($user_angeltypes)
|
||||||
)),
|
)),
|
||||||
div('col-md-3', array(
|
div('col-md-3', array(
|
||||||
'<h4>' . _("Rights") . '</h4>',
|
'<h4>' . _("Rights") . '</h4>',
|
||||||
User_groups_render($user_groups)
|
User_groups_render($user_groups)
|
||||||
))
|
))
|
||||||
)),
|
)),
|
||||||
div('row space-top', array(
|
div('row space-top', array(
|
||||||
div('col-md-12', array(
|
div('col-md-12', array(
|
||||||
buttons(array(
|
buttons(array(
|
||||||
$admin_user_privilege ? button(page_link_to('admin_user') . '&id=' . $user_source['UID'], glyph("edit") . _("edit")) : '',
|
$admin_user_privilege ? button(page_link_to('admin_user') . '&id=' . $user_source['UID'], glyph("edit") . _("edit")) : '',
|
||||||
($admin_user_privilege && !$user_source['Gekommen']) ? button(page_link_to('admin_arrive') . '&arrived=' . $user_source['UID'], _("arrived")) : '',
|
($admin_user_privilege && ! $user_source['Gekommen']) ? button(page_link_to('admin_arrive') . '&arrived=' . $user_source['UID'], _("arrived")) : '',
|
||||||
$its_me ? button(page_link_to('user_settings'), glyph('list-alt') . _("Settings")) : '',
|
$its_me ? button(page_link_to('user_settings'), glyph('list-alt') . _("Settings")) : '',
|
||||||
$its_me ? button(page_link_to('ical') . '&key=' . $user_source['api_key'], glyph('calendar') . _("iCal Export")) : '',
|
$its_me ? button(page_link_to('ical') . '&key=' . $user_source['api_key'], glyph('calendar') . _("iCal Export")) : '',
|
||||||
$its_me ? button(page_link_to('shifts_json_export') . '&key=' . $user_source['api_key'], glyph('export') . _("JSON Export")) : '',
|
$its_me ? button(page_link_to('shifts_json_export') . '&key=' . $user_source['api_key'], glyph('export') . _("JSON Export")) : '',
|
||||||
$its_me ? button(page_link_to('user_myshifts') . '&reset', glyph('repeat') . _('Reset API key')) : ''
|
$its_me ? button(page_link_to('user_myshifts') . '&reset', glyph('repeat') . _('Reset API key')) : ''
|
||||||
))
|
))
|
||||||
))
|
))
|
||||||
)),
|
)),
|
||||||
($its_me || $admin_user_privilege) ? '<h2>' . _("Shifts") . '</h2>' : '',
|
($its_me || $admin_user_privilege) ? '<h2>' . _("Shifts") . '</h2>' : '',
|
||||||
($its_me || $admin_user_privilege) ? table(array(
|
($its_me || $admin_user_privilege) ? table(array(
|
||||||
|
@ -199,9 +203,9 @@ function User_view($user_source, $admin_user_privilege, $freeloader, $user_angel
|
||||||
'room' => _("Location"),
|
'room' => _("Location"),
|
||||||
'shift_info' => _("Name & workmates"),
|
'shift_info' => _("Name & workmates"),
|
||||||
'comment' => _("Comment"),
|
'comment' => _("Comment"),
|
||||||
'actions' => _("Action")
|
'actions' => _("Action")
|
||||||
), $myshifts_table) : '',
|
), $myshifts_table) : '',
|
||||||
$its_me && count($shifts) == 0 ? error(sprintf(_("Go to the <a href=\"%s\">shifts table</a> to sign yourself up for some shifts."), page_link_to('user_shifts')), true) : ''
|
$its_me && count($shifts) == 0 ? error(sprintf(_("Go to the <a href=\"%s\">shifts table</a> to sign yourself up for some shifts."), page_link_to('user_shifts')), true) : ''
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -214,8 +218,8 @@ function User_password_recovery_view() {
|
||||||
_("We will send you an e-mail with a password recovery link. Please use the email address you used for registration."),
|
_("We will send you an e-mail with a password recovery link. Please use the email address you used for registration."),
|
||||||
form(array(
|
form(array(
|
||||||
form_text('email', _("E-Mail"), ""),
|
form_text('email', _("E-Mail"), ""),
|
||||||
form_submit('submit', _("Recover"))
|
form_submit('submit', _("Recover"))
|
||||||
))
|
))
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -229,8 +233,8 @@ function User_password_set_view() {
|
||||||
form(array(
|
form(array(
|
||||||
form_password('password', _("Password")),
|
form_password('password', _("Password")),
|
||||||
form_password('password2', _("Confirm password")),
|
form_password('password2', _("Confirm password")),
|
||||||
form_submit('submit', _("Save"))
|
form_submit('submit', _("Save"))
|
||||||
))
|
))
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -261,7 +265,7 @@ function User_groups_render($user_groups) {
|
||||||
/**
|
/**
|
||||||
* Render a users avatar.
|
* Render a users avatar.
|
||||||
*
|
*
|
||||||
* @param User $user
|
* @param User $user
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
function User_Avatar_render($user) {
|
function User_Avatar_render($user) {
|
||||||
|
@ -271,7 +275,7 @@ function User_Avatar_render($user) {
|
||||||
/**
|
/**
|
||||||
* Render a user nickname.
|
* Render a user nickname.
|
||||||
*
|
*
|
||||||
* @param User $user_source
|
* @param User $user_source
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
function User_Nick_render($user_source) {
|
function User_Nick_render($user_source) {
|
||||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -15,18 +15,24 @@ require_once realpath(__DIR__ . '/../includes/model/NeededAngelTypes_model.php')
|
||||||
require_once realpath(__DIR__ . '/../includes/model/Room_model.php');
|
require_once realpath(__DIR__ . '/../includes/model/Room_model.php');
|
||||||
require_once realpath(__DIR__ . '/../includes/model/ShiftEntry_model.php');
|
require_once realpath(__DIR__ . '/../includes/model/ShiftEntry_model.php');
|
||||||
require_once realpath(__DIR__ . '/../includes/model/Shifts_model.php');
|
require_once realpath(__DIR__ . '/../includes/model/Shifts_model.php');
|
||||||
|
require_once realpath(__DIR__ . '/../includes/model/ShiftTypes_model.php');
|
||||||
require_once realpath(__DIR__ . '/../includes/model/UserAngelTypes_model.php');
|
require_once realpath(__DIR__ . '/../includes/model/UserAngelTypes_model.php');
|
||||||
require_once realpath(__DIR__ . '/../includes/model/UserGroups_model.php');
|
require_once realpath(__DIR__ . '/../includes/model/UserGroups_model.php');
|
||||||
require_once realpath(__DIR__ . '/../includes/model/User_model.php');
|
require_once realpath(__DIR__ . '/../includes/model/User_model.php');
|
||||||
|
|
||||||
require_once realpath(__DIR__ . '/../includes/view/AngelTypes_view.php');
|
require_once realpath(__DIR__ . '/../includes/view/AngelTypes_view.php');
|
||||||
require_once realpath(__DIR__ . '/../includes/view/Questions_view.php');
|
require_once realpath(__DIR__ . '/../includes/view/Questions_view.php');
|
||||||
|
require_once realpath(__DIR__ . '/../includes/view/Rooms_view.php');
|
||||||
require_once realpath(__DIR__ . '/../includes/view/Shifts_view.php');
|
require_once realpath(__DIR__ . '/../includes/view/Shifts_view.php');
|
||||||
require_once realpath(__DIR__ . '/../includes/view/ShiftEntry_view.php');
|
require_once realpath(__DIR__ . '/../includes/view/ShiftEntry_view.php');
|
||||||
|
require_once realpath(__DIR__ . '/../includes/view/ShiftTypes_view.php');
|
||||||
require_once realpath(__DIR__ . '/../includes/view/UserAngelTypes_view.php');
|
require_once realpath(__DIR__ . '/../includes/view/UserAngelTypes_view.php');
|
||||||
require_once realpath(__DIR__ . '/../includes/view/User_view.php');
|
require_once realpath(__DIR__ . '/../includes/view/User_view.php');
|
||||||
|
|
||||||
require_once realpath(__DIR__ . '/../includes/controller/angeltypes_controller.php');
|
require_once realpath(__DIR__ . '/../includes/controller/angeltypes_controller.php');
|
||||||
|
require_once realpath(__DIR__ . '/../includes/controller/rooms_controller.php');
|
||||||
|
require_once realpath(__DIR__ . '/../includes/controller/shifts_controller.php');
|
||||||
|
require_once realpath(__DIR__ . '/../includes/controller/shifttypes_controller.php');
|
||||||
require_once realpath(__DIR__ . '/../includes/controller/users_controller.php');
|
require_once realpath(__DIR__ . '/../includes/controller/users_controller.php');
|
||||||
require_once realpath(__DIR__ . '/../includes/controller/user_angeltypes_controller.php');
|
require_once realpath(__DIR__ . '/../includes/controller/user_angeltypes_controller.php');
|
||||||
|
|
||||||
|
@ -85,7 +91,8 @@ $free_pages = array(
|
||||||
'users',
|
'users',
|
||||||
'ical',
|
'ical',
|
||||||
'shifts_json_export',
|
'shifts_json_export',
|
||||||
'atom'
|
'shifts',
|
||||||
|
'atom'
|
||||||
);
|
);
|
||||||
|
|
||||||
// Gewünschte Seite/Funktion
|
// Gewünschte Seite/Funktion
|
||||||
|
@ -94,10 +101,10 @@ if (! isset($_REQUEST['p']))
|
||||||
$_REQUEST['p'] = isset($user) ? "news" : "login";
|
$_REQUEST['p'] = isset($user) ? "news" : "login";
|
||||||
if (isset($_REQUEST['p']) && preg_match("/^[a-z0-9_]*$/i", $_REQUEST['p']) && (in_array($_REQUEST['p'], $free_pages) || in_array($_REQUEST['p'], $privileges))) {
|
if (isset($_REQUEST['p']) && preg_match("/^[a-z0-9_]*$/i", $_REQUEST['p']) && (in_array($_REQUEST['p'], $free_pages) || in_array($_REQUEST['p'], $privileges))) {
|
||||||
$p = $_REQUEST['p'];
|
$p = $_REQUEST['p'];
|
||||||
|
|
||||||
$title = $p;
|
$title = $p;
|
||||||
$content = "";
|
$content = "";
|
||||||
|
|
||||||
if ($p == "api") {
|
if ($p == "api") {
|
||||||
require_once realpath(__DIR__ . '/../includes/controller/api.php');
|
require_once realpath(__DIR__ . '/../includes/controller/api.php');
|
||||||
error("Api disabled temporily.");
|
error("Api disabled temporily.");
|
||||||
|
@ -124,10 +131,14 @@ if (isset($_REQUEST['p']) && preg_match("/^[a-z0-9_]*$/i", $_REQUEST['p']) && (i
|
||||||
$content = user_password_recovery_controller();
|
$content = user_password_recovery_controller();
|
||||||
} elseif ($p == "angeltypes") {
|
} elseif ($p == "angeltypes") {
|
||||||
list($title, $content) = angeltypes_controller();
|
list($title, $content) = angeltypes_controller();
|
||||||
|
} elseif ($p == "shifts") {
|
||||||
|
list($title, $content) = shifts_controller();
|
||||||
} elseif ($p == "users") {
|
} elseif ($p == "users") {
|
||||||
list($title, $content) = users_controller();
|
list($title, $content) = users_controller();
|
||||||
} elseif ($p == "user_angeltypes") {
|
} elseif ($p == "user_angeltypes") {
|
||||||
list($title, $content) = user_angeltypes_controller();
|
list($title, $content) = user_angeltypes_controller();
|
||||||
|
} elseif ($p == "shifttypes") {
|
||||||
|
list($title, $content) = shifttypes_controller();
|
||||||
} elseif ($p == "news") {
|
} elseif ($p == "news") {
|
||||||
$title = news_title();
|
$title = news_title();
|
||||||
$content = user_news();
|
$content = user_news();
|
||||||
|
@ -225,7 +236,7 @@ echo template_render('../templates/layout.html', array(
|
||||||
'content' => msg() . $content,
|
'content' => msg() . $content,
|
||||||
'header_toolbar' => header_toolbar(),
|
'header_toolbar' => header_toolbar(),
|
||||||
'faq_url' => $faq_url,
|
'faq_url' => $faq_url,
|
||||||
'locale' => $_SESSION['locale']
|
'locale' => $_SESSION['locale']
|
||||||
));
|
));
|
||||||
|
|
||||||
counter();
|
counter();
|
||||||
|
|
Loading…
Reference in New Issue