argc >1 && is_numeric($a->argv[1])) { $tabs = render_messages(get_messages(local_user(),0,5), 'mail_list.tpl'); } $new = array( 'label' => t('New Message'), 'url' => 'message/new', 'sel'=> ($a->argv[1] == 'new'), 'accesskey' => 'm', ); $tpl = get_markup_template('message_side.tpl'); $a->page['aside'] = replace_macros($tpl, array( '$tabs'=>$tabs, '$new'=>$new, )); $base = System::baseUrl(); $head_tpl = get_markup_template('message-head.tpl'); $a->page['htmlhead'] .= replace_macros($head_tpl,array( '$baseurl' => System::baseUrl(true), '$base' => $base )); $end_tpl = get_markup_template('message-end.tpl'); $a->page['end'] .= replace_macros($end_tpl,array( '$baseurl' => System::baseUrl(true), '$base' => $base )); } function message_post(App $a) { if (! local_user()) { notice( t('Permission denied.') . EOL); return; } $replyto = ((x($_REQUEST,'replyto')) ? notags(trim($_REQUEST['replyto'])) : ''); $subject = ((x($_REQUEST,'subject')) ? notags(trim($_REQUEST['subject'])) : ''); $body = ((x($_REQUEST,'body')) ? escape_tags(trim($_REQUEST['body'])) : ''); $recipient = ((x($_REQUEST,'messageto')) ? intval($_REQUEST['messageto']) : 0 ); $ret = send_message($recipient, $body, $subject, $replyto); $norecip = false; switch($ret){ case -1: notice( t('No recipient selected.') . EOL ); $norecip = true; break; case -2: notice( t('Unable to locate contact information.') . EOL ); break; case -3: notice( t('Message could not be sent.') . EOL ); break; case -4: notice( t('Message collection failure.') . EOL ); break; default: info( t('Message sent.') . EOL ); } // fake it to go back to the input form if no recipient listed if ($norecip) { $a->argc = 2; $a->argv[1] = 'new'; } else goaway($_SESSION['return_url']); } function message_content(App $a) { $o = ''; nav_set_selected('messages'); if (! local_user()) { notice( t('Permission denied.') . EOL); return; } $myprofile = System::baseUrl().'/profile/' . $a->user['nickname']; $tpl = get_markup_template('mail_head.tpl'); $header = replace_macros($tpl, array( '$messages' => t('Messages'), '$tab_content' => $tab_content )); if (($a->argc == 3) && ($a->argv[1] === 'drop' || $a->argv[1] === 'dropconv')) { if (! intval($a->argv[2])) return; // Check if we should do HTML-based delete confirmation if ($_REQUEST['confirm']) { //