aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/views/default/thewire/profile_status.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/thewire/views/default/thewire/profile_status.php')
-rw-r--r--mod/thewire/views/default/thewire/profile_status.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/mod/thewire/views/default/thewire/profile_status.php b/mod/thewire/views/default/thewire/profile_status.php
new file mode 100644
index 000000000..507781497
--- /dev/null
+++ b/mod/thewire/views/default/thewire/profile_status.php
@@ -0,0 +1,26 @@
+<?php
+
+ /**
+ * New wire post view for the activity stream
+ */
+
+ $owner = $vars['entity']->guid;
+
+ //grab the users latest from the wire
+ $latest_wire = get_entities("object", "thewire", $owner, "", 1, 0, false, 0, null);
+
+ if($latest_wire){
+ foreach($latest_wire as $lw){
+ $content = $lw->description;
+ $time = "<span>" . friendly_time($lw->time_created) . "</span>";
+ }
+ }
+
+?>
+
+<div class="profile_status">
+ <?php
+ if($latest_wire)
+ echo $content . " " . $time;
+ ?>
+</div> \ No newline at end of file