<?php try { $Archive = new Archive(); $Archive->setFilename("index.php"); $Archive->setPage($_GET['page'], "page"); if (!$_COOKIE['login']) { $Archive->setPublic(1); } $Archive->DateList(); $AboutMe = array(array("title" => "Information", "info" => array("Alias" => "Compubomb", "Name" => "Robert Kraig", "Height" => "5'11")), array("title" => "Contact", "info" => array("ICQ" => "59128707", "AIM" => "c0mpub0mb", "YIM" => "compubomb", "MSN" => "compubomb at hotmail.com", "Email" => "robertkraig at gmail.com")), array("title" => "Community Sites", "info" => array("myspace.com" => "<a href=\"http://www.myspace.com/compubomb\">Here</a>", "okcupid.com" => "<a href=\"http://www.okcupid.com/profile?u=compubomb\">Here</a>")), array("title" => "Music Genres", "info" => array("Electronic" => "*Trance, Deep House, Disco House, Progressive House, Ibiza/Chillout", "Jazz" => "Smooth, Acid, Traditional", "POP" => "Everything that has a catchy beat")), array("title" => "Music Artists", "info" => array("Trance" => "Armin Van Burrent, DJ Tiesto, Ferry Corsten, Paul Van Dyke, Chicane", "Deep House" => "DJ Mark Farina", "Dream House" => "Robert Miles", "Chillout" => "Cafe Del Mar")), array("title" => "Community Sites", "info" => array("OS" => "Microsoft Windows XP sp3 Pro, Ubuntu", "Graphics" => "Adobe Photoshop CS3", "Desk.Pub" => "Indesign CS3", "Web Dev" => "Adobe Dreamweaver CS3, Zend Studio Eclipse, Notepad++, gvim 7.0"))); $smarty->assign(array("page_name" => "About Me", "load" => "aboutme.tpl", "filename" => $Archive->getFilename(), "archive_index" => $Archive->getIndex(), "sql_queries" => $Archive->getSQLQueries(), "aboutme" => $AboutMe)); $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->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(); }