You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
engelsystem/includes/view/ShiftsFilterRenderer.php

82 lines
1.8 KiB
PHTML

<?php
namespace Engelsystem;
8 years ago
class ShiftsFilterRenderer
{
8 years ago
/**
* The shiftFilter to render.
*
* @var ShiftsFilter
*/
private $shiftsFilter;
8 years ago
/**
* Should the filter display a day selection.
*
* @var boolean
*/
private $daySelectionEnabled = false;
8 years ago
/**
* Days that can be selected.
* Format Y-m-d
*
* @var string[]
*/
private $days = [];
/**
* ShiftsFilterRenderer constructor.
*
* @param ShiftsFilter $shiftsFilter
*/
8 years ago
public function __construct(ShiftsFilter $shiftsFilter)
{
$this->shiftsFilter = $shiftsFilter;
}
8 years ago
/**
* Renders the filter.
*
* @param string $link_base
* @return string Generated HTML
8 years ago
*/
public function render($link_base)
{
$toolbar = [];
if ($this->daySelectionEnabled && !empty($this->days)) {
$selected_day = date('Y-m-d', $this->shiftsFilter->getStartTime());
8 years ago
$day_dropdown_items = [];
foreach ($this->days as $day) {
$day_dropdown_items[] = toolbar_item_link($link_base . '&shifts_filter_day=' . $day, '', $day);
}
$toolbar[] = toolbar_dropdown('', $selected_day, $day_dropdown_items, 'active');
}
return div('form-group', [
toolbar_pills($toolbar)
]);
}
8 years ago
/**
* Should the filter display a day selection.
*
* @param string[] $days
8 years ago
*/
public function enableDaySelection($days)
{
$this->daySelectionEnabled = true;
$this->days = $days;
}
8 years ago
/**
* Should the filter display a day selection.
*
* @return bool
8 years ago
*/
public function isDaySelectionEnabled()
{
return $this->daySelectionEnabled;
}
}