Angel Fernando Quiroz Campos 545e1eb8f0 LTI: fix unsinstall plugin by FK with self reference - refs BT#13469 | 5 gadi atpakaļ | |
---|---|---|
.. | ||
Entity | 5 gadi atpakaļ | |
assets | 8 gadi atpakaļ | |
gradebook | 6 gadi atpakaļ | |
lang | 6 gadi atpakaļ | |
src | 6 gadi atpakaļ | |
vendor | 6 gadi atpakaļ | |
view | 6 gadi atpakaļ | |
ImsLtiPlugin.php | 5 gadi atpakaļ | |
README.md | 5 gadi atpakaļ | |
admin.php | 6 gadi atpakaļ | |
configure.php | 6 gadi atpakaļ | |
create.php | 6 gadi atpakaļ | |
delete.php | 6 gadi atpakaļ | |
edit.php | 6 gadi atpakaļ | |
form.php | 6 gadi atpakaļ | |
install.php | 6 gadi atpakaļ | |
item_return.php | 6 gadi atpakaļ | |
outcome_service.php | 6 gadi atpakaļ | |
plugin.php | 8 gadi atpakaļ | |
start.php | 6 gadi atpakaļ | |
uninstall.php | 6 gadi atpakaļ |
Version 1.5.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, obtaining data back from those tools and recording them as gradebook "external" activities.
As a 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 added in each course individually.
As a 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.
ImsLti::getSubstitutableParams()
.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;
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);
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);
ALTER TABLE plugin_ims_lti_tool ADD privacy LONGTEXT DEFAULT NULL;
ALTER TABLE plugin_ims_lti_tool
CHANGE consumer_key consumer_key VARCHAR(255) DEFAULT NULL,
CHANGE shared_secret shared_secret VARCHAR(255) DEFAULT NULL;
ALTER TABLE plugin_ims_lti_tool
DROP FOREIGN KEY FK_C5E47F7C727ACA70,
ADD FOREIGN KEY (parent_id) REFERENCES plugin_ims_lti_tool (id) ON DELETE CASCADE ON UPDATE RESTRICT;