streaming-website/model/Upcoming.php

19 lines
277 B
PHP
Raw Normal View History

<?php
class Upcoming
{
public function getNextEvents()
{
try {
2015-08-22 07:55:42 +00:00
$events = file_get_contents('configs/upcoming.json');
$events = json_decode($events, true);
return array_values($events['voc_events']);
}
catch(ErrorException $e)
{
2015-08-22 07:55:42 +00:00
return array();
}
}
}