60 lines
1.8 KiB
PHP
60 lines
1.8 KiB
PHP
<?php
|
|
/// main interface window for messaging
|
|
|
|
require('../config.php');
|
|
require('lib.php');
|
|
|
|
require_login(0, false);
|
|
|
|
/// optional variables that may be passed in
|
|
$tab = optional_param('tab', 'contacts'); // current tab - default to contacts
|
|
$addcontact = optional_param('addcontact', 0, PARAM_INT); // adding a contact
|
|
$removecontact = optional_param('removecontact', 0, PARAM_INT); // removing a contact
|
|
$blockcontact = optional_param('blockcontact', 0, PARAM_INT); // blocking a contact
|
|
$unblockcontact = optional_param('unblockcontact', 0, PARAM_INT); // unblocking a contact
|
|
|
|
if ($addcontact and confirm_sesskey()) {
|
|
message_add_contact($addcontact);
|
|
}
|
|
if ($removecontact and confirm_sesskey()) {
|
|
message_remove_contact($removecontact);
|
|
}
|
|
if ($blockcontact and confirm_sesskey()) {
|
|
message_block_contact($blockcontact);
|
|
}
|
|
if ($unblockcontact and confirm_sesskey()) {
|
|
message_unblock_contact($unblockcontact);
|
|
}
|
|
|
|
|
|
/// a print function is associated with each tab
|
|
$tabprintfunction = 'message_print_'.$tab;
|
|
|
|
|
|
print_header(get_string('messages', 'message').' - '.$SITE->fullname);
|
|
|
|
?>
|
|
|
|
<table cellspacing="2" cellpadding="2" border="0" align="center" width="95%">
|
|
<tr>
|
|
<th class="<?php echo ($tab == 'contacts') ? 'generaltabselected' : 'generaltab' ?>">
|
|
<a href="<?php echo $ME ?>?tab=contacts">contacts</a>
|
|
</th>
|
|
<th class="<?php echo ($tab == 'search') ? 'generaltabselected' : 'generaltab' ?>">
|
|
<a href="<?php echo $ME ?>?tab=search">search</a>
|
|
</th>
|
|
<th class="<?php echo ($tab == 'settings') ? 'generaltabselected' : 'generaltab' ?>">
|
|
<a href="<?php echo $ME ?>?tab=settings">settings</a>
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3" bgcolor="#ffffff">
|
|
<?php if (function_exists($tabprintfunction)) $tabprintfunction(); ?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
</body>
|
|
</html>
|