diff --git a/app/pages/latest.php b/app/pages/latest.php deleted file mode 100644 index 353ebf3..0000000 --- a/app/pages/latest.php +++ /dev/null @@ -1,29 +0,0 @@ -getLatestData($platform_id, 'jvb', 'conferences'); -$latestJvbParticipants = $agentObject->getLatestData($platform_id, 'jvb', 'participants'); -$latestJicofoConferences = $agentObject->getLatestData($platform_id, 'jicofo', 'conferences'); -$latestJicofoParticipants = $agentObject->getLatestData($platform_id, 'jicofo', 'participants'); - -$widget['records'] = array(); - -// prepare the widget -$widget['full'] = false; -$widget['name'] = 'LatestData'; -$widget['title'] = 'Latest data from Jilo Agents'; -$widget['collapsible'] = false; -$widget['collapsed'] = false; -$widget['filter'] = false; -if (!empty($latestJvbConferences) && !empty($latestJvbParticipants) && !empty($latestJicofoConferences) && !empty($latestJicofoParticipants)) { - $widget['full'] = true; -} -$widget['pagination'] = true; - - -include '../app/templates/latest-data.php'; - -?>