diff options
Diffstat (limited to 'mod/thewire/views/default/widgets')
-rw-r--r-- | mod/thewire/views/default/widgets/thewire/edit.php | 14 | ||||
-rw-r--r-- | mod/thewire/views/default/widgets/thewire/view.php | 29 |
2 files changed, 43 insertions, 0 deletions
diff --git a/mod/thewire/views/default/widgets/thewire/edit.php b/mod/thewire/views/default/widgets/thewire/edit.php new file mode 100644 index 000000000..32a5c8bf7 --- /dev/null +++ b/mod/thewire/views/default/widgets/thewire/edit.php @@ -0,0 +1,14 @@ +<?php + +?> + <p> + <?php echo elgg_echo("thewire:num"); ?> + <select name="params[num_display]"> + <option value="1" <?php if($vars['entity']->num_display == 1) echo "SELECTED"; ?>>1</option> + <option value="2" <?php if($vars['entity']->num_display == 2) echo "SELECTED"; ?>>2</option> + <option value="3" <?php if($vars['entity']->num_display == 3) echo "SELECTED"; ?>>3</option> + <option value="4" <?php if($vars['entity']->num_display == 4) echo "SELECTED"; ?>>4</option> + <option value="5" <?php if($vars['entity']->num_display == 5) echo "SELECTED"; ?>>5</option> + <option value="6" <?php if($vars['entity']->num_display == 6) echo "SELECTED"; ?>>6</option> + </select> + </p>
\ No newline at end of file diff --git a/mod/thewire/views/default/widgets/thewire/view.php b/mod/thewire/views/default/widgets/thewire/view.php new file mode 100644 index 000000000..4821b854b --- /dev/null +++ b/mod/thewire/views/default/widgets/thewire/view.php @@ -0,0 +1,29 @@ + + <?php + + // Get any wire notes to display + // Get the current page's owner + $page_owner = page_owner_entity(); + if ($page_owner === false || is_null($page_owner)) { + $page_owner = $_SESSION['user']; + set_page_owner($page_owner->getGUID()); + } + + $num = $vars['entity']->num_display; + if(!$num) + $num = 4; + + $thewire = $page_owner->getObjects('thewire', $num); + + // If there are any thewire to view, view them + if (is_array($thewire) && sizeof($thewire) > 0) { + + foreach($thewire as $shout) { + + echo elgg_view_entity($shout); + + } + + } + + ?> |