本文整理汇总了PHP中Blog::getArchive方法的典型用法代码示例。如果您正苦于以下问题:PHP Blog::getArchive方法的具体用法?PHP Blog::getArchive怎么用?PHP Blog::getArchive使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Blog
的用法示例。
在下文中一共展示了Blog::getArchive方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: archive
public function archive($month)
{
if ($month != NULL) {
// only cache public content
if (!($isAuthenticated = Fari_User::isAuthenticated('realname'))) {
$this->view->cache('/themes/' . BLOG_THEME . '/archive', 'text/html', $month);
}
$articles = Blog::getArchive($month, $isAuthenticated);
if (empty($articles)) {
$this->redirect('/error404');
}
$this->view->articles = $articles;
$this->view->title = Fari_Format::titleize($month);
$this->view->display('/themes/' . BLOG_THEME . '/archive', 'text/html', $month);
} else {
$this->redirect('/error404');
}
}
示例2: archive
public function archive($year, $month = null)
{
$this->blogs = Blog::getArchive(CoOrg::getLanguage(), $year, $month);
$this->archiveYear = $year;
if ($month) $this->archiveMonth = $month;
$this->render('archive');
}
示例3: testArchive
public function testArchive()
{
$archive = Blog::getArchive('br', 2009, 1);
$this->assertEquals(2, count($archive));
$this->assertEquals('b', $archive[0]->ID);
$this->assertEquals('a', $archive[1]->ID);
$archive = Blog::getArchive('br', 2009);
$this->assertEquals(6, count($archive));
$this->assertEquals('abba', $archive[0]->ID);
$this->assertEquals('ccdd', $archive[1]->ID);
}