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


PHP HomeController::getInstance方法代码示例

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


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

示例1: pageCode

 public function pageCode()
 {
     $html = '';
     $model = FrontData::getInstance();
     $home = HomeController::getInstance();
     $pache = $GLOBALS['pache'];
     $page = $home->page;
     if (isset($home->tag)) {
         $listingType = 'tag';
         $listingTypeValue = $home->tag;
     } else {
         if (isset($home->categories)) {
             $listingType = 'categories';
             $listingTypeValue = $home->categories;
         } else {
             $listingType = '';
             $listingTypeValue = NULL;
         }
     }
     $countPage = ceil($model->articleCount($listingType, $listingTypeValue) / $pache->pagelimit);
     $i = $page;
     if ($i - 4 < 1) {
         $i = 5;
     }
     for ($i = $i - 4; $i < $page + 5; ++$i) {
         if ($i > $countPage) {
             break;
         }
         $url = '?';
         if (isset($_GET[$listingType])) {
             $url .= $listingType . '=' . urlencode($_GET[$listingType]) . '&';
         }
         if ($page == $i) {
             $html .= '<a class="pagecode current"><div class="code">' . $i . '</div><div class="bg"></div></a>';
         } else {
             $html .= '<a class="pagecode" href="' . $url . 'page=' . $i . '">' . $i . '</a> ';
         }
     }
     $form = '<form method="get" style="display:none;"><input name="page" size="4" /></form>';
     $html = '<div id="page">' . $html . $form . '</div>';
     return $html;
 }
开发者ID:VecHK,项目名称:pache,代码行数:42,代码来源:HomeComponent.class.php

示例2: explode

        }
        $page = $this->page - 1;
        /* 以分类遍历 */
        if (isset($_GET['categories'])) {
            $this->categories = $_GET['categories'];
            $this->listingType = 'categories';
        } else {
            if (isset($_GET['tag'])) {
                $this->tag = explode(' ', trim($_GET['tag']));
                $this->listingType = 'tag';
            } else {
                $this->listingType = 'id';
            }
        }
    }
    public function __construct()
    {
        $this->router();
        $this->getArticles();
    }
    private static $instance;
    public static function getInstance($params = array())
    {
        if (!self::$instance instanceof self) {
            self::$instance = new self($params);
        }
        return self::$instance;
    }
}
$home = HomeController::getInstance();
require_once './front/home.php';
开发者ID:VecHK,项目名称:pache,代码行数:31,代码来源:index.php


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