本文整理汇总了PHP中Archive::display方法的典型用法代码示例。如果您正苦于以下问题:PHP Archive::display方法的具体用法?PHP Archive::display怎么用?PHP Archive::display使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Archive
的用法示例。
在下文中一共展示了Archive::display方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: display
/**
* Displays page
*
* According to the class's {@link $display} variable, this function decides
* what page should be displayed and calls the appropriate function.
*
* @see $display
* @return void
*/
function display()
{
switch ($this->display[0]) {
case 'index':
$this->displayIndex();
break;
case 'post':
$this->displayPost($this->display[1]);
break;
case 'archive':
$archive = new Archive($this, $this->display[1][0], $this->display[1][1]);
$archive->display();
break;
case 'about':
$this->displayAbout($this->display[1]);
break;
case 'comments':
$this->displayComments($this->display[1], $this->display[2], $this->display[3]);
break;
case 'rss':
$this->displayRSS();
break;
case 'admin':
$admin = new Admin($this, $this->display[1], $this->display[2], array($this->display[3], $this->display[4]));
$admin->display();
break;
}
// switch
}