Ludiscape se présente sous la forme d’une palette d’outils intégrée conçue pour créer du contenu multimédia, du e-learning, du mobile-learning et de jeu sérieux.

Ludiscape a été conçu comme une solution de création logicielle simple et efficace et permettre de publier le contenu sur des systèmes LMS, SCORM et xApi TinCan.

Télécharger Ludiscape

FAQ Ludiscape

Chamilo est un logiciel open source de gestion de l’apprentissage et du contenu d’apprentissage, dont l’objectif est d’améliorer l’accès global à l’éducation et au savoir.

Formation Chamilo LMS

Télécharger Chamilo LMS

Association Chamilo

Voir l'intégralité des attestations au format PDF

Avec votre compte tuteur d’apprenants vous pouvez voir l’intégralité des attestations de votre équipe à l’aide de cette icône.

 

Le but est d’avoir la possibilité de télécharger la totalité des documents générés pendant la période de formation. 

Intégration technique de la fonction

Cette fonction n’est disponible qu’après avoir correctement installé le plugin chamilo_process_doc.

 
===
This plugin is only compatible with Chamilo version 1.11.x and above.

This plugin allows you to create H5P resources directly from inside Chamilo,
using the Open Source H5P library.

To enable:
* install the plugin
* mark it as « enabled » (inside the plugin configuration page)
* set the plugin to the region « pre_footer »
* change permissions on disk for the plugin/h5p/cache-h5p/launch folder to be writeable by the web server

Once enabled, permissions granted for the web server to write in plugin/h5p/cache-h5p/launch/ 
and the pre_footer region set for the plugin, a new H5P logo will appear in the 
document creation section, exclusively in the learning path document creation
interface (don’t look for it anywhere else at this point).

However, it is still very limited at this stage: the H5P files are created in a
common directory for all teachers. This means all teachers can re-use contents of
others (which is good) but also that all teachers can remove contents of others
(which is bad).

We hope to be improving this in the future, but we will not be able, in future
versions, to assign content created in this version to the correct teacher.

We suggest you consider this plugin as a Beta version.

Install Hooks :
===
main/gradebook/my_certificates.php

After this line
$sessionList = GradebookUtils::getUserCertificatesInSessions($userId);

//Hook_extras add my documents
if(file_exists(api_get_path(SYS_PLUGIN_PATH).’/chamilo_process_doc/hook_extras.php’)){
    require_once api_get_path(SYS_PLUGIN_PATH).’/chamilo_process_doc/hook_extras.php’;
    $courseList = getUserCustomProcessDoc($userId,$courseList);
}


main\mySpace\student.php


$this_section = SECTION_TRACKING;

// Hook_extras add my documents
If (file_exists(api_get_path(SYS_PLUGIN_PATH).’/chamilo_process_doc/hook_extras.php’)){
require_once api_get_path(SYS_PLUGIN_PATH).’/chamilo_process_doc/hook_extras.php’;
echo getTutorDocumentsLink();
}