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; }