diff options
Diffstat (limited to 'views/default/widgets/event_calendar')
-rw-r--r-- | views/default/widgets/event_calendar/edit.php | 35 | ||||
-rw-r--r-- | views/default/widgets/event_calendar/view.php | 39 |
2 files changed, 74 insertions, 0 deletions
diff --git a/views/default/widgets/event_calendar/edit.php b/views/default/widgets/event_calendar/edit.php new file mode 100644 index 000000000..716920c8a --- /dev/null +++ b/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> diff --git a/views/default/widgets/event_calendar/view.php b/views/default/widgets/event_calendar/view.php new file mode 100644 index 000000000..12fff6d60 --- /dev/null +++ b/views/default/widgets/event_calendar/view.php @@ -0,0 +1,39 @@ +<?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 + require_once(dirname(dirname(dirname(dirname(dirname(__FILE__)))))."/models/model.php"); + + //the number of events to display + $num = (int) $vars['entity']->num_display; + if (!$num) + $num = 5; + + // Get the events + + $events = event_calendar_get_personal_events_for_user(page_owner(),$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 |