Moodle release 4.4beta
[moodle.git] / analytics / classes / site.php
blobc503e8aeeffcbe2dd18261f7eddd449c54bdcdea
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Moodle site analysable.
20 * @package core_analytics
21 * @copyright 2016 David Monllao {@link http://www.davidmonllao.com}
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 namespace core_analytics;
27 defined('MOODLE_INTERNAL') || die();
29 /**
30 * Moodle site analysable.
32 * @package core_analytics
33 * @copyright 2016 David Monllao {@link http://www.davidmonllao.com}
34 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
36 class site implements \core_analytics\analysable {
38 /**
39 * @var int
41 protected $start;
43 /**
44 * @var int
46 protected $end;
48 /**
49 * Analysable id
51 * @return int
53 public function get_id() {
54 return SYSCONTEXTID;
57 /**
58 * Site.
60 * @return string
62 public function get_name() {
63 return get_string('site');
66 /**
67 * Analysable context.
69 * @return \context
71 public function get_context() {
72 return \context_system::instance();
75 /**
76 * Analysable start timestamp.
78 * @return int
80 public function get_start() {
81 if (!empty($this->start)) {
82 return $this->start;
85 // Much faster than reading the first log in the site.
86 $admins = get_admins();
87 $this->start = 9999999999;
88 foreach ($admins as $admin) {
89 if ($admin->firstaccess < $this->start) {
90 $this->start = $admin->firstaccess;
93 return $this->start;
96 /**
97 * Analysable end timestamp.
99 * @return int
101 public function get_end() {
102 if (!empty($this->end)) {
103 return $this->end;
106 $this->end = time();
107 return $this->end;