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/ims_lti
Angel Fernando Quiroz Campos 8628fa6fce LTI fix role_score_mentor param - refs BT#13469 7 years ago
..
Entity WIP fixing lti plugin - refs BT#13469 7 years ago
assets Add IMS/LTI plugin - refs #5333 9 years ago
gradebook WIP lti add link to register tool in gradebook - refs BT#13469 7 years ago
lang LTI Allow edit/configure tool with deep linking - refs BT#13469 7 years ago
src LTI reject non-numeric value in replace service - refs BT#13469 7 years ago
view WIP fixing lti plugin - refs BT#13469 7 years ago
ImsLtiPlugin.php LTI fix role_score_mentor param - refs BT#13469 7 years ago
OAuthSimple.php WIP LTI verify oauth signature in service - refs BT#13469 7 years ago
README.md LTI update readme with changelog - refs BT#13469 7 years ago
admin.php LTI add breadcrumbs - refs BT#13469 7 years ago
configure.php WIP fixing lti plugin - refs BT#13469 7 years ago
create.php LTI add breadcrumbs - refs BT#13469 7 years ago
delete.php Fix and improve Ims/LIT plugin - refs BT#13469 8 years ago
edit.php WIP LTI using same form to edit tool - refs BT#13469 7 years ago
form.php LTI fix role_score_mentor param - refs BT#13469 7 years ago
install.php Minor - format code 8 years ago
item_return.php LTI verify oauth signature for deep linking - refs BT#13469 7 years ago
outcome_service.php WIP LTI verify oauth signature in service - refs BT#13469 7 years ago
plugin.php Add IMS/LTI plugin - refs #5333 9 years ago
start.php Fix and improve Ims/LIT plugin - refs BT#13469 8 years ago
uninstall.php Minor - format code 8 years ago

README.md

IMS/LTI plugin

Version 1.3 (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.
  • Support for outcomes services. And register score on course gradebook.

v1.2

  • Register course in which the tool was added.
  • Register parent tool from which the new tool comes from.

v1.3

  • Privacy settings added. Allow to indicate id the launcher's data should be sent in request.

Installation

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

Upgrading

Run this changes on database:

To v1.1

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;
    
ALTER TABLE plugin_ims_lti_tool ADD gradebook_eval_id INT DEFAULT NULL;
ALTER TABLE plugin_ims_lti_tool ADD CONSTRAINT FK_C5E47F7C82F80D8B
    FOREIGN KEY (gradebook_eval_id) REFERENCES gradebook_evaluation (id)
    ON DELETE SET NULL;
CREATE INDEX IDX_C5E47F7C82F80D8B ON plugin_ims_lti_tool (gradebook_eval_id);

To v1.2

ALTER TABLE plugin_ims_lti_tool ADD c_id INT DEFAULT NULL;
ALTER TABLE plugin_ims_lti_tool ADD CONSTRAINT FK_C5E47F7C91D79BD3
    FOREIGN KEY (c_id) REFERENCES course (id);
CREATE INDEX IDX_C5E47F7C91D79BD3 ON plugin_ims_lti_tool (c_id);

ALTER TABLE plugin_ims_lti_tool ADD parent_id INT DEFAULT NULL, DROP is_global;
ALTER TABLE plugin_ims_lti_tool ADD CONSTRAINT FK_C5E47F7C727ACA70
    FOREIGN KEY (parent_id) REFERENCES plugin_ims_lti_tool (id);
CREATE INDEX IDX_C5E47F7C727ACA70 ON plugin_ims_lti_tool (parent_id);

To v1.3

ALTER TABLE plugin_ims_lti_tool ADD privacy LONGTEXT DEFAULT NULL;