本文整理汇总了PHP中WCF::getTopicInfo方法的典型用法代码示例。如果您正苦于以下问题:PHP WCF::getTopicInfo方法的具体用法?PHP WCF::getTopicInfo怎么用?PHP WCF::getTopicInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WCF
的用法示例。
在下文中一共展示了WCF::getTopicInfo方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: unset
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>
示例2: header
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
示例3: UserRank
$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