Exemple #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();
}