diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2005-12-09 18:09:43 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-12-09 18:09:43 +0000 |
| commit | 877d71528d83d217d1f6b71428681dc4bc4c54f3 (patch) | |
| tree | e972c23f3f82210ef5e46c6982a09a165af5d4d6 /phpBB/adm/admin_ranks.php | |
| parent | 28661d61063f677f5bb9d555f179389699e5114b (diff) | |
| download | forums-877d71528d83d217d1f6b71428681dc4bc4c54f3.tar forums-877d71528d83d217d1f6b71428681dc4bc4c54f3.tar.gz forums-877d71528d83d217d1f6b71428681dc4bc4c54f3.tar.bz2 forums-877d71528d83d217d1f6b71428681dc4bc4c54f3.tar.xz forums-877d71528d83d217d1f6b71428681dc4bc4c54f3.zip | |
- banning, disallow usernames and ranks
git-svn-id: file:///svn/phpbb/trunk@5323 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/admin_ranks.php')
| -rw-r--r-- | phpBB/adm/admin_ranks.php | 324 |
1 files changed, 0 insertions, 324 deletions
diff --git a/phpBB/adm/admin_ranks.php b/phpBB/adm/admin_ranks.php deleted file mode 100644 index 3c2c51dd11..0000000000 --- a/phpBB/adm/admin_ranks.php +++ /dev/null @@ -1,324 +0,0 @@ -<?php -/** -* -* @package acp -* @version $Id$ -* @copyright (c) 2005 phpBB Group -* @license http://opensource.org/licenses/gpl-license.php GNU Public License -* -*/ - -/** -*/ -if (!empty($setmodules)) -{ - if (!$auth->acl_get('a_ranks')) - { - return; - } - - $module['USER']['RANKS'] = basename(__FILE__) . $SID; - return; -} - -define('IN_PHPBB', 1); -// Let's set the root dir for phpBB -$phpbb_root_path = '../'; -$phpEx = substr(strrchr(__FILE__, '.'), 1); -require('pagestart.' . $phpEx); - -// Do we have permission? -if (!$auth->acl_get('a_ranks')) -{ - trigger_error($user->lang['NO_ADMIN']); -} - -// Check mode -if (isset($_REQUEST['mode'])) -{ - $mode = $_REQUEST['mode']; -} -else -{ - // These could be entered via a form button - if (isset($_POST['add'])) - { - $mode = 'add'; - } - else if (isset($_POST['save'])) - { - $mode = 'save'; - } - else - { - $mode = ''; - } -} - -$rank_id = (isset($_GET['id'])) ? intval($_GET['id']) : 0; - - -// -switch ($mode) -{ - case 'edit': - case 'add': - - $data = $ranks = $existing_imgs = array(); - $result = $db->sql_query('SELECT * - FROM ' . RANKS_TABLE . ' - ORDER BY rank_special DESC, rank_min DESC'); - if ($row = $db->sql_fetchrow($result)) - { - do - { - $existing_imgs[] = $row['rank_image']; - if ($mode == 'edit' && $rank_id == $row['rank_id']) - { - $ranks = $row; - } - } - while ($row = $db->sql_fetchrow($result)); - } - $db->sql_freeresult($result); - - $imglist = filelist($phpbb_root_path . $config['ranks_path'], ''); - - $edit_img = $filename_list = ''; - foreach ($imglist as $path => $img_ary) - { - foreach ($img_ary as $img) - { - $img = substr($path, 1) . (($path != '') ? '/' : '') . $img; - - if (!in_array($img, $existing_imgs) || $mode == 'edit') - { - if ($ranks && $img == $ranks['rank_image']) - { - $selected = ' selected="selected"'; - $edit_img = $img; - } - else - { - $selected = ''; - } - - $filename_list .= '<option value="' . htmlspecialchars($img) . '"' . $selected . '>' . $img . '</option>'; - } - } - } - $filename_list = '<option value=""' . (($edit_img == '') ? ' selected="selected"' : '') . '>----------</option>' . $filename_list; - unset($existing_imgs); - unset($imglist); - - // They want to add a new rank, show the form. - $s_hidden_fields = '<input type="hidden" name="mode" value="save" />'; - - adm_page_header($user->lang['RANKS']); - -?> - -<script language="javascript" type="text/javascript" defer="defer"> -<!-- - -function update_image(newimage) -{ - document.image.src = (newimage) ? "<?php echo $phpbb_root_path . $config['ranks_path']; ?>/" + newimage : "../images/spacer.gif"; -} - -function update_image_dimensions() -{ - if (document.image.height && document.forms[0].height) - { - document.forms[0].height.value = document.image.height; - document.forms[0].width.value = document.image.width; - } -} - -//--> -</script> - -<h1><?php echo $user->lang['RANKS']; ?></h1> - -<p><?php echo $user->lang['RANKS_EXPLAIN']; ?></p> - -<form method="post" action="<?php echo "admin_ranks.$phpEx$SID&id=$rank_id"; ?>"><table class="bg" cellspacing="1" cellpadding="4" border="0" align="center"> - <tr> - <th colspan="2"><?php echo $user->lang['RANKS']; ?></th> - </tr> - <tr> - <td class="row1" width="40%"><?php echo $user->lang['RANK_TITLE']; ?>: </td> - <td class="row2"><input class="post" type="text" name="title" size="25" maxlength="40" value="<?php echo $ranks['rank_title']; ?>" /></td> - </tr> - <tr> - <td class="row1" width="40%"><?php echo $user->lang['RANK_IMAGE']; ?>:</td> - <td class="row2"><table width="100%" cellspacing="0" cellpadding="0" border="0"> - <tr> - <td valign="middle"><select name="rank_image" onchange="update_image(this.options[selectedIndex].value);"><?php echo $filename_list ?></select></td> - <td> </td> - <td valign="middle"><img src="<?php echo ($edit_img) ? $phpbb_root_path . $config['ranks_path'] . '/' . $edit_img : '../images/spacer.gif' ?>" name="image" border="0" alt="" title="" onload="update_image_dimensions()" /></td> - </tr> - </table></td> - </tr> - <tr> - <td class="row1"><?php echo $user->lang['RANK_SPECIAL']; ?>: </td> - <td class="row2"><input type="radio" name="special_rank" value="1"<?php echo ($ranks['rank_special']) ? ' checked="checked"' : ''; ?> /><?php echo $user->lang['YES']; ?> <input type="radio" name="special_rank" value="0"<?php echo (!$ranks['rank_special']) ? ' checked="checked"' : ''; ?> /> <?php echo $user->lang['NO']; ?></td> - </tr> - <tr> - <td class="row1"><?php echo $user->lang['RANK_MINIMUM']; ?>: </td> - <td class="row2"><input class="post" type="text" name="min_posts" size="5" maxlength="10" value="<?php echo ($ranks['rank_special']) ? '' : $ranks['rank_min']; ?>" /></td> - </tr> - <tr> - <td class="cat" colspan="2" align="center"><?php echo $s_hidden_fields; ?><input type="submit" name="submit" value="<?php echo $user->lang['SUBMIT']; ?>" class="btnmain" /> <input type="reset" value="<?php echo $user->lang['RESET']; ?>" class="btnlite" /></td> - </tr> -</table></form> - -<?php - - adm_page_footer(); - - break; - - case 'save': - - // - // Ok, they sent us our info, let's update it. - // - - $rank_id = (isset($_REQUEST['id'])) ? intval($_REQUEST['id']) : 0; - $rank_title = (isset($_POST['title'])) ? trim($_POST['title']) : ''; - $special_rank = (!empty($_POST['special_rank'])) ? 1 : 0; - $min_posts = (isset($_POST['min_posts'])) ? intval($_POST['min_posts']) : -1; - $rank_image = (isset($_POST['rank_image'])) ? trim(htmlspecialchars($_POST['rank_image'])) : ''; - - if ($special_rank == 1) - { - $min_posts = -1; - } - - // The rank image has to be a jpg, gif or png - if ($rank_image != '' && !preg_match('#(\.gif|\.png|\.jpg|\.jpeg)$#i', $rank_image)) - { - $rank_image = ''; - } - - if ($rank_id) - { - $sql = "UPDATE " . RANKS_TABLE . " - SET rank_title = '" . $db->sql_escape($rank_title) . "', rank_special = $special_rank, rank_min = $min_posts, rank_image = '" . $db->sql_escape($rank_image) . "' - WHERE rank_id = $rank_id"; - - $message = $user->lang['RANK_UPDATED']; - } - else - { - $sql = "INSERT INTO " . RANKS_TABLE . " (rank_title, rank_special, rank_min, rank_image) - VALUES ('" . $db->sql_escape($rank_title) . "', $special_rank, $min_posts, '" . $db->sql_escape($rank_image) . "')"; - - $message = $user->lang['RANK_ADDED']; - } - $db->sql_query($sql); - - $cache->destroy('ranks'); - - trigger_error($message); - - break; - - case 'delete': - - // Ok, they want to delete their rank - $rank_id = (isset($_REQUEST['id'])) ? intval($_REQUEST['id']) : 0; - - if ($rank_id) - { - $sql = "DELETE FROM " . RANKS_TABLE . " - WHERE rank_id = $rank_id"; - $db->sql_query($sql); - - $sql = "UPDATE " . USERS_TABLE . " - SET user_rank = 0 - WHERE user_rank = $rank_id"; - $db->sql_query($sql); - - $cache->destroy('ranks'); - - trigger_error($user->lang['RANK_REMOVED']); - } - else - { - trigger_error($user->lang['MUST_SELECT_RANK']); - } - - break; - - default: - - adm_page_header($user->lang['RANKS']); - -?> - -<h1><?php echo $user->lang['RANKS']; ?></h1> - -<p><?php echo $user->lang['RANKS_EXPLAIN']; ?></p> - -<form method="post" action="<?php echo "admin_ranks.$phpEx$SID"; ?>"><table class="bg" cellspacing="1" cellpadding="4" border="0" align="center"> - <tr> - <th><?php echo $user->lang['RANK_IMAGE']; ?></th> - <th><?php echo $user->lang['RANK_TITLE']; ?></th> - <th><?php echo $user->lang['RANK_MINIMUM']; ?></th> - <th><?php echo $user->lang['ACTION']; ?></th> - </tr> -<?php - - // Show the default page - $sql = "SELECT * FROM " . RANKS_TABLE . " - ORDER BY rank_min ASC, rank_special ASC"; - $result = $db->sql_query($sql); - - if ($row = $db->sql_fetchrow($result)) - { - do - { - $row_class = ($row_class != 'row1') ? 'row1' : 'row2'; - -?> - <tr> - <td class="<?php echo $row_class; ?>" align="center"><?php - - if ($row['rank_image']) - { - -?><img src="<?php echo $phpbb_root_path . $config['ranks_path'] . '/' . $row['rank_image']; ?>"" border="0" alt="<?php echo $row['rank_title']; ?>" title="<?php echo $row['rank_title']; ?>" /><?php - - } - else - { - echo '-'; - } - -?></td> - <td class="<?php echo $row_class; ?>" align="center"><?php echo $row['rank_title']; ?></td> - <td class="<?php echo $row_class; ?>" align="center"><?php echo ($row['rank_special']) ? '-' : $row['rank_min']; ?></td> - <td class="<?php echo $row_class; ?>" align="center"> <a href="<?php echo "admin_ranks.$phpEx$SID&mode=edit&id=" . $row['rank_id']; ?>"><?php echo $user->lang['EDIT']; ?></a> | <a href="<?php echo "admin_ranks.$phpEx$SID&mode=delete&id=" . $row['rank_id']; ?>"><?php echo $user->lang['DELETE']; ?></a> </td> - </tr> -<?php - - } - while ($row = $db->sql_fetchrow($result)); - } - -?> - <tr> - <td class="cat" colspan="5" align="center"><input type="submit" class="btnmain" name="add" value="<?php echo $user->lang['ADD_RANK']; ?>" /></td> - </tr> -</table></form> - -<?php - - adm_page_footer(); - - break; -} - -?>
\ No newline at end of file |
