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


PHP Blog::getArchive方法代码示例

本文整理汇总了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');
     }
 }
开发者ID:radekstepan,项目名称:PumpedBlog,代码行数:18,代码来源:blog.php

示例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');
	}
开发者ID:nathansamson,项目名称:CoOrg,代码行数:7,代码来源:blog.controller.php

示例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);
	}
开发者ID:nathansamson,项目名称:CoOrg,代码行数:12,代码来源:blog.model.Test.php


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