Angel Fernando Quiroz Campos 0318d42d14 Ims LTI improve redirection when add lti tool - refs BT#13469 il y a 6 ans
..
Entity 2c60e2e88d Ims LTI add support for deep linking - refs BT#13469 il y a 6 ans
assets 779efaacd3 Add IMS/LTI plugin - refs #5333 il y a 8 ans
lang ce8f482fa7 Minor - Ims LTI add missing lang var - refs BT#13469 il y a 6 ans
view ef73036ad6 Ims LTI Improve view when adding tool - refs BT#13469 il y a 6 ans
ImsLtiPlugin.php 0318d42d14 Ims LTI improve redirection when add lti tool - refs BT#13469 il y a 6 ans
OAuthSimple.php 779efaacd3 Add IMS/LTI plugin - refs #5333 il y a 8 ans
README.md 3f43eccfaf Bump ims lti plugin to v1.1 - refs BT#13469 il y a 6 ans
add.php ef73036ad6 Ims LTI Improve view when adding tool - refs BT#13469 il y a 6 ans
admin.php 002b907867 Fix and improve Ims/LIT plugin - refs BT#13469 il y a 7 ans
create.php ef73036ad6 Ims LTI Improve view when adding tool - refs BT#13469 il y a 6 ans
delete.php 002b907867 Fix and improve Ims/LIT plugin - refs BT#13469 il y a 7 ans
edit.php ce8f482fa7 Minor - Ims LTI add missing lang var - refs BT#13469 il y a 6 ans
form.php c18da6398a Ims Lti improve form to start - refs BT#13469 il y a 6 ans
install.php b711b72977 Minor - format code il y a 6 ans
item_return.php 0318d42d14 Ims LTI improve redirection when add lti tool - refs BT#13469 il y a 6 ans
plugin.php 779efaacd3 Add IMS/LTI plugin - refs #5333 il y a 8 ans
start.php 002b907867 Fix and improve Ims/LIT plugin - refs BT#13469 il y a 7 ans
uninstall.php b711b72977 Minor - format code il y a 6 ans

README.md

IMS/LTI plugin

Version 1.1 (beta)

This plugin is meant to be later integrated into Chamilo (in a major version release).

IMS/LTI defines the possibility to integrate tools or content into Chamilo. This plugin allows the integration of a new tool into courses, without (for now) obtaining any data back from those tools. It will gradually be developed to support IMS/LTI content items.

As platform admin you can register external tools available for all courses. You need set the tools settings in the IMS/LTI administration page. Then the registered tools should be add in each course individually.

As teacher you can register external tools available only for the current course. You need follow the link in the IMS/LTI block located in the Course Settings tool. Then select a previously tool registered or register a new external tool.

Changelog

v1.1

  • Support for Deep-Linking added.

Installation

  1. Install the plugin from Plugin page
  2. Enable the plugin from Plugin Settings page
  3. Assign to the Administrator region

Upgrading

To v1.1

Run this changes on database:

ALTER TABLE plugin_ims_lti_tool
    ADD active_deep_linking TINYINT(1) DEFAULT '0' NOT NULL,
    CHANGE id id INT AUTO_INCREMENT NOT NULL,
    CHANGE launch_url launch_url VARCHAR(255) NOT NULL;