Files
Chamilo/main/inc/ajax/timeline.ajax.php
2025-08-14 22:37:50 +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;
}