added two new template variables to the EventsCalendar - pagination.previousPageUrl and pagination.nextPageUrl
This commit is contained in:
parent
a6704fb9b4
commit
9ec6f44072
2 changed files with 6 additions and 0 deletions
|
|
@ -1,4 +1,6 @@
|
||||||
6.7.7
|
6.7.7
|
||||||
|
- added two new template variables to the EventsCalendar -
|
||||||
|
pagination.previousPageUrl and pagination.nextPageUrl
|
||||||
- fix [ 1288653 ] Events calendar again - moving forth/back does not work
|
- fix [ 1288653 ] Events calendar again - moving forth/back does not work
|
||||||
- fix [ 1324230 ] 6.7.6 - Template, Rich Text Editor options not showing
|
- fix [ 1324230 ] 6.7.6 - Template, Rich Text Editor options not showing
|
||||||
- fix [ 1276593 ] 6.7.2 Product Images don't upload
|
- fix [ 1276593 ] 6.7.2 Product Images don't upload
|
||||||
|
|
|
||||||
|
|
@ -402,12 +402,16 @@ sub view {
|
||||||
} else {
|
} else {
|
||||||
$monthLabel = WebGUI::International::get(561,"Asset_EventsCalendar");
|
$monthLabel = WebGUI::International::get(561,"Asset_EventsCalendar");
|
||||||
}
|
}
|
||||||
|
$var{'pagination.previousPageUrl'} =
|
||||||
|
$self->getUrl.'?calMonthStart='.$prevCalMonthStart.';calMonthEnd='.$prevCalMonthEnd;
|
||||||
$var{'pagination.previousPage'} = '<form method="GET" style="inline;" action="'.
|
$var{'pagination.previousPage'} = '<form method="GET" style="inline;" action="'.
|
||||||
$self->getUrl.'?calMonthStart='.$calMonthStart.
|
$self->getUrl.'?calMonthStart='.$calMonthStart.
|
||||||
';reload='.WebGUI::Id::generate().'"><a href="'.$self->getUrl.
|
';reload='.WebGUI::Id::generate().'"><a href="'.$self->getUrl.
|
||||||
'?calMonthStart='.$prevCalMonthStart.';calMonthEnd='.$prevCalMonthEnd.'">'.
|
'?calMonthStart='.$prevCalMonthStart.';calMonthEnd='.$prevCalMonthEnd.'">'.
|
||||||
WebGUI::International::get(558,"Asset_EventsCalendar")." ".$monthRangeLength." ".
|
WebGUI::International::get(558,"Asset_EventsCalendar")." ".$monthRangeLength." ".
|
||||||
$monthLabel.'</a>';
|
$monthLabel.'</a>';
|
||||||
|
$var{'pagination.nextPageUrl'} = $self->getUrl.
|
||||||
|
'?calMonthStart='.$nextCalMonthStart.';calMonthEnd='.$nextCalMonthEnd;
|
||||||
$var{'pagination.nextPage'} = '<a href="'.$self->getUrl.
|
$var{'pagination.nextPage'} = '<a href="'.$self->getUrl.
|
||||||
'?calMonthStart='.$nextCalMonthStart.';calMonthEnd='.$nextCalMonthEnd.'">'.
|
'?calMonthStart='.$nextCalMonthStart.';calMonthEnd='.$nextCalMonthEnd.'">'.
|
||||||
WebGUI::International::get(559,"Asset_EventsCalendar")." ".$monthRangeLength." ".
|
WebGUI::International::get(559,"Asset_EventsCalendar")." ".$monthRangeLength." ".
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue