Beispiel #1
0
 function add()
 {
     $model = new Forum();
     $model->add();
     if ($_POST['parent'] != 0) {
         $this->redirect('/forum/' . $_POST['parent'] . '/');
     } else {
         $this->redirect('/forum/');
     }
 }
Beispiel #2
0
 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);
         }
     }
 }
Beispiel #3
0
<?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();
Beispiel #4
0
<?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();
Beispiel #5
0
 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");
 }