aboutsummaryrefslogtreecommitdiff
path: root/trunk/views/default/event_calendar/show_events.php
blob: 31771f43d2e24e6a85288cc1f1a5b7886cf0e929 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
 * Elgg show events view
 * 
 * @package event_calendar
 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
 * @author Kevin Jardine <kevin@radagast.biz>
 * @copyright Radagast Solutions 2008
 * @link http://radagast.biz/
 * 
 */

$listing_format = $vars['listing_format'];

if ($vars['events']) {
	if (get_plugin_setting('agenda_view', 'event_calendar') == 'yes') {
		$event_list = elgg_view('event_calendar/agenda_view',$vars);
	} else {
		if ($listing_format == 'paged') {
			$event_list = elgg_view('event_calendar/paged_view',$vars);
		} else {
			$event_list = elgg_view_entity_list($vars['events'], $vars['count'], $vars['offset'], $vars['limit'], false, false);
		}
	}
} else {
	$event_list = '<p>'.elgg_echo('event_calendar:no_events_found').'</p>';
}
if ($listing_format == 'paged') {
	echo $event_list;
} else {
	if (isloggedin()) {
		$nav = elgg_view('event_calendar/nav',$vars);
	} else {
		$nav = '';
	}
?>
<table width="100%">
<tr><td>
<div id="event_list">
<?php
echo $nav.'<br />'.$event_list;
?>
</div>
</td>
<td align="right">
<?php
echo elgg_view('event_calendar/calendar',$vars);
?>
</td></tr>
</table>
<?php
}
?>