feature request: filter angel types based on account settings, closes #362
This commit is contained in:
parent
02b775684d
commit
6ceec76e7d
|
@ -226,3 +226,20 @@ function UserAngelType_by_User_and_AngelType($user, $angeltype)
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get an UserAngelTypes by user
|
||||||
|
*
|
||||||
|
* @param array $user
|
||||||
|
* @return array[]|null
|
||||||
|
*/
|
||||||
|
function UserAngelTypes_by_User($user)
|
||||||
|
{
|
||||||
|
return DB::select('
|
||||||
|
SELECT *
|
||||||
|
FROM `UserAngelTypes`
|
||||||
|
WHERE `user_id`=?
|
||||||
|
',
|
||||||
|
[$user['UID']]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
|
@ -186,6 +186,7 @@ function view_user_shifts()
|
||||||
$session->set('ShiftsFilter', $shiftsFilter);
|
$session->set('ShiftsFilter', $shiftsFilter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @var ShiftsFilter $shiftsFilter */
|
||||||
$shiftsFilter = $session->get('ShiftsFilter');
|
$shiftsFilter = $session->get('ShiftsFilter');
|
||||||
update_ShiftsFilter($shiftsFilter, in_array('user_shifts_admin', $privileges), $days);
|
update_ShiftsFilter($shiftsFilter, in_array('user_shifts_admin', $privileges), $days);
|
||||||
|
|
||||||
|
@ -214,6 +215,11 @@ function view_user_shifts()
|
||||||
info(render_user_arrived_hint());
|
info(render_user_arrived_hint());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$ownTypes = [];
|
||||||
|
foreach (UserAngelTypes_by_User($user) as $type) {
|
||||||
|
$ownTypes[] = (int)$type['angeltype_id'];
|
||||||
|
}
|
||||||
|
|
||||||
return page([
|
return page([
|
||||||
div('col-md-12', [
|
div('col-md-12', [
|
||||||
msg(),
|
msg(),
|
||||||
|
@ -238,7 +244,13 @@ function view_user_shifts()
|
||||||
$types,
|
$types,
|
||||||
$shiftsFilter->getTypes(),
|
$shiftsFilter->getTypes(),
|
||||||
'types',
|
'types',
|
||||||
_('Angeltypes') . '<sup>1</sup>'
|
_('Angeltypes') . '<sup>1</sup>',
|
||||||
|
[
|
||||||
|
button(
|
||||||
|
'javascript: checkOwnTypes(\'selection_types\', ' . json_encode($ownTypes) . ')',
|
||||||
|
_('Own')
|
||||||
|
),
|
||||||
|
]
|
||||||
),
|
),
|
||||||
'filled_select' => make_select($filled, $shiftsFilter->getFilled(), 'filled', _('Occupancy')),
|
'filled_select' => make_select($filled, $shiftsFilter->getFilled(), 'filled', _('Occupancy')),
|
||||||
'task_notice' =>
|
'task_notice' =>
|
||||||
|
@ -269,12 +281,12 @@ function view_user_shifts()
|
||||||
/**
|
/**
|
||||||
* Returns a hint for the user how the ical feature works.
|
* Returns a hint for the user how the ical feature works.
|
||||||
*/
|
*/
|
||||||
function ical_hint() {
|
function ical_hint()
|
||||||
|
{
|
||||||
global $user;
|
global $user;
|
||||||
|
|
||||||
return heading(
|
return heading(
|
||||||
_('iCal export'), 2)
|
_('iCal export'), 2) . '<p>' . sprintf(
|
||||||
. '<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>).'),
|
_('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('ical', ['key' => $user['api_key']]),
|
page_link_to('ical', ['key' => $user['api_key']]),
|
||||||
page_link_to('shifts_json_export', ['key' => $user['api_key']]),
|
page_link_to('shifts_json_export', ['key' => $user['api_key']]),
|
||||||
|
@ -291,15 +303,23 @@ function get_ids_from_array($array)
|
||||||
return $array['id'];
|
return $array['id'];
|
||||||
}
|
}
|
||||||
|
|
||||||
function make_select($items, $selected, $name, $title = null)
|
/**
|
||||||
|
* @param array $items
|
||||||
|
* @param array $selected
|
||||||
|
* @param string $name
|
||||||
|
* @param string $title
|
||||||
|
* @param array $additionalButtons
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
function make_select($items, $selected, $name, $title = null, $additionalButtons = [])
|
||||||
{
|
{
|
||||||
$html_items = [];
|
$htmlItems = [];
|
||||||
if (isset($title)) {
|
if (isset($title)) {
|
||||||
$html_items[] = '<h4>' . $title . '</h4>' . "\n";
|
$htmlItems[] = '<h4>' . $title . '</h4>' . "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($items as $i) {
|
foreach ($items as $i) {
|
||||||
$html_items[] = '<div class="checkbox">'
|
$htmlItems[] = '<div class="checkbox">'
|
||||||
. '<label><input type="checkbox" name="' . $name . '[]" value="' . $i['id'] . '" '
|
. '<label><input type="checkbox" name="' . $name . '[]" value="' . $i['id'] . '" '
|
||||||
. (in_array($i['id'], $selected) ? ' checked="checked"' : '')
|
. (in_array($i['id'], $selected) ? ' checked="checked"' : '')
|
||||||
. ' > ' . $i['name'] . '</label>'
|
. ' > ' . $i['name'] . '</label>'
|
||||||
|
@ -307,11 +327,14 @@ function make_select($items, $selected, $name, $title = null)
|
||||||
. '</div><br />';
|
. '</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", $htmlItems);
|
||||||
$html .= buttons([
|
|
||||||
button('javascript: checkAll(\'selection_' . $name . '\', true)', _('All'), ''),
|
$buttons = [];
|
||||||
button('javascript: checkAll(\'selection_' . $name . '\', false)', _('None'), '')
|
$buttons[] = button('javascript: checkAll(\'selection_' . $name . '\', true)', _('All'));
|
||||||
]);
|
$buttons[] = button('javascript: checkAll(\'selection_' . $name . '\', false)', _('None'));
|
||||||
|
$buttons = array_merge($buttons, $additionalButtons);
|
||||||
|
$html .= buttons($buttons);
|
||||||
|
|
||||||
$html .= '</div>' . "\n";
|
$html .= '</div>' . "\n";
|
||||||
return $html;
|
return $html;
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
|
@ -1,8 +1,8 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Engelsystem 2.0\n"
|
"Project-Id-Version: Engelsystem 2.0\n"
|
||||||
"POT-Creation-Date: 2017-12-27 12:17+0100\n"
|
"POT-Creation-Date: 2017-12-27 13:38+0100\n"
|
||||||
"PO-Revision-Date: 2017-12-27 12:17+0100\n"
|
"PO-Revision-Date: 2017-12-27 13:38+0100\n"
|
||||||
"Last-Translator: msquare <msquare@notrademark.de>\n"
|
"Last-Translator: msquare <msquare@notrademark.de>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"Language: de_DE\n"
|
"Language: de_DE\n"
|
||||||
|
@ -1867,6 +1867,10 @@ msgstr "belegt"
|
||||||
msgid "free"
|
msgid "free"
|
||||||
msgstr "frei"
|
msgstr "frei"
|
||||||
|
|
||||||
|
#: /Users/msquare/workspace/projects/engelsystem/includes/pages/user_shifts.php:251
|
||||||
|
msgid "Own"
|
||||||
|
msgstr "Eigene"
|
||||||
|
|
||||||
#: /Users/msquare/workspace/projects/engelsystem/includes/pages/user_shifts.php:243
|
#: /Users/msquare/workspace/projects/engelsystem/includes/pages/user_shifts.php:243
|
||||||
msgid "Occupancy"
|
msgid "Occupancy"
|
||||||
msgstr "Belegung"
|
msgstr "Belegung"
|
||||||
|
|
|
@ -1,20 +1,25 @@
|
||||||
/**
|
/**
|
||||||
* Runs through the DOM under the element with the given id, finds all
|
* Sets all checkboxes to the wanted state
|
||||||
* checkboxes and sets them to the wanted state.
|
|
||||||
*
|
*
|
||||||
* @param String
|
* @param {string} id Id of the element containing all the checkboxes
|
||||||
* id Id of the element containing all the checkboxes
|
* @param {bool} checked True if the checkboxes should be checked
|
||||||
* @param Boolean
|
|
||||||
* checked True if the checkboxes should be checked
|
|
||||||
*/
|
*/
|
||||||
function checkAll(id, checked) {
|
function checkAll(id, checked) {
|
||||||
var obj = document.getElementById(id);
|
$("#" + id + " input[type='checkbox']").each(function () {
|
||||||
var boxes = obj.getElementsByTagName("input");
|
this.checked = checked;
|
||||||
for (var i = 0; i < boxes.length; i++) {
|
});
|
||||||
if (boxes[i].type === "checkbox" && !boxes[i].disabled) {
|
}
|
||||||
boxes[i].checked = checked;
|
|
||||||
}
|
/**
|
||||||
}
|
* Sets the checkboxes according to the given type
|
||||||
|
*
|
||||||
|
* @param {string} id The elements ID
|
||||||
|
* @param {list} shifts_list A list of numbers
|
||||||
|
*/
|
||||||
|
function checkOwnTypes(id, shifts_list) {
|
||||||
|
$('#' + id + ' input[type=checkbox]').each(function () {
|
||||||
|
this.checked = $.inArray(parseInt(this.value), shifts_list);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -83,7 +88,7 @@ $(function () {
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".dropdown-menu").css("max-height", function() {
|
$(".dropdown-menu").css("max-height", function () {
|
||||||
return ($(window).height() - 50) + "px";
|
return ($(window).height() - 50) + "px";
|
||||||
}).css("overflow-y", "scroll");
|
}).css("overflow-y", "scroll");
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue