LTI: Delete course tool when deleting LTI tool - refs BT#16379

pull/3114/head
Angel Fernando Quiroz Campos 6 years ago
parent f3f91a12b1
commit 78c21d0f14
  1. 14
      plugin/ims_lti/delete.php

@ -18,9 +18,23 @@ if (!$tool) {
api_not_allowed(true);
}
$links = [];
$links[] = 'ims_lti/start.php?id='.$tool->getId();
if (!$tool->getParent()) {
/** @var ImsLtiTool $child */
foreach ($tool->getChildren() as $child) {
$links[] = "ims_lti/start.php?id=".$child->getId();
}
}
$em->remove($tool);
$em->flush();
$em
->createQuery("DELETE FROM ChamiloCourseBundle:CTool ct WHERE ct.category = :category AND ct.link IN (:links)")
->execute(['category' => 'plugin', 'links' => $links]);
Display::addFlash(
Display::return_message($plugin->get_lang('ToolDeleted'), 'success')
);

Loading…
Cancel
Save