streams/mod/message.php

84 lines
2.1 KiB
PHP
Raw Normal View History

2010-07-28 11:45:07 +00:00
<?php
2010-11-16 05:02:59 +00:00
require_once('include/acl_selectors.php');
require_once('include/message.php');
require_once('include/zot.php');
require_once("include/bbcode.php");
2013-01-25 21:55:42 +00:00
require_once('include/Contact.php');
2010-07-28 11:45:07 +00:00
2012-05-07 02:55:39 +00:00
2010-07-28 11:45:07 +00:00
function message_content(&$a) {
2010-10-31 23:38:22 +00:00
$o = '';
nav_set_selected('messages');
2010-07-28 11:45:07 +00:00
if(! local_user()) {
notice( t('Permission denied.') . EOL);
return login();
2010-07-28 11:45:07 +00:00
}
$channel = $a->get_channel();
head_set_icon($channel['xchan_photo_s']);
2010-07-30 13:09:20 +00:00
$cipher = get_pconfig(local_user(),'system','default_cipher');
if(! $cipher)
$cipher = 'aes256';
2011-05-11 11:37:13 +00:00
$tpl = get_markup_template('mail_head.tpl');
2010-07-31 04:22:52 +00:00
$header = replace_macros($tpl, array(
'$messages' => t('Messages'),
2011-10-12 04:30:23 +00:00
'$tab_content' => $tab_content
2010-07-31 04:22:52 +00:00
));
if((argc() == 3) && (argv(1) === 'dropconv')) {
2013-10-12 06:12:10 +00:00
if(! intval(argv(2)))
return;
$cmd = argv(1);
$r = private_messages_drop(local_user(), argv(2), true);
if($r)
info( t('Conversation removed.') . EOL );
2013-10-12 06:12:10 +00:00
goaway($a->get_baseurl(true) . '/message' );
2010-07-28 11:45:07 +00:00
}
if(argc() == 1) {
// list messages
2010-07-31 04:22:52 +00:00
$o .= $header;
2012-07-02 02:17:21 +00:00
// private_messages_list() can do other more complicated stuff, for now keep it simple
2013-01-25 21:55:42 +00:00
$r = private_messages_list(local_user(), '', $a->pager['start'], $a->pager['itemspage']);
2012-07-02 02:17:21 +00:00
if(! $r) {
info( t('No messages.') . EOL);
2010-07-31 05:27:41 +00:00
return $o;
2010-07-28 11:45:07 +00:00
}
2011-05-11 11:37:13 +00:00
$tpl = get_markup_template('mail_list.tpl');
2010-07-30 13:09:20 +00:00
foreach($r as $rr) {
2013-01-06 21:42:51 +00:00
2010-07-30 13:09:20 +00:00
$o .= replace_macros($tpl, array(
'$id' => $rr['id'],
'$from_name' => $rr['from']['xchan_name'],
'$from_url' => chanlink_hash($rr['from_xchan']),
'$from_photo' => $rr['from']['xchan_photo_s'],
'$to_name' => $rr['to']['xchan_name'],
'$to_url' => chanlink_hash($rr['to_xchan']),
'$to_photo' => $rr['to']['xchan_photo_s'],
'$subject' => (($rr['seen']) ? $rr['title'] : '<strong>' . $rr['title'] . '</strong>'),
'$delete' => t('Delete conversation'),
'$body' => smilies(bbcode($rr['body'])),
'$date' => datetime_convert('UTC',date_default_timezone_get(),$rr['created'], t('D, d M Y - g:i A')),
'$seen' => $rr['seen']
2010-07-30 13:09:20 +00:00
));
}
$o .= alt_pager($a,count($r));
2010-07-30 13:09:20 +00:00
return $o;
2010-07-28 11:45:07 +00:00
}
2010-07-31 04:22:52 +00:00
}