Esempio n. 1
0
<?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();
}
Esempio n. 2
0
<?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');
}
Esempio n. 3
0
    $linksCat->setId($vars['cat']);
    $Archive->BuildData();
    $links->BuildData();
    $linksCat->BuildData();
    if ($vars['url']) {
        if (is_array($row = $links->getRecords())) {
            foreach ($row as $info) {
                $url = $info['link_url'];
            }
            header("location: {$url}");
        }
    } else {
        if ($vars['cat']) {
            $title = "Links : ( {$linksCat->getTitle($links->getCatId())} ) Page : " . (1 + $links->getPage()) . " of " . $links->getnumOfRecords();
            $loadFile = "links.tpl";
            $records = $links->getRecords();
            $pageList = $links->getCountDisplay();
        } else {
            $title = "Link Categories : Page : " . (1 + $linksCat->getPage()) . " of " . $linksCat->getnumOfRecords();
            $loadFile = "linkcat.tpl";
            $records = $linksCat->getRecords();
            $pageList = $linksCat->getCountDisplay();
        }
        $smarty->assign(array("page_name" => $title, "load" => "links/" . $loadFile, "filename" => $Archive->getFilename(), "archive_index" => $Archive->getIndex(), "records" => $records, "page_list" => $pageList, "sql_queries" => array_merge($Archive->getSQLQueries(), $links->getSQLQueries(), $linksCat->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');
}
Esempio n. 4
0
    $links->setFileName("/links.php");
    $links->setPage($vars['page'], "page");
    $links->setCatId($vars['cat']);
    $links->setId($vars['id']);
    $linksCat = new LinkCat();
    $linksCat->setFileName("/links.php");
    $linksCat->setPage($vars['page'], "page");
    $linksCat->setId($vars['cat']);
    $Archive->BuildData();
    $links->BuildData();
    $linksCat->BuildData();
    if ($vars['id']) {
        header("location: {$links->getRecords()}");
    } else {
        if ($vars['cat']) {
            $title = "Links : ( {$linksCat->getTitle()} ) Page : " . (1 + $links->getPage()) . " of " . $links->getnumOfRecords();
            $loadFile = "links.tpl";
            $records = $links->getRecords();
            $pageList = $links->getCountDisplay();
        } else {
            $title = "Link Categories : Page : " . (1 + $linksCat->getPage()) . " of " . $linksCat->getnumOfRecords();
            $loadFile = "linkcat.tpl";
            $records = $linksCat->getRecords();
            $pageList = $linksCat->getCountDisplay();
        }
        $smarty->assign(array("title" => "Compubomb.The Development Solutions : Blog &amp; Everything Else", "page_name" => $title, "load" => "links/" . $loadFile, "filename" => $Archive->getFilename(), "archive_index" => $Archive->getArchiveIndex(), "records" => $records, "archive_page_list" => $pageList));
        $smarty->display('public/body/index.tpl');
    }
} catch (Exception $e) {
    print "Exception: " . $e->getMessage();
}
Esempio n. 5
0
 /**
  * Create iterator instance.
  *
  * @param Archive $archive
  * @param array $options
  */
 public function __construct(Archive $archive, $options = array())
 {
     parent::__construct($archive->getFilename(), $archive->getCompression());
     $this->options = $options;
 }
Esempio n. 6
0
    $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');
}
Esempio n. 7
0
<?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');
}
Esempio n. 8
0
    $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&nbsp;:&nbsp;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');
}
Esempio n. 9
0
<?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&nbsp;:&nbsp;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();
}