aboutsummaryrefslogtreecommitdiff
path: root/mod/messages/read.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-19 15:10:41 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-19 15:10:41 +0000
commite603c947a5ae2869164b11fee827d4c595e4a3f8 (patch)
tree7826bcb38858e86d43485f7f18e02f8d22a5808c /mod/messages/read.php
parenteec475fb1272a99134784b18b0451b306c5dbc4a (diff)
downloadelgg-e603c947a5ae2869164b11fee827d4c595e4a3f8.tar.gz
elgg-e603c947a5ae2869164b11fee827d4c595e4a3f8.tar.bz2
Refs #3158 update messages plugin
git-svn-id: http://code.elgg.org/elgg/trunk@8768 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/messages/read.php')
-rw-r--r--mod/messages/read.php57
1 files changed, 0 insertions, 57 deletions
diff --git a/mod/messages/read.php b/mod/messages/read.php
deleted file mode 100644
index c5d1d4941..000000000
--- a/mod/messages/read.php
+++ /dev/null
@@ -1,57 +0,0 @@
-<?php
-/**
-* Read a message page
-*
-* @package ElggMessages
-*/
-
-gatekeeper();
-
-$message = get_entity(get_input('guid'));
-if (!$message) {
- forward();
-}
-
-elgg_set_page_owner_guid($message->getOwnerGUID());
-$page_owner = elgg_get_page_owner_entity();
-
-$title = $message->title;
-
-$inbox = false;
-if ($page_owner->getGUID() == $message->toId) {
- $inbox = true;
- elgg_push_breadcrumb(elgg_echo('messages:inbox'), 'messages/inbox/' . $page_owner->username);
-} else {
- elgg_push_breadcrumb(elgg_echo('messages:sent'), 'messages/sent/' . $page_owner->username);
-}
-elgg_push_breadcrumb($title);
-
-$buttons = '';
-$content = elgg_view_entity($message, true);
-if ($inbox) {
- $form_params = array(
- 'id' => 'messages-reply-form',
- 'class' => 'hidden',
- 'action' => 'action/messages/send',
- );
- $body_params = array('message' => $message);
- $content .= elgg_view_form('messages/reply', $form_params, $body_params);
-
- if (elgg_get_logged_in_user_guid() == elgg_get_page_owner_guid()) {
- $buttons = elgg_view('output/url', array(
- 'text' => elgg_echo('messages:answer'),
- 'class' => 'elgg-button elgg-button-action',
- 'id' => 'messages-show-reply',
- ));
- $buttons = "<ul class=\"elgg-menu elgg-menu-title\"><li>$buttons</li></ul>";
- }
-}
-
-$body = elgg_view_layout('content', array(
- 'content' => $content,
- 'title' => $title,
- 'filter' => '',
- 'buttons' => $buttons,
-));
-
-echo elgg_view_page($title, $body);