Files
server/usr/share/psa-horde/kronolith/lib/FreeBusy/View/Month.php
2026-01-07 20:52:11 +01:00

105 lines
3.8 KiB
PHP

<?php
/**
* This class represent a month of free busy information sets.
*
* Copyright 2004-2017 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information.
*
* @author Gunnar Wrobel <wrobel@pardus.de>
* @author Jan Schneider <jan@horde.org>
* @package Kronolith
*/
class Kronolith_FreeBusy_View_Month extends Kronolith_FreeBusy_View
{
/**
* This view type
*
* @var string
*/
public $view = 'month';
/**
* Number of days
*
* @var integer
*/
protected $_days = 30;
protected function _title()
{
$end = new Horde_Date($this->_start);
$end->mday += $this->_days - 1;
$prev = new Horde_Date($this->_start);
$prev->month--;
$next = new Horde_Date($this->_start);
$next->month++;
return Horde::url('#')->link(array('title' => _("Previous Month"), 'onclick' => 'return switchDate(' . $prev->dateString() . ');'))
. Horde::img('nav/left.png', '<')
. '</a>'
. $this->_start->strftime('%B %Y')
. Horde::url('#')->link(array('title' => _("Next Month"), 'onclick' => 'return switchDate(' . $next->dateString() . ');'))
. Horde::img('nav/right.png', '>')
. '</a>';
}
protected function _hours()
{
$hours_html = '';
$dayWidth = round(100 / $this->_days);
$week = Date_Calc::weekOfYear(1, $this->_start->month, $this->_start->year);
$span = (7 - $week) % 7 + 1;
$span_left = $this->_days;
$t = new Horde_Date($this->_start);
while ($span_left > 0) {
$span_left -= $span;
$week_label = Horde::url('#')->link(array('onclick' => 'return switchDateView(\'Week\',' . $t->dateString() . ');'))
. ("Week") . ' ' . $week . '</a>';
$hours_html .= sprintf('<th colspan="%d" width="%s%%">%s</th>',
$span, $dayWidth, $week_label);
$week++;
$t->mday += 7;
$span = min($span_left, 7);
}
$hours_html .= '</tr><tr><td width="100" class="label">&nbsp;</td>';
for ($i = 0; $i < $this->_days; $i++) {
$t = new Horde_Date(array('month' => $this->_start->month,
'mday' => $this->_start->mday + $i,
'year' => $this->_start->year));
$day_label = Horde::url('#')->link(array('onclick' => 'return switchDateView(\'Day\',' . $t->dateString() . ');'))
. ($i + 1) . '.</a>';
$hours_html .= sprintf('<th width="%s%%">%s</th>',
$dayWidth, $day_label);
}
for ($i = 0; $i < $this->_days; $i++) {
$start = new Horde_Date(array('hour' => $this->_startHour,
'month' => $this->_start->month,
'mday' => $this->_start->mday + $i,
'year' => $this->_start->year));
$end = new Horde_Date(array('hour' => $this->_endHour,
'month' => $this->_start->month,
'mday' => $this->_start->mday + $i,
'year' => $this->_start->year));
$this->_timeBlocks[] = array($start, $end);
}
return $hours_html;
}
protected function _render(Horde_Date $day = null)
{
$this->_start = new Horde_Date($day);
$this->_start->mday = 1;
$this->_days = Horde_Date_Utils::daysInMonth($day->month, $day->year);
$this->_end = new Horde_Date($this->_start);
$this->_end->hour = 23;
$this->_end->min = $this->_end->sec = 59;
$this->_end->mday = $this->_days;
}
}