aboutsummaryrefslogtreecommitdiff
path: root/mod/event_calendar/views/default/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'mod/event_calendar/views/default/widgets')
-rw-r--r--mod/event_calendar/views/default/widgets/event_calendar/content.php43
-rw-r--r--mod/event_calendar/views/default/widgets/event_calendar/edit.php35
2 files changed, 78 insertions, 0 deletions
diff --git a/mod/event_calendar/views/default/widgets/event_calendar/content.php b/mod/event_calendar/views/default/widgets/event_calendar/content.php
new file mode 100644
index 000000000..eaedb76bd
--- /dev/null
+++ b/mod/event_calendar/views/default/widgets/event_calendar/content.php
@@ -0,0 +1,43 @@
+<?php
+
+/**
+ * Elgg event calendar widget
+ *
+ * @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/
+ *
+ */
+
+ // Load event calendar model
+ elgg_load_library('elgg:event_calendar');
+
+ //the number of events to display
+ $num = (int) $vars['entity']->num_display;
+ if (!$num)
+ $num = 5;
+
+ // Get the events
+ $owner = elgg_get_page_owner_entity();
+ if(elgg_instanceof($owner, 'group')) {
+ $events = event_calendar_get_events_for_group(elgg_get_page_owner_guid(),$num);
+ } else {
+ $events = event_calendar_get_personal_events_for_user(elgg_get_page_owner_guid(),$num);
+ }
+
+ // If there are any events to view, view them
+ if (is_array($events) && sizeof($events) > 0) {
+
+ echo "<div id=\"widget_calendar\">";
+
+ foreach($events as $event) {
+ echo elgg_view("object/event_calendar",array('entity' => $event));
+ }
+
+ echo "</div>";
+
+ }
+
+?> \ No newline at end of file
diff --git a/mod/event_calendar/views/default/widgets/event_calendar/edit.php b/mod/event_calendar/views/default/widgets/event_calendar/edit.php
new file mode 100644
index 000000000..716920c8a
--- /dev/null
+++ b/mod/event_calendar/views/default/widgets/event_calendar/edit.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * Elgg event_calendar group widget
+ *
+ * @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/
+ *
+ */
+
+if (!$vars['entity']->num_display) {
+ $num_display = 5;
+} else {
+ $num_display = $vars['entity']->num_display;
+}
+?>
+
+<p>
+ <?php echo elgg_echo("event_calendar:num_display"); ?>:
+ <select name="params[num_display]">
+ <option value="1" <?php if($num_display == 1) echo "SELECTED"; ?>>1</option>
+ <option value="2" <?php if($num_display == 2) echo "SELECTED"; ?>>2</option>
+ <option value="3" <?php if($num_display == 3) echo "SELECTED"; ?>>3</option>
+ <option value="4" <?php if($num_display == 4) echo "SELECTED"; ?>>4</option>
+ <option value="5" <?php if($num_display == 5) echo "SELECTED"; ?>>5</option>
+ <option value="6" <?php if($num_display == 6) echo "SELECTED"; ?>>6</option>
+ <option value="7" <?php if($num_display == 7) echo "SELECTED"; ?>>7</option>
+ <option value="8" <?php if($num_display == 8) echo "SELECTED"; ?>>8</option>
+ <option value="9" <?php if($num_display == 9) echo "SELECTED"; ?>>9</option>
+ <option value="10" <?php if($num_display == 10) echo "SELECTED"; ?>>10</option>
+ </select>
+</p>