<?php
/****************************************************************************************/
/* ACollab */
/****************************************************************************************/
/* Copyright (c) 2002-2004 Adaptive Technology Resource Centre / University of Toronto */
/* */
/* http://atutor.ca/acollab */
/* */
/* This program is free software. You may redistribute it and/or */
/* modify it under the terms of the GNU General Public License */
/* as published by the Free Software Foundation; either version 2 of the License, */
/* or (at your option) any later version. */
/* */
/* This program is distributed in the hope that it will be useful, but */
/* WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */
/* See the GNU General Public License for more details. */
/* */
/* You may access the GNU General Public License at: */
/* http://www.opensource.org/licenses/gpl-license.php */
/* */
/* You may contact the Adaptive Technology Resource Centre at */
/* Robarts Library, University of Toronto */
/* 130 St. George Street, Toronto, Ontario, Canada M5S 1A5 */
/* Further contact information is available at http://www.utoronto.ca/atrc/ */
/****************************************************************************************/
/* Programmer: */
/* Joel Kronenberg - ATRC */
/****************************************************************************************/
// $Id: forums_edit.php 270 2004-06-10 15:50:37Z joel $
define('AC_INCLUDE_PATH', '../include/');
require(AC_INCLUDE_PATH.'vitals.inc.php');
authenticate(USER_GROUP_ADMIN);
if ($_POST['cancel']) {
Header('Location: forums.php');
exit;
}
$fid = intval($_REQUEST['fid']);
if ($_POST['submit']) {
$reg_r = 0;
switch ($_POST['rights']) {
case 0:
$reg_r = FORUM_NONE;
break;
case 1:
$reg_r = FORUM_VIEW;
break;
case 2:
$reg_r = FORUM_VIEW + FORUM_REPLY;
break;
case 3:
$reg_r = FORUM_VIEW + FORUM_REPLY + FORUM_START;
break;
}
$_POST['title'] = str_replace('<', '<', trim($_POST['title']));
$_POST['description'] = str_replace('<', '<', trim($_POST['description']));
if ($_POST['title'] == '') {
$errors[] = E_FORUM_TITLE_EMPTY;
}
if (!$errors) {
$_POST['title'] = $addslashes($_POST['title']);
$_POST['description'] = $addslashes($_POST['description']);
$sql = "UPDATE ".TABLE_PREFIX."forums SET title='$_POST[title]', description='$_POST[description]', regular_rights=$reg_r WHERE forum_id=$_POST[fid]";
$result = mysql_query($sql,$db);
Header('Location: forums.php?f='.F_FORUM_EDITED);
exit;
}
}
$onload = 'onload="document.form.title.focus()"';
if (authenticate(USER_ADMIN, USER_RETURN_CHECK)) {
$group_info = get_group($_SESSION['group_id']);
$_SECTION[0][0] = _AC('administration');
$_SECTION[0][1] = 'admin/index.php';
$_SECTION[1][0] = _AC('groups');
$_SECTION[1][1] = 'admin/groups.php';
$_SECTION[2][0] = $group_info['title'];
$_SECTION[2][1] = 'group_admin/index.php';
$_SECTION[3][0] = _AC('forum_management');
$_SECTION[3][1] = 'group_admin/forums.php';
$_SECTION[4][0] = _AC('edit_forum');
$_SECTION[4][1] = 'forums/edit_forum.php';
require(AC_INCLUDE_PATH.'admin/header.inc.php');
} else {
$_SECTION[0][0] = _AC('home');
$_SECTION[0][1] = 'home.php';
$_SECTION[1][0] = _AC('administration');
$_SECTION[1][1] = 'group_admin/';
$_SECTION[2][0] = _AC('forum_management');
$_SECTION[2][1] = 'group_admin/forums.php';
$_SECTION[3][0] = _AC('edit_forum');
$_SECTION[3][1] = 'forums/edit_forum.php';
require(AC_INCLUDE_PATH.'header.inc.php');
}
print_popup_help('help_forum_rights');
if (isset($errors)) {
print_errors($errors);
unset($errors);
}
$sql = "SELECT * FROM ".TABLE_PREFIX."forums WHERE forum_id=$fid AND group_id=$_SESSION[group_id]";
$result = mysql_query($sql,$db);
if (!($row = mysql_fetch_array($result))) {
$errors[] = E_FORUM_NOT_FOUND;
print_errors($errors);
require (AC_INCLUDE_PATH.'footer.inc.php');
exit;
}
if (isset($_POST['submit'])) {
$row['description'] = $_POST['description'];
$row['regular_rights'] = $_POST['rights'];
}
switch ($row['regular_rights']) {
case FORUM_NONE:
$r0 = ' checked="checked"';
break;
case FORUM_VIEW:
$r1 = ' checked="checked"';
break;
case FORUM_VIEW + FORUM_REPLY:
$r2 = ' checked="checked"';
break;
case FORUM_VIEW + FORUM_REPLY + FORUM_START:
$r3 = ' checked="checked"';
break;
}
?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="form">
<input type="hidden" name="fid" value="<?php echo $fid; ?>" />
<table border="0" cellspacing="0" cellpadding="2" align="center" class="box2">
<tr>
<th colspan="5" class="box"><h3><?php echo _AC('edit_forum'); ?></h3></th>
</tr>
<tr>
<td class="row1"> </td>
<td colspan="3" class="row1"><img src="images/clr.gif" height="1" width="1" alt="" /><br /><?php
echo _AC('denotes_required', '<img src="images/required.gif" height="14" width="14" alt="'._AC('required_field').'" />');
?><br /></td>
<td class="row1"> </td>
</tr>
<tr bgcolor="white">
<td class="row1"> </td>
<td class="row1" align="right"><label for="title"><b><?php echo _AC('forum_title'); ?>:</b></label></td>
<td class="row1"><img src="images/required.gif" height="14" width="14" alt="<?php echo _AC('required_field'); ?>" /></td>
<td class="row1"><input type="text" name="title" class="input" size="30" maxlength="60" id="title" value="<?php echo htmlentities($row['title']); ?>" onfocus="this.className='input highlight'" onblur="this.className='input'" /></td>
<td class="row1"> </td>
</tr>
<tr bgcolor="white">
<td class="row1"> </td>
<td class="row1" align="right" valign="top"><label for="desc"><b><?php echo _AC('description'); ?>:</b></label></td>
<td class="row1"> </td>
<td class="row1"><textarea name="description" cols="45" rows="4" class="input" id="desc" onfocus="this.className='input highlight'" onblur="this.className='input'"><?php echo $row['description']; ?></textarea></td>
<td class="row1"> </td>
</tr>
<tr bgcolor="white">
<td class="row1"> </td>
<td class="row1" align="right" valign="top"><b><?php echo _AC('regular_member_rights'); ?>:</b></td>
<td class="row1"> </td>
<td class="row1"><input type="radio" name="rights" value="0" onfocus="this.className='highlight'" onblur="this.className=''" id="r0"<?php echo $r0; ?> /><label for="r0"><?php echo _AC('forum_rights_none'); ?></label><br />
<input type="radio" name="rights" value="1" onfocus="this.className='highlight'" onblur="this.className=''" id="r1"<?php echo $r1; ?> /><label for="r1"><?php echo _AC('forum_rights_view'); ?></label><br />
<input type="radio" name="rights" value="2" onfocus="this.className='highlight'" onblur="this.className=''" id="r2"<?php echo $r2; ?> /><label for="r2"><?php echo _AC('forum_rights_reply'); ?></label><br />
<input type="radio" name="rights" value="3" onfocus="this.className='highlight'" onblur="this.className=''" id="r3"<?php echo $r3; ?> /><label for="r3"><?php echo _AC('forum_rights_start'); ?></label></td>
<td class="row1"> </td>
</tr>
<tr bgcolor="white">
<td class="row1"> </td>
<td class="row1" colspan="3" align="right"><br /><input type="submit" name="submit" value=" <?php echo _AC('edit'); ?> " class="submitY" onfocus="this.className='submitY highlight'" onblur="this.className='submitY'" /> <input type="submit" name="cancel" value="<?php echo _AC('cancel'); ?>" class="submitN" onfocus="this.className='submitN highlight'" onblur="this.className='submitN'" /><br /><br /></td>
<td class="row1"> </td>
</tr>
</table>
</form>
<?php
require(AC_INCLUDE_PATH.'footer.inc.php');
?>