From 2f3b6a8aebc55009f066a49b2d9aaa12dc5be008 Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sun, 26 Jun 2011 07:48:03 -0400 Subject: provided a way to get to the wire from activity page --- mod/thewire/languages/en.php | 3 ++- .../views/default/river/object/thewire/create.php | 17 ++++++++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) (limited to 'mod/thewire') diff --git a/mod/thewire/languages/en.php b/mod/thewire/languages/en.php index e2dd5fdac..9716fc060 100644 --- a/mod/thewire/languages/en.php +++ b/mod/thewire/languages/en.php @@ -29,7 +29,8 @@ $english = array( /** * The wire river */ - 'river:create:object:thewire' => "%s posted to the wire", + 'river:create:object:thewire' => "%s posted to the %s", + 'thewire:wire' => 'wire', /** * Wire widget diff --git a/mod/thewire/views/default/river/object/thewire/create.php b/mod/thewire/views/default/river/object/thewire/create.php index 2e9cfd83b..c3c434858 100644 --- a/mod/thewire/views/default/river/object/thewire/create.php +++ b/mod/thewire/views/default/river/object/thewire/create.php @@ -7,8 +7,23 @@ $object = $vars['item']->getObjectEntity(); $excerpt = strip_tags($object->description); $excerpt = thewire_filter($excerpt); +$subject = $vars['item']->getSubjectEntity(); +$subject_link = elgg_view('output/url', array( + 'href' => $subject->getURL(), + 'text' => $subject->name, + 'class' => 'elgg-river-subject', +)); + +$object_link = elgg_view('output/url', array( + 'href' => "thewire/owner/$subject->username", + 'text' => elgg_echo('thewire:wire'), + 'class' => 'elgg-river-object', +)); + +$summary = elgg_echo("river:create:object:thewire", array($subject_link, $object_link)); + echo elgg_view('river/item', array( 'item' => $vars['item'], 'message' => $excerpt, - 'summary' => false, + 'summary' => $summary, )); \ No newline at end of file -- cgit v1.2.3