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.php49
1 files changed, 27 insertions, 22 deletions
diff --git a/mod/thewire/views/default/thewire/profile_status.php b/mod/thewire/views/default/thewire/profile_status.php
index 24f6c447b..a313b65ef 100644
--- a/mod/thewire/views/default/thewire/profile_status.php
+++ b/mod/thewire/views/default/thewire/profile_status.php
@@ -1,28 +1,33 @@
<?php
- /**
- * Latest wire post on profile activity page
- */
-
- $owner = $vars['entity']->guid;
- $url_to_wire = $vars['url'] . "pg/thewire/" . $vars['entity']->username;
+/**
+ * Latest wire post on profile activity page
+ */
+
+$owner = $vars['entity']->guid;
+$url_to_wire = $vars['url'] . "pg/thewire/" . $vars['entity']->username;
- //grab the users latest from the wire
- $latest_wire = elgg_get_entities(array('types' => 'object', 'subtypes' => 'thewire', 'owner_guid' => $owner, 'limit' => 1));
+//grab the user's latest from the wire
+$params = array(
+ 'types' => 'object',
+ 'subtypes' => 'thewire',
+ 'owner_guid' => $owner,
+ 'limit' => 1,
+);
+$latest_wire = elgg_get_entities($params);
- if($latest_wire){
- foreach($latest_wire as $lw){
- $content = $lw->description;
- $time = "<p class='entity_subtext'> (" . elgg_view_friendly_time($lw->time_created) . ")</p>";
- }
+if ($latest_wire) {
+ foreach ($latest_wire as $lw) {
+ $content = $lw->description;
+ $time = "<p class='entity_subtext'> (" . elgg_view_friendly_time($lw->time_created) . ")</p>";
}
-
- if($latest_wire){
- echo "<div class='wire_post'><div class='wire_post_contents clearfloat radius8'>";
- echo $content;
- if($owner == $_SESSION['user']->guid)
- echo " <a class='action_button update small' href=\"{$url_to_wire}\">update</a>";
- echo $time;
- echo "</div></div>";
+
+ echo "<div class='wire_post'><div class='wire_post_contents clearfloat radius8'>";
+ echo $content;
+ if ($owner == get_loggedin_userid()) {
+ $text = elgg_echo('thewire:update');
+ echo "<a class='action_button update small' href=\"{$url_to_wire}\">$text</a>";
}
-?> \ No newline at end of file
+ echo $time;
+ echo "</div></div>";
+}