aboutsummaryrefslogtreecommitdiff
path: root/views/default/event_calendar/groupprofile_calendar.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-06-28 18:12:41 -0400
committerCash Costello <cash.costello@gmail.com>2011-06-28 18:12:41 -0400
commit29792a9858484266952a53268e4fd0dd29b2f4a5 (patch)
treebad977e423a6d1193d362295611fe4472c2373af /views/default/event_calendar/groupprofile_calendar.php
parent1dd01c7ff9685995b4bc9de0ceeb7856086c3f40 (diff)
downloadelgg-29792a9858484266952a53268e4fd0dd29b2f4a5.tar.gz
elgg-29792a9858484266952a53268e4fd0dd29b2f4a5.tar.bz2
moved the code into the base directory so that it is easier to work with
Diffstat (limited to 'views/default/event_calendar/groupprofile_calendar.php')
-rw-r--r--views/default/event_calendar/groupprofile_calendar.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/views/default/event_calendar/groupprofile_calendar.php b/views/default/event_calendar/groupprofile_calendar.php
new file mode 100644
index 000000000..175098e0c
--- /dev/null
+++ b/views/default/event_calendar/groupprofile_calendar.php
@@ -0,0 +1,42 @@
+<?php
+
+/**
+ * Elgg event_calendar group profile content
+ *
+ * @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/
+ *
+ */
+
+$page_owner_entity = page_owner_entity();
+
+if (event_calendar_activated_for_group($page_owner_entity)) {
+ $num = 5;
+ // Get the upcoming events
+ $start_date = time(); // now
+ $end_date = $start_date + 60*60*24*365*2; // maximum is two years from now
+ $events = event_calendar_get_events_between($start_date,$end_date,false,$num,0,page_owner());
+
+ // If there are any events to view, view them
+ if (is_array($events) && sizeof($events) > 0) {
+
+ echo '<div id="group_pages_widget">';
+ echo '<h2>'.elgg_echo("event_calendar:groupprofile").'</h2>';
+ foreach($events as $event) {
+ echo elgg_view("object/event_calendar",array('entity' => $event));
+ }
+ echo '<div class="forum_latest"><a href="'.$vars['url'].'pg/event_calendar/group/'.page_owner().'">'.elgg_echo('event_calendar:view_calendar').'</a></div>';
+ echo "</div>";
+
+ } else if (get_plugin_setting('group_always_display', 'event_calendar') == 'yes') {
+ echo '<div id="group_pages_widget">';
+ echo '<h2>'.elgg_echo("event_calendar:groupprofile").'</h2>';
+ echo '<div class="forum_latest">'.elgg_echo('event_calendar:no_events_found').'</div>';
+ echo "</div>";
+ }
+}
+
+?> \ No newline at end of file