<?php try { $Archive = new Archive(); $Archive->setPage($vars['page'], "page"); $Archive->setFilename("/Admin_Posts"); $Archive->setDay($vars['day']); $Archive->setMonth($vars['month']); $Archive->setYear($vars['year']); $Archive->setUserId($vars['user']); $Archive->setId($vars['post']); $Archive->setCatId($vars['cat']); $ArchiveCategories = new ArchiveCategories(); $Archive->BuildData(); $ArchiveCategories->BuildData(); if ($vars['cat']) { $title = " ( {$ArchiveCategories->getTitle($Archive->getCatId())} {$Archive->getLookupDate()}) : Page : " . (1 + $Archive->getPage()) . " of " . $Archive->getnumOfRecords(); } else { if ($Archive->getLibUseType() == "archive") { $title = " : Archive ( {$Archive->getLookupDate()} ) Page : " . (1 + $Archive->getPage()) . " of " . $Archive->getnumOfRecords(); } else { $title = " : Page : " . (1 + $Archive->getPage()) . " of " . $Archive->getnumOfRecords(); } } // $smarty->assign(array("page_name" => "Posts" . $title, "load" => "posts/view/posts.tpl", "loadindex" => "posts/view/post_index.tpl", "filename" => $Archive->getFilename(), "archive_index" => $Archive->getIndex(), "archiveCategory_index" => $ArchiveCategories->getRecords(), "records" => $Archive->getRecords(), "page_list" => $Archive->getCountDisplay())); $smarty->display('admin/body/index.tpl'); echo "<!-- page rendered in approx {$timer->Stop()} -->"; } catch (Exception $e) { print "Exception: " . $e->getMessage(); }
$Archive->setPage($vars['page'], "page"); $Archive->setFilename("/Archive"); $Archive->setDay($vars['day']); $Archive->setMonth($vars['month']); $Archive->setYear($vars['year']); $Archive->setUserId($vars['user']); $Archive->setId($vars['post']); $Archive->setCatId($vars['cat']); if (!$_SESSION['login']) { $Archive->setPublic(1); } $ArchiveCategories = new ArchiveCategories(); $Archive->BuildData(); $ArchiveCategories->BuildData(); if (isal_num($vars['cat'])) { $title = " ( {$ArchiveCategories->getTitle($Archive->getCatId())} {$Archive->getLookupDate()}) : Page : " . (1 + $Archive->getPage()) . " of " . $Archive->getnumOfRecords(); } else { if ($Archive->getLibUseType() == "archive") { $title = " : Archive ( {$Archive->getLookupDate()} ) Page : " . (1 + $Archive->getPage()) . " of " . $Archive->getnumOfRecords(); } else { $title = " : Page : " . (1 + $Archive->getPage()) . " of " . $Archive->getnumOfRecords(); } } // $smarty->assign(array("page_name" => "News" . $title, "load" => "news/news.tpl", "filename" => $Archive->getFilename(), "archive_index" => $Archive->getIndex(), "records" => $Archive->getRecords(), "page_list" => $Archive->getCountDisplay(), "sql_queries" => array_merge($Archive->getSQLQueries(), $ArchiveCategories->getSQLQueries()))); $smarty->display('public/body/index.tpl'); echo "<!-- page rendered in approx {$timer->Stop()} -->"; } catch (Exception $e) { $smarty->assign(array("exception" => $e->getMessage())); $smarty->display('public/body/error.tpl'); }
<?php header('Content-type: text/xml'); try { $Archive = new Archive(); if (!$_SESSION['login']) { $Archive->setPublic(1); } $Archive->BuildData(); $smarty->assign(array("title" => __TITLE__, "description" => __DESCRIPTION__, "location" => __URL__, "filename" => $Archive->getFilename(), "records" => $Archive->getRecords())); $smarty->display('public/body/rss.tpl'); } catch (Exception $e) { $smarty->assign(array("exception" => $e->getMessage())); $smarty->display('public/body/error.tpl'); }
<?php try { $Archive = new Archive(); $Archive->setId($vars['id']); if (!$_COOKIE['login']) { $Archive->setPublic(1); } $ArchiveCategories = new ArchiveCategories(); $Users = new Users(); $Users->BuildData(); $Archive->BuildData(); $ArchiveCategories->BuildData(); $smarty->assign(array("load" => "posts/form/post_edit.tpl", "loadindex" => "posts/view/post_index.tpl", "user_list" => $Users->getRecords(), "archive_index" => $Archive->getIndex(), "archiveCategory_index" => $ArchiveCategories->getIndex(), "records" => $Archive->getRecords())); $smarty->display('admin/body/index.tpl'); } catch (Exception $e) { print "Exception: " . $e->getMessage(); }
$Comments->setPostId($vars['post']); $Archive->BuildData(); $Comments->BuildData(); // if ($_POST['post_submit'] == "true") { if (!isset($_SESSION['userid']) && isal_num($_SESSION['userid'])) { $error[] = "User ID Session variable is missing"; } if (!isset($vars['post']) && isal_num($vars['post'])) { $error[] = "Post ID GET variable is missing"; } if (strlen($_POST['comment']) < 10) { $error[] = "Comment must be longer than 10 characters long"; } if (!count($error)) { $var = array("user_id" => $_SESSION['userid'], "post_id" => $_POST['post'], "comment" => $_POST['comment']); $Comments->Insert($var); $status = "success"; } else { $status = "failed"; } } else { $status = "unknown"; } $smarty->assign(array("page_name" => "News : Comment", "load" => "news/comments.tpl", "filename" => $Archive->getFilename(), "archive_index" => $Archive->getIndex(), "records" => $Archive->getRecords(), "comments" => $Comments->getRecords(), "page_list" => $Comments->getCountDisplay(), "sql_queries" => array_merge($Archive->getSQLQueries(), $Comments->getSQLQueries()), "status" => $status, "errors" => $error)); $smarty->display('public/body/index.tpl'); echo "<!-- page rendered in approx {$timer->Stop()} -->"; } catch (Exception $e) { $smarty->assign(array("exception" => $e->getMessage())); $smarty->display('public/body/error.tpl'); }
<?php try { $Archive = new Archive(); $Archive->setId($vars['id']); if (!$_COOKIE['login']) { $Archive->setPublic(1); } $Comments = new ArchiveComments(); $Comments->setPostId($vars['id']); $Comments->setFilename("/admin/PostComments/"); $Comments->setPage($vars['page'], "page"); $ArchiveCategories = new ArchiveCategories(); $Archive->BuildData(); $Comments->BuildData(); $ArchiveCategories->BuildData(); // $smarty->assign(array("page_name" => "News : Comment", "load" => "posts/view/post_comments.tpl", "loadindex" => "posts/view/post_index.tpl", "filename" => $Archive->getFilename(), "archive_index" => $Archive->getIndex(), "archiveCategory_index" => $ArchiveCategories->getRecords(), "records" => $Archive->getRecords(), "comment_records" => $Comments->getRecords(), "page_list" => $Comments->getCountDisplay())); $smarty->display('admin/body/index.tpl'); } catch (Exception $e) { print "Exception: " . $e->getMessage(); }