Ejemplo n.º 1
0
                    echo '
										<ul class="class_row ', $classSimple, '">
											<li class="icon"><div class="image_icon"></div></li>
											<li class="info">
												<a href="', $config['BaseURL'], '/forums.php?page=forum&id=', $forum['id'], '">
													<h1>', $CORE->getClassString($forum['class']), '</h1>
													<h2>', $forum['topics'], ' Topics</h2>
												</a>
											</li>
										</ul>';
                    unset($classSimple);
                }
                echo '</div>';
            } else {
                while ($forum = $res2->fetch()) {
                    $lastTopic = (int) $forum['lasttopic_id'] > 0 ? WCF::getTopicInfo($forum['lasttopic_id']) : false;
                    //OMG It's a forum row
                    echo '
									<ul class="forum_row">
										<li class="icon">
											<img src="template/forums/style/icons/forum_read.png" width="56" height="53" title="No unread posts" />
										</li>
										<li class="forum_title_desc">
											<a href="', $config['BaseURL'], '/forums.php?page=forum&id=', $forum['id'], '">
												<h1>', WCF::parseTitle($forum['name']), '</h1>
												<h2>', WCF::parseTitle($forum['description']), '</h2>
											</a>
										</li>
										<li class="post">
											<p>', $forum['posts'], '</p>
										</li>
Ejemplo n.º 2
0
    header('HTTP/1.0 404 not found');
    exit;
}
$CORE->loggedInOrReturn();
$quote = isset($_GET['quote']) ? (int) $_GET['quote'] : false;
if (!($topicId = WCF::getLastViewedTopic())) {
    WCF::SetupNotification('Please make sure you are in a valid topic before posting.');
    header("Location: " . $config['BaseURL'] . "/forums.php");
    die;
}
//Set the title
$TPL->SetTitle('Reply to Topic');
$TPL->SetParameter('topbar', true);
//Print the header
$TPL->LoadHeader();
if ($topic = WCF::getTopicInfo($topicId)) {
    if ($forum = WCF::getForumInfo($topic['forum'])) {
        if ($catName = WCF::getCategoryName($forum['category'])) {
            $forum['category_name'] = $catName;
        } else {
            $forum['category_name'] = 'Unknown';
        }
        unset($catName);
    }
}
?>

<!--<a href="#" class="important_notice"><p>Please read and accept the rules and regulations before communicating with other members!</p></a>-->

<div class="page-header-navigation">
	<a href="<?php 
Ejemplo n.º 3
0
            $userRank = new UserRank($userInfo['rank']);
            //The author has equal or geater rank, we cant delete his post
            if ($CURUSER->getRank()->int() <= $userRank->int()) {
                WCF::SetupNotification('You do not meet the requirements to edit this post.');
                header("Location: " . $config['BaseURL'] . "/forums.php");
                die;
            }
        }
    }
}
//Set the title
$TPL->SetTitle('Edit Reply');
$TPL->SetParameter('topbar', true);
//Print the header
$TPL->LoadHeader();
if ($topic = WCF::getTopicInfo($Post['topic'])) {
    if ($forum = WCF::getForumInfo($topic['forum'])) {
        if ($catName = WCF::getCategoryName($forum['category'])) {
            $forum['category_name'] = $catName;
        } else {
            $forum['category_name'] = 'Unknown';
        }
        unset($catName);
    }
}
?>

<!--<a href="#" class="important_notice"><p>Please read and accept the rules and regulations before communicating with other members!</p></a>-->

<div class="page-header-navigation">
	<a href="<?php