当前位置: 首页>>代码示例>>PHP>>正文


PHP Archive::setPage方法代码示例

本文整理汇总了PHP中Archive::setPage方法的典型用法代码示例。如果您正苦于以下问题:PHP Archive::setPage方法的具体用法?PHP Archive::setPage怎么用?PHP Archive::setPage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Archive的用法示例。


在下文中一共展示了Archive::setPage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Archive

<?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');
}
开发者ID:robertkraig,项目名称:mycms,代码行数:18,代码来源:AboutMe.php

示例2: Archive

<?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();
}
开发者ID:robertkraig,项目名称:mycms,代码行数:31,代码来源:Posts.php


注:本文中的Archive::setPage方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。