コード例 #1
0
ファイル: Admin.class.php プロジェクト: lunavod/bunker_stable
 public function GetSiteStat()
 {
     $sCacheKey = 'adm_site_stat';
     if (false === ($data = $this->Cache_Get($sCacheKey))) {
         $data = $this->oMapper->GetSiteStat();
         $this->Cache_Set($data, $sCacheKey, array('user_new', 'blog_new', 'topic_new', 'comment_new'), 60 * 15);
     }
     return $data;
 }