PublicLike this
*
* Posted 3 hours ago by George
* one, two
* Excerpt text
*
* @uses $vars['entity'] ElggEntity
* @uses $vars['title'] Title link (optional) false = no title, '' = default
* @uses $vars['metadata'] HTML for entity metadata and actions (optional)
* @uses $vars['subtitle'] HTML for the subtitle (optional)
* @uses $vars['tags'] HTML for the tags (optional)
* @uses $vars['content'] HTML for the entity content (optional)
*/
$entity = $vars['entity'];
$title_link = elgg_get_array_value('title', $vars, '');
if ($title_link === '') {
if (isset($entity->title)) {
$text = $entity->title;
} else {
$text = $entity->name;
}
$params = array(
'text' => $text,
'href' => $entity->getURL(),
);
$title_link = elgg_view('output/url', $params);
}
$metadata = elgg_get_array_value('metadata', $vars, '');
$subtitle = elgg_get_array_value('subtitle', $vars, '');
$content = elgg_get_array_value('content', $vars, '');
$tags = elgg_get_array_value('tags', $vars, '');
if (!$tags) {
$tag_text = elgg_view('output/tags', array('tags' => $entity->tags));
if ($tag_text) {
$tags = '' . $tag_text . '
';
}
}
if ($metadata) {
echo $metadata;
}
echo "$title_link
";
echo "$subtitle
";
echo $tags;
if ($content) {
echo "$content
";
}