Files
Chamilo/main/inc/ajax/timeline.ajax.php
2025-04-10 12:49:05 +02:00

16 lines
313 B
PHP

<?php
/* For licensing terms, see /license.txt */
require_once __DIR__.'/../global.inc.php';
$timeline = new Timeline();
$action = $_GET['a'];
switch ($action) {
case 'get_timeline_content':
$items = $timeline->get_timeline_content($_GET['id']);
echo json_encode($items);
break;
}