本文整理汇总了PHP中Forum::add方法的典型用法代码示例。如果您正苦于以下问题:PHP Forum::add方法的具体用法?PHP Forum::add怎么用?PHP Forum::add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Forum
的用法示例。
在下文中一共展示了Forum::add方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: add
function add()
{
$model = new Forum();
$model->add();
if ($_POST['parent'] != 0) {
$this->redirect('/forum/' . $_POST['parent'] . '/');
} else {
$this->redirect('/forum/');
}
}
示例2: __construct
function __construct()
{
if ($_GET['act'] == 'del') {
Forum::del();
$this->redirect('/' . implode('/', Funcs::$uri) . '/');
}
if (Funcs::$uri[2] == '') {
$tree = Tree::getTreeByUrl('wide', array('help', 'forum'));
Funcs::setMeta($tree);
$tree['list'] = Forum::getForum();
View::render('forum/forum', $tree);
} elseif (Funcs::$uri[3] == '') {
if ($_POST) {
$error = Forum::add();
if ($error) {
$tree = Forum::getItems();
Funcs::setMeta($tree);
View::render('forum/items', $tree);
} else {
$this->redirect('/' . Funcs::$uri[0] . '/' . Funcs::$uri[1] . '/' . Funcs::$uri[2] . '/');
}
} else {
$tree = Forum::getItems();
Funcs::setMeta($tree);
View::render('forum/items', $tree);
}
} else {
if ($_POST) {
$error = Forum::add();
if ($error) {
$tree = Forum::getList();
Funcs::setMeta($tree);
View::render('forum/list', $tree);
} else {
$this->redirect('/' . Funcs::$uri[0] . '/' . Funcs::$uri[1] . '/' . Funcs::$uri[2] . '/' . Funcs::$uri[3] . '/');
}
} else {
$tree = Forum::getList();
Funcs::setMeta($tree);
View::render('forum/list', $tree);
}
}
}
示例3: Forum
<?php
if (!$page->users->isLoggedIn()) {
$page->show403();
}
$id = $_GET["id"] + 0;
$forum = new Forum();
if ($page->isPostBack()) {
$forum->add($id, $page->users->currentUserId(), "", $_POST["addReply"]);
header("Location:" . WWW_TOP . "/forumpost/" . $id . "#last");
die;
}
$results = $forum->getPosts($id);
if (count($results) == 0) {
header("Location:" . WWW_TOP . "/forum");
die;
}
$page->meta_title = "Forum Post";
$page->meta_keywords = "view,forum,post,thread";
$page->meta_description = "View forum post";
$page->smarty->assign('results', $results);
$page->smarty->assign('privateprofiles', $page->settings->getSetting('privateprofiles') == 1 ? true : false);
$page->content = $page->smarty->fetch('forumpost.tpl');
$page->render();
示例4: Forum
<?php
if (!$page->users->isLoggedIn()) {
$page->show403();
}
$forum = new Forum(['Settings' => $page->settings]);
if ($page->isPostBack()) {
$forum->add(0, $page->users->currentUserId(), $_POST["addSubject"], $_POST["addMessage"]);
header("Location:" . WWW_TOP . "/forum");
exit;
}
$offset = isset($_REQUEST["offset"]) && ctype_digit($_REQUEST['offset']) ? $_REQUEST["offset"] : 0;
$results = array();
$results = $forum->getBrowseRange($offset, ITEMS_PER_PAGE);
$page->smarty->assign('pagertotalitems', $forum->getBrowseCount());
$page->smarty->assign('pageroffset', $offset);
$page->smarty->assign('pageritemsperpage', ITEMS_PER_PAGE);
$page->smarty->assign('pagerquerybase', WWW_TOP . "/forum?offset=");
$page->smarty->assign('pagerquerysuffix', "#results");
$pager = $page->smarty->fetch("pager.tpl");
$page->smarty->assign('pager', $pager);
$page->smarty->assign('results', $results);
$page->meta_title = "Forum";
$page->meta_keywords = "forum,chat,posts";
$page->meta_description = "Forum";
$page->content = $page->smarty->fetch('forum.tpl');
$page->render();
示例5: admin_add_forum
public function admin_add_forum()
{
if (!Visitor::current()->group->can("add_forum")) {
show_403(__("Access Denied"), __("You do not have sufficient privileges to add forums.", "discuss"));
}
Forum::add($_POST['name'], $_POST['description']);
Flash::notice(__("Forum added.", "discuss"), "/admin/?action=manage_forums");
}