26 protected \ILIAS\MediaCast\InternalDomainService
$domain;
31 protected \ILIAS\DI\UIServices
$ui;
32 protected \ilLanguage
$lng;
44 $this->
ui = $DIC->ui();
46 $this->
lng = $DIC->language();
47 $this->media_cast = $obj;
49 $this->
user = $DIC->user();
50 $this->
ctrl = $DIC->ctrl();
51 $this->
toolbar = $DIC->toolbar();
52 $this->domain = $DIC->mediaCast()->internal()->domain();
60 $cmd = $ctrl->getCmd();
62 switch ($next_class) {
64 if (in_array($cmd, array(
"downloadAll"))) {
72 $f = $this->
ui->factory();
73 $renderer = $this->
ui->renderer();
80 if ($this->media_cast->getDownloadable()) {
81 $toolbar->addFormButton($lng->txt(
"mcst_download_all"),
"downloadAll");
84 if ($this->rss_link !==
"") {
85 $b =
$f->link()->standard(
86 $lng->txt(
"mcst_webfeed"),
88 )->withOpenInNewViewport(
true);
89 $toolbar->addComponent(
$b);
98 $lp_collection_mode = $this->domain->learningProgress($this->media_cast)->isCollectionMode();
101 foreach ($this->media_cast->getSortedItemsArray() as $item) {
102 $mob = new \ilObjMediaObject($item[
"mob_id"]);
103 $med = $mob->getMediaItem(
"Standard");
105 if (!in_array($med->getFormat(), [
"image/png",
"image/jpeg",
"image/gif"])) {
109 if (strcasecmp(
"Reference", $med->getLocationType()) == 0) {
110 $resource = $med->getLocation();
116 $image =
$f->image()->responsive(
121 $pages[] =
$f->modal()->lightboxImagePage($image, $mob->getTitle());
122 if ($lp_collection_mode) {
123 $mob_modals[$mob->getId()] =
$f->modal()->lightbox($pages);
128 if (!$lp_collection_mode) {
129 $main_modal =
$f->modal()->lightbox($pages);
133 foreach ($this->media_cast->getSortedItemsArray() as $item) {
134 $mob = new \ilObjMediaObject($item[
"mob_id"]);
135 $med = $mob->getMediaItem(
"Standard");
137 if (!in_array($med->getFormat(), [
"image/png",
"image/jpeg",
"image/gif"])) {
141 if (strcasecmp(
"Reference", $med->getLocationType()) == 0) {
142 $resource = $med->getLocation();
147 $preview_resource = $resource;
148 if ($mob->getVideoPreviewPic() !=
"") {
153 $preview_image =
$f->image()->responsive(
158 $image =
$f->image()->responsive(
163 if (!$lp_collection_mode) {
164 $modal = $main_modal;
166 $modal = $mob_modals[$mob->getId()];
169 $card_image = $preview_image->withAction($modal->getShowSignal());
172 if (!$lp_collection_mode) {
173 $slide_to =
"document.querySelector('.modal-body .carousel [data-slide-to=\"" . $cnt .
"\"]').click();";
175 $completed_cb = $this->completed_callback .
'&mob_id=' . $mob->getId();
176 $completed_cb =
"$.ajax({type:'GET', url: '$completed_cb'});";
179 $card_image = $card_image->withAdditionalOnLoadCode(
function (
$id) use ($slide_to, $completed_cb) {
180 return "$('#$id').click(function(e) { $slide_to $completed_cb });";
182 if (!$lp_collection_mode) {
186 $sections = ($mob->getDescription())
187 ? [
$f->legacy($mob->getDescription())]
190 if ($this->media_cast->getDownloadable()) {
191 $ctrl->setParameterByClass(
"ilobjmediacastgui",
"item_id", $item[
"id"]);
192 $ctrl->setParameterByClass(
"ilobjmediacastgui",
"purpose",
"Standard");
193 $download = $ctrl->getLinkTargetByClass(
"ilobjmediacastgui",
"downloadItem");
194 $sections[] =
$f->button()->standard($lng->txt(
"download"), $download);
198 $title = $mob->getTitle();
200 $card =
$f->card()->standard(
205 )->withTitleAction($modal->getShowSignal());
211 $deck =
$f->deck($cards);
213 if (count($pages) === 0 && count($mob_modals) === 0) {
216 if (!$lp_collection_mode) {
217 $modals = [$main_modal];
219 $modals = $mob_modals;
221 return "<div id='il-mcst-img-gallery'>" . $renderer->render(array_merge([$deck], $modals)) .
"</div>";
227 $download_task = new \ILIAS\MediaCast\BackgroundTasks\DownloadAllBackgroundTask(
228 (
int) $user->getId(),
229 (
int) $this->media_cast->getRefId(),
230 (
int) $this->media_cast->getId()
233 if ($download_task->run()) {
234 $this->tpl->setOnScreenMessage(
236 $this->
lng->txt(
'mcst_download_started_bg'),
241 $this->
ctrl->redirectByClass(
"ilobjmediacastgui",
"showContent");
__construct(\ilObjMediaCast $obj, $tpl=null, string $rss_link="")
string $completed_callback
ilGlobalTemplateInterface $tpl
ilObjMediaCast $media_cast
getNextClass($a_gui_class=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS MediaCast InternalDomainService $domain
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static signFile(string $path_to_file)
setCompletedCallback(string $completed_callback)