Actualización
This commit is contained in:
47
plugin/toplinks/index.php
Normal file
47
plugin/toplinks/index.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
/* For license terms, see /license.txt */
|
||||
|
||||
use Chamilo\PluginBundle\Entity\TopLinks\TopLinkRelTool;
|
||||
|
||||
$httpRequest = \Symfony\Component\HttpFoundation\Request::createFromGlobals();
|
||||
|
||||
if ('/main/course_home/course_home.php' === $httpRequest->getScriptName()) {
|
||||
$course = api_get_course_entity();
|
||||
|
||||
$em = Database::getManager();
|
||||
$linkToolRepo = $em->getRepository(TopLinkRelTool::class);
|
||||
|
||||
$linkTools = $linkToolRepo->findInCourse($course);
|
||||
|
||||
$toolIds = [];
|
||||
|
||||
/** @var TopLinkRelTool $linkTool */
|
||||
foreach ($linkTools as $linkTool) {
|
||||
$toolIds[] = [
|
||||
'id' => $linkTool->getTool()->getIid(),
|
||||
'img' => $linkTool->getLink()->getIcon()
|
||||
? api_get_path(WEB_UPLOAD_PATH).'plugins/toplinks/'.$linkTool->getLink()->getIcon()
|
||||
: null,
|
||||
];
|
||||
} ?>
|
||||
<script>
|
||||
$(function () {
|
||||
var ids = JSON.parse('<?php echo json_encode($toolIds); ?>');
|
||||
|
||||
$(ids).each(function (index, iconTool) {
|
||||
var $toolA = $('#tooldesc_' + iconTool.id);
|
||||
var $toolImg = $toolA.find('img#toolimage_' + iconTool.id);
|
||||
|
||||
if (iconTool.img) {
|
||||
$toolImg.prop('src', iconTool.img).data('forced-src', iconTool.img);
|
||||
}
|
||||
|
||||
var $block = $toolA.parents('.course-tool').parent();
|
||||
|
||||
$block.prependTo($block.parent());
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
Reference in New Issue
Block a user