Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/plugin/bbb/cron.php

28 lines
782 B

<?php
require __DIR__ . '/../../vendor/autoload.php';
if (file_exists(__DIR__ . '/config.vm.php')) {
require_once dirname(__FILE__) . '/config.php';
require __DIR__ . '/lib/vm/AbstractVM.php';
require __DIR__ . '/lib/vm/VMInterface.php';
require __DIR__ . '/lib/vm/DigitalOceanVM.php';
require __DIR__ . '/lib/VM.php';
$config = require __DIR__ . '/config.vm.php';
$vm = new VM($config);
if ($vm->IsEnabled()) {
$bbb = new bbb();
if ($bbb->plugin_enabled) {
$activeSessions = $bbb->getActiveSessionsCount();
if (empty($activeSessions)) {
$vm->runCron();
} else {
echo "Can't run cron active sessions found: " . $activeSessions;
}
}
}
}