aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/views/default/thewire/profile_status.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-08-23 20:34:22 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-08-23 20:34:22 +0000
commitc57f6fda15007fd3978fe1a4a987ce98045ebb28 (patch)
treeb6cc0fbc693d9f2a6bd4a3e827d901a0e0215094 /mod/thewire/views/default/thewire/profile_status.php
parentacb5a3597db4c5453b5e4cbe3778c211e1f88603 (diff)
downloadelgg-c57f6fda15007fd3978fe1a4a987ce98045ebb28.tar.gz
elgg-c57f6fda15007fd3978fe1a4a987ce98045ebb28.tar.bz2
merged [6828] into trunk from 1.7 branch
git-svn-id: http://code.elgg.org/elgg/trunk@6855 36083f99-b078-4883-b0ff-0f9b5a30f544
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>";
+}