campaigns.php
3 years ago
city_statistics.php
3 years ago
country_statistics.php
3 years ago
current_traffic_finder.php
3 years ago
range_query.php
3 years ago
referrers.php
3 years ago
reset_database.php
3 years ago
resources.php
3 years ago
view.php
3 years ago
views.php
3 years ago
visitors_over_time_finder.php
3 years ago
current_traffic_finder.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP; |
| 4 | |
| 5 | class Current_Traffic_Finder extends Range_Query |
| 6 | { |
| 7 | public function fetch() |
| 8 | { |
| 9 | $row = Query::query('get_current_traffic', [ |
| 10 | 'start' => $this->formatted_start(), |
| 11 | 'end' => $this->formatted_end(), |
| 12 | ])->row(); |
| 13 | |
| 14 | return new Current_Traffic($row); |
| 15 | } |
| 16 | } |
| 17 |