streaming-website/model/Upcoming.php
2015-08-22 09:55:42 +02:00

18 lines
277 B
PHP

<?php
class Upcoming
{
public function getNextEvents()
{
try {
$events = file_get_contents('configs/upcoming.json');
$events = json_decode($events, true);
return array_values($events['voc_events']);
}
catch(ErrorException $e)
{
return array();
}
}
}