change shift coloring
This commit is contained in:
parent
c10ab2d8d2
commit
c61e888de4
|
@ -14,8 +14,6 @@ class ShiftCalendarShiftRenderer {
|
||||||
* The shift to render
|
* The shift to render
|
||||||
*/
|
*/
|
||||||
public function render($shift) {
|
public function render($shift) {
|
||||||
global $privileges;
|
|
||||||
|
|
||||||
$collides = $this->collides();
|
$collides = $this->collides();
|
||||||
$info_text = "";
|
$info_text = "";
|
||||||
if ($shift['title'] != '') {
|
if ($shift['title'] != '') {
|
||||||
|
@ -23,9 +21,9 @@ class ShiftCalendarShiftRenderer {
|
||||||
}
|
}
|
||||||
list($is_free, $shifts_row) = $this->renderShiftNeededAngeltypes($shift, $collides);
|
list($is_free, $shifts_row) = $this->renderShiftNeededAngeltypes($shift, $collides);
|
||||||
|
|
||||||
if (isset($shift['own']) && $shift['own'] && ! in_array('user_shifts_admin', $privileges)) {
|
if (isset($shift['own']) && $shift['own']) {
|
||||||
$class = 'primary';
|
$class = 'primary';
|
||||||
} elseif ($collides && ! in_array('user_shifts_admin', $privileges)) {
|
} elseif ($collides) {
|
||||||
$class = 'default';
|
$class = 'default';
|
||||||
} elseif ($is_free) {
|
} elseif ($is_free) {
|
||||||
$class = 'danger';
|
$class = 'danger';
|
||||||
|
|
Loading…
Reference in New Issue