2 /// Main interface window for messaging
4 require('../config.php');
7 require_login(0, false);
10 redirect($CFG->wwwroot
);
13 if (empty($CFG->messaging
)) {
14 error("Messaging is disabled on this site");
17 /// Optional variables that may be passed in
18 $tab = optional_param('tab', 'contacts'); // current tab - default to contacts
19 $addcontact = optional_param('addcontact', 0, PARAM_INT
); // adding a contact
20 $removecontact = optional_param('removecontact', 0, PARAM_INT
); // removing a contact
21 $blockcontact = optional_param('blockcontact', 0, PARAM_INT
); // blocking a contact
22 $unblockcontact = optional_param('unblockcontact', 0, PARAM_INT
); // unblocking a contact
23 $popup = optional_param('popup', false, PARAM_ALPHA
); // If set then starts a new popup window
25 /// Popup a window if required and quit (usually from external links).
28 echo '<script language="JavaScript" type="text/javascript">'."\n openpopup('/message/index.php', 'message', 'menubar=0,location=0,scrollbars,status,resizable,width=400,height=500', 0);\n</script>";
29 redirect("$CFG->wwwroot/");
33 /// Process any contact maintenance requests there may be
34 if ($addcontact and confirm_sesskey()) {
35 add_to_log(SITEID
, 'message', 'add contact', 'history.php?user1='.$addcontact.'&user2='.$USER->id
, $addcontact);
36 message_add_contact($addcontact);
38 if ($removecontact and confirm_sesskey()) {
39 add_to_log(SITEID
, 'message', 'remove contact', 'history.php?user1='.$removecontact.'&user2='.$USER->id
, $removecontact);
40 message_remove_contact($removecontact);
42 if ($blockcontact and confirm_sesskey()) {
43 add_to_log(SITEID
, 'message', 'block contact', 'history.php?user1='.$blockcontact.'&user2='.$USER->id
, $blockcontact);
44 message_block_contact($blockcontact);
46 if ($unblockcontact and confirm_sesskey()) {
47 add_to_log(SITEID
, 'message', 'unblock contact', 'history.php?user1='.$unblockcontact.'&user2='.$USER->id
, $unblockcontact);
48 message_unblock_contact($unblockcontact);
52 /// Header on this page
53 if ($tab == 'contacts') {
54 print_header(get_string('messages', 'message').' - '.$SITE->fullname
, '', '', '',
55 '<meta http-equiv="refresh" content="'. $CFG->message_contacts_refresh
.'; url=index.php" />');
57 print_header(get_string('messages', 'message').' - '.$SITE->fullname
);
60 echo '<table cellspacing="2" cellpadding="2" border="0" align="center" width="95%">';
63 /// Print out the tabs
66 $tabrow[] = new tabobject('contacts', $CFG->wwwroot
.'/message/index.php?tab=contacts',
67 get_string('contacts', 'message'));
68 $tabrow[] = new tabobject('search', $CFG->wwwroot
.'/message/index.php?tab=search',
69 get_string('search', 'message'));
70 $tabrow[] = new tabobject('settings', $CFG->wwwroot
.'/message/index.php?tab=settings',
71 get_string('settings', 'message'));
72 $tabrows = array($tabrow);
74 print_tabs($tabrows, $tab);
81 /// Print out contents of the tab
84 /// a print function is associated with each tab
85 $tabprintfunction = 'message_print_'.$tab;
86 if (function_exists($tabprintfunction)) {
90 echo '</td> </tr> </table>';
91 echo ' </body> </html>';