aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views/default/forum/maintopic.php
blob: 3eb12439591543ee7e1b81d3bf0c0f8c22ac0c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php

	/**
	 * Elgg Topic individual post view.
	 * 
	 * @package ElggGroups
	 * 
	 * @uses $vars['entity'] The post
	 */
	 
	 $topic = get_input('topic');
	 $group_guid = get_input('group_guid');
	
?>

<div class="entity_listing topic clearfloat">
<a class="anchor_link" name="<?php echo $vars['entity']->id; ?>"></a>
	<?php
	// get infomation about the owner of the comment
	if ($post_owner = get_user($vars['entity']->owner_guid)) {
	    // display the user icon
	    echo "<div class='entity_listing_icon'>" . elgg_view("profile/icon",array('entity' => $post_owner, 'size' => 'tiny')) . "</div>";
	    // display the user name
	    echo "<div class='entity_listing_info'>";
	    // if comment owner, group owner, or site admin - display edit and delete options
	    if (groups_can_edit_discussion($vars['entity'], page_owner_entity()->owner_guid)) {
			echo "<div class='entity_metadata'>";
	        echo "<span class='delete_button'>".elgg_view("output/confirmlink",array(
				'href' => $vars['url'] . "action/groups/deletepost?post=" . $vars['entity']->id . "&topic=" . get_input('topic') . "&group=" . get_input('group_guid'),
				'text' => elgg_echo('delete'),
				'confirm' => elgg_echo('deleteconfirm')
				))."</span>";
			echo "<span class='entity_edit'><a class='link' href=\"{$vars['url']}pg/groups/edittopic/{$group_guid}/{$topic}/\">".elgg_echo('edit')."</a></span>";
			echo "</div>";

		}	    
	    
	    echo "<p class='entity_title'><a href='".$post_owner->getURL()."'>" . $post_owner->name . "</a></p>";
	} else {
		echo "<div class='entity_listing_icon'><img src=\"" . elgg_view('icon/user/default/tiny') . "\" /></div>";
		echo "<div class='entity_listing_info'><p class='entity_title'>" . elgg_echo('profile:deleteduser') . "</p>";
	}
	
	//display the date of the comment
	echo "<p class='entity_subtext'>" . elgg_view_friendly_time($vars['entity']->time_created) . "</p>";
	echo "</div>"; // close entity_listing_info
	echo "</div>"; // close entity_listing.topic

	//display the actual message posted
	echo "<div class='topic_post maintopic'>";
	echo parse_urls(elgg_view("output/longtext",array("value" => $vars['entity']->description)));
	echo "</div>";
?>
		
<!-- </div> -->