Esempio n. 1
0
 public function render()
 {
     $statisticMapper = new \Modules\Statistic\Mappers\Statistic();
     $allCount = $statisticMapper->getVisitsCountOnline();
     $users = $statisticMapper->getVisitsOnlineUser();
     $this->getView()->set('usersOnline', $users);
     $this->getView()->set('guestOnline', $allCount - count($users));
 }
Esempio n. 2
0
 public function render()
 {
     $date = new \Ilch\Date();
     $statisticMapper = new \Modules\Statistic\Mappers\Statistic();
     $this->getView()->set('visitsToday', $statisticMapper->getVisitsCount($date->format('Y-m-d', true)));
     $this->getView()->set('visitsOnline', $statisticMapper->getVisitsCountOnline());
     $date->modify('-1 day');
     $this->getView()->set('visitsYesterday', $statisticMapper->getVisitsCount($date->format('Y-m-d', true)));
     $this->getView()->set('visitsMonth', $statisticMapper->getVisitsMonthCount());
     $this->getView()->set('visitsYear', $statisticMapper->getVisitsYearCount());
     $this->getView()->set('visitsRegistUser', $statisticMapper->getRegistUserCount());
     $this->getView()->set('visitsTotal', $statisticMapper->getVisitsCount());
 }