aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/views/default/object
diff options
context:
space:
mode:
authordave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-19 15:38:02 +0000
committerdave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-19 15:38:02 +0000
commitfe4e67d6190d0a0a8dc9db6ea22293fe206835d7 (patch)
tree7efaa78a73d06998df3fe822cdaea9f5b1a53f8c /mod/thewire/views/default/object
parent339c42f966b73652d7e4655443062bf77c7742e0 (diff)
downloadelgg-fe4e67d6190d0a0a8dc9db6ea22293fe206835d7.tar.gz
elgg-fe4e67d6190d0a0a8dc9db6ea22293fe206835d7.tar.bz2
the wire has been moved to core as it now powers profile status and status on member search
git-svn-id: https://code.elgg.org/elgg/trunk@2817 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/thewire/views/default/object')
-rw-r--r--mod/thewire/views/default/object/thewire.php104
1 files changed, 104 insertions, 0 deletions
diff --git a/mod/thewire/views/default/object/thewire.php b/mod/thewire/views/default/object/thewire.php
new file mode 100644
index 000000000..525c96a6e
--- /dev/null
+++ b/mod/thewire/views/default/object/thewire.php
@@ -0,0 +1,104 @@
+<?php
+
+ /**
+ * Elgg thewire note view
+ *
+ * @package ElggTheWire
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider <info@elgg.com>
+ * @copyright Curverider Ltd 2008-2009
+ * @link http://elgg.com/
+ *
+ * @question - do we want users to be able to edit thewire?
+ *
+ * @uses $vars['entity'] Optionally, the note to view
+ */
+
+ if (isset($vars['entity'])) {
+
+ $user_name = $vars['entity']->getOwnerEntity()->username;
+
+ //if the note is a reply, we need some more info
+
+ $note_url = '';
+ $note_owner = elgg_echo("thewire:notedeleted");
+
+?>
+<div class="thewire-singlepage">
+ <div class="thewire-post">
+
+ <div class="thewire_icon">
+ <?php
+ echo elgg_view("profile/icon",array('entity' => $vars['entity']->getOwnerEntity(), 'size' => 'small'));
+ ?>
+ </div>
+
+ <!-- the actual shout -->
+ <p class="note_body">
+
+ <span style='float:right;'>
+
+ <a href="<?php echo $vars['url']; ?>mod/thewire/add.php?wire_username=<?php echo $vars['entity']->getOwnerEntity()->username; ?>" class="reply">reply</a>
+ <?php
+/* //only have a reply option for main notes, not other replies
+ if($vars['entity']->parent == 0){
+ ?>
+ <a href="<?php echo $vars['url']; ?>mod/thewire/reply.php?note_id=<?php echo $vars['entity']->guid; ?>" class="reply">reply</a>
+ <?php
+ }
+*/
+ ?>
+ <br />
+ <?php
+
+ // if the user looking at thewire post can edit, show the delete link
+ if ($vars['entity']->canEdit()) {
+
+
+ echo "<div class='delete_note'>" . elgg_view("output/confirmlink",array(
+ 'href' => $vars['url'] . "action/thewire/delete?thewirepost=" . $vars['entity']->getGUID(),
+ 'text' => elgg_echo('delete'),
+ 'confirm' => elgg_echo('deleteconfirm'),
+ )) . "</div>";
+
+ } //end of can edit if statement
+ ?>
+
+ </span>
+
+
+ <?php
+ echo "<b>{$user_name}: </b>";
+
+
+ $desc = $vars['entity']->description;
+
+ $desc = preg_replace('/\@([A-Za-z0-9\_\.\-]*)/i','@<a href="' . $vars['url'] . 'pg/thewire/$1">$1</a>',$desc);
+ echo parse_urls($desc);
+ ?>
+
+
+
+
+ </p>
+ <div class="note_date">
+
+ <?php
+
+ echo elgg_echo("thewire:wired") . " " . sprintf(elgg_echo("thewire:strapline"),
+ friendly_time($vars['entity']->time_created)
+ );
+
+ echo " via " . $vars['entity']->method . ".";
+
+ ?>
+ </div>
+
+
+ </div>
+</div>
+<?php
+
+ }
+
+?> \ No newline at end of file