getSubjectEntity(); $object = $item->getObjectEntity(); $target = $object->getContainerEntity(); $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' => $object->getURL(), 'text' => $object->title ? $object->title : $object->name, 'class' => 'elgg-river-object', )); $action = $item->action_type; $type = $item->type; $subtype = $item->subtype ? $item->subtype : 'default'; $container = $object->getContainerEntity(); if ($container instanceof ElggGroup) { $params = array( 'href' => $container->getURL(), 'text' => $container->name, ); $group_link = elgg_view('output/url', $params); $group_string = elgg_echo('river:ingroup', array($group_link)); } echo elgg_echo("river:$action:$type:$subtype", array($subject_link, $object_link));