예제 #1
0
    $content = '
        <div id="blackfields">
	<form action="editforum.php" method="GET">
	<select name="id" class="button">';
    foreach ($forum_index->retrieveCategories($rank) as $cat) {
        foreach ($forum_index->retrieveSubForums($cat['id']) as $forum) {
            $content .= '<option value="' . $forum['id'] . '">' . $forum['title'] . '</option>';
        }
    }
    $content .= '</select>
        <input type="submit" value="Select" class="button">
	</form>
        </div>
	';
} else {
    if ($forum->forumExists($_GET['id']) || $forum->forumExists($_POST['id'])) {
        if (!isset($_POST['id'])) {
            //forum details
            $f = $database->processQuery("SELECT `icon`,`title`,`type`,`description`,`parent`,`double_posting`,`pos` FROM `forums` WHERE `id` = ? LIMIT 1", array($_GET['id']), true);
            //save time
            $type = $f[0]['type'];
            $content = '
            <form action="editforum.php" method="POST">
                <table>
                <input type="hidden" name="id" value="' . $_GET['id'] . '">
                <tr><td>Current Icon</td><td>' . $forum->getIcon($f[0]['icon']) . '</td></tr>
                <tr>
                <td>Icon <br/><b>(must re-choose)</b></td><td>
                            <input type="radio" name="icon" value="1" /> <img src="../img/forum/icons/bug.gif" width="20" height="20">
                            <input type="radio" name="icon" value="2" /> <img src="../img/forum/icons/clan.gif" width="20" height="20">
                            <input type="radio" name="icon" value="3" /> <img src="../img/forum/icons/clan_recruitment.gif" width="20" height="20">
예제 #2
0
    $content = '
        <div id="blackfields">
	<form action="editforum.php" method="GET">
	<select name="id" class="button">';
    foreach ($forum_index->retrieveCategories($rank) as $cat) {
        foreach ($forum_index->retrieveSubForums($cat['id']) as $forum) {
            $content .= '<option value="' . $forum['id'] . '">' . $forum['title'] . '</option>';
        }
    }
    $content .= '</select>
        <input type="submit" value="Select" class="button">
	</form>
        </div>
	';
} else {
    if (isset($_GET['delete']) || ($forum->forumExists($_GET['id']) || $forum->forumExists($_POST['id']))) {
        if (isset($_GET['delete'])) {
            if (!isset($_GET['confirm'])) {
                $content = 'Are you sure you wish to delete this forum? All posts and threads within it will be lost. <a href="?id=' . $_GET['id'] . '&delete=1&confirm=1">Yes</a> | <a href="editforum.php">No</a>';
            } else {
                //delete the forum, threads, and posts
                $forum->deleteForum($_GET['id']);
                $content = 'The forum was successfully deleted. <a href="index.php">Home</a> | <a href="editforum.php">Edit another forum</a>';
            }
        } elseif (!isset($_POST['id'])) {
            //forum details
            $f = $database->processQuery("SELECT `icon`,`title`,`type`,`description`,`parent`,`double_posting`,`pos` FROM `forums` WHERE `id` = ? LIMIT 1", array($_GET['id']), true);
            //save time
            $type = $f[0]['type'];
            $icon = $f[0]['icon'];
            $content = '