aboutsummaryrefslogtreecommitdiff
path: root/mod/messages/views/default/messages/view.php
blob: cc0b5ec3afb0af69fa96a04a3e3183d88e1af663 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php
/**
 * Elgg messages view page
 *
 * @package ElggMessages
 *
 * @uses $vars['entity'] An array of messages to view
 * @uses $vars['page_view'] This is the page the messages are being accessed from; inbox or sentbox
 *
 */

$limit = $vars['limit']; if (empty($limit)) $limit = 10;
$offset = $vars['offset']; if (!isset($offset)) $offset = 0;

// If there are any messages to view, view them
if (isloggedin())
if (is_array($vars['entity']) && sizeof($vars['entity']) > 0) {

	// get the correct display for the inbox view
	if($vars['page_view'] == "inbox") {

		$counter = 0;

		foreach($vars['entity'] as $message) {
			if ($message->owner_guid == get_loggedin_userid() || $message->toId == get_loggedin_userid()) {

				//make sure to only display the messages that have not been 'deleted' (1 = deleted)
				if($message->hiddenFrom != 1){
					// check to see if the message has been read, if so, set the correct container class
					if($message->readYet == 1){
		                echo "<div class='message read clearfix'>";
		            }else{
		                echo "<div class='message notread clearfix'>";
		            }
				    // get the icon of the user who owns the message
				    $from = get_entity($message->fromId);
					echo "<div class='entity-listing-icon'>".elgg_view("profile/icon",array('entity' => $from, 'size' => 'tiny'))."</div>";
					// message block (message sender, message subject, delete checkbox)
					echo "<div class='entity-listing-info'><div class='message_sender'>".$from->name."<p class='entity-subtext'>".elgg_view_friendly_time($message->time_created)."</p></div>";
					// display message subject
					echo "<div class='message_subject'>";
					// display delete button
					echo "<span class='delete-button'>" . elgg_view("output/confirmlink", array(
						'href' => "action/messages/delete?message_id=" . $message->getGUID() . "&type=inbox&submit=" . urlencode(elgg_echo('delete')),
						'text' => elgg_echo('delete'),
						'confirm' => elgg_echo('deleteconfirm'),
					)) . "</span>";
					echo "<p class='entity-title'><input type='checkbox' name=\"message_id[]\" value=\"{$message->guid}\" />";
					echo "<a href=\"{$message->getURL()}\">" . $message->title . "</a></p>";
				    echo "</div></div></div>"; // close the message container
				}//end of hiddenFrom if statement
				} // end of user check
				$counter++;
				if ($counter == $limit) break;

			}//end of for each loop
		}//end of inbox if statement

		// get the correct display for the sentbox view
		if($vars['page_view'] == "sent") {

			$counter = 0;

			foreach($vars['entity'] as $message) {

				//make sure to only display the messages that have not been 'deleted' (1 = deleted)
				if($message->hiddenTo != 1){

					//get the correct user entity
					$user = get_entity($message->toId);
					echo "<div class='message sent clearfix'>";
					//get the icon for the user the message was sent to
					echo "<div class='entity-listing-icon'>".elgg_view("profile/icon",array('entity' => $user, 'size' => 'tiny'))."</div>";
					echo "<div class='entity-listing-info'><div class='message_sender'>".get_loggedin_user()->name."<p class='entity-subtext'>".elgg_view_friendly_time($message->time_created)."</p></div>";
					// display message subject
					echo "<div class='message_subject'>";
					//display the link to 'delete'
					echo "<div class='delete-button'>" . elgg_view("output/confirmlink", array(
						'href' => "action/messages/delete?message_id=" . $message->getGUID() . "&type=sent&submit=" . urlencode(elgg_echo('delete')),
						'text' => elgg_echo('delete'),
						'confirm' => elgg_echo('deleteconfirm'),
					)) . "</div>";
					echo "<p class='entity-title'><input type='checkbox' name=\"message_id[]\" value=\"{$message->guid}\" /> ";
					echo "<a href=\"{$message->getURL()}?type=sent\">" . $message->title . "</a></p>";
					echo "</div></div></div>"; // close the message container
				}//close hiddeTo if statement

				$counter++;
				if ($counter == $limit) break;

			}//close foreach

		}//close page_view sent if statement

		$baseurl = $_SERVER['REQUEST_URI'];
		$nav = '';

		if (sizeof($vars['entity']) > $limit) {
			$newoffset = $offset + $limit;
			$nexturl = elgg_http_add_url_query_elements($baseurl, array('offset' => $newoffset));

			$nav .= '<a class="pagination-previous" href="'.$nexturl.'">&laquo; ' . elgg_echo('previous') . '</a> ';
		}

		if ($offset > 0) {
			$newoffset = $offset - $limit;
			if ($newoffset < 0) $newoffset = 0;

			$prevurl = elgg_http_add_url_query_elements($baseurl, array('offset' => $newoffset));

			$nav .= '<a class="pagination-next" href="'.$prevurl.'">' . elgg_echo('next') . ' &raquo;</a> ';
		}


		if (!empty($nav)) {
			echo '<div class="pagination"><p>'.$nav.'</p></div>';
		}

} else {
	echo "<p>".elgg_echo("messages:nomessages")."</p>";
}