Describes a calendar that link to aliases in a ./year/month/day format.
Class Details
[line 111]
Describes a calendar that displays a database table as a calendar with
entries. Users can select specific days from the calendar and view the connected table rows. The calendar gives the user drop downs to select year and month, the days are represented in a grid. Additional filters can also be placed on the calendar.
The search field that should be added, the search field places restrictions on what will be displayed in the calendar. I.e. only rows that satisfy the search fields are shown.
FormField
$formField
An optional form field that should be associated with $searchField. The form field is shown with the calendar.
string
$displayName
An optional display name for the specified form field.
Check if an specified interval of days have updates. Optionally constraints can be placed on the public function so that it only checks for updates of a specific type. This public function should be concidered private.
Tags:
return:
An array with the day index as key and a boolean value as value. The boolean value is true if the corresponding day has rows, false otherwise.
access:
private
Parameters:
integer
$dayMin
The day, as an unix timestamp converted into public function should look at.
integer
$dayMax
The day, as an unix timestamp converted into days, which represents the last day in the interval that the public function should look at.