File indexing completed on 2025-05-04 05:29:33
0001 <?php 0002 /** 0003 * ocs-webserver 0004 * 0005 * Copyright 2016 by pling GmbH. 0006 * 0007 * This file is part of ocs-webserver. 0008 * 0009 * This program is free software: you can redistribute it and/or modify 0010 * it under the terms of the GNU Affero General Public License as 0011 * published by the Free Software Foundation, either version 3 of the 0012 * License, or (at your option) any later version. 0013 * 0014 * This program is distributed in the hope that it will be useful, 0015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0017 * GNU Affero General Public License for more details. 0018 * 0019 * You should have received a copy of the GNU Affero General Public License 0020 * along with this program. If not, see <http://www.gnu.org/licenses/>. 0021 **/ 0022 class Statistics_Model_Stat 0023 { 0024 0025 public function dailyPageviews() 0026 { 0027 $sql = ' 0028 INSERT INTO stat_daily_pageviews 0029 SELECT project.project_id, count(stat_page_views.project_id) AS cnt, project.project_category_id, CURDATE() AS created_at 0030 FROM project 0031 JOIN stat_page_views on project.project_id = stat_page_views.project_id AND stat_page_views.created_at > DATE_SUB(CURDATE(), INTERVAL 6 MONTH) 0032 WHERE project.type_id = '.Default_Model_Project::PROJECT_TYPE_STANDARD.' 0033 GROUP BY project.project_id; 0034 '; 0035 $database = Zend_Db_Table::getDefaultAdapter(); 0036 $database->query($sql)->execute(); 0037 } 0038 0039 }