26 protected \ILIAS\MediaObjects\MediaType\MediaTypeManager
$media_types;
27 protected \ILIAS\MediaCast\InternalGUIService
$gui;
29 protected \ILIAS\MediaCast\InternalDomainService
$domain;
34 protected \ILIAS\DI\UIServices
$ui;
35 protected \ilLanguage
$lng;
47 $this->
ui = $DIC->ui();
49 $this->
lng = $DIC->language();
50 $this->media_cast = $obj;
52 $this->
user = $DIC->user();
53 $this->
ctrl = $DIC->ctrl();
54 $this->
toolbar = $DIC->toolbar();
55 $this->media_types = $DIC->mediaObjects()->internal()->domain()->mediaType();
56 $this->mc_manager = $DIC->mediaCast()->internal()->domain()->mediaCast($this->media_cast);
57 $this->gui = $DIC->mediaCast()->internal()->gui();
58 $this->domain = $DIC->mediaCast()->internal()->domain();
66 $cmd = $ctrl->getCmd();
68 switch ($next_class) {
70 if (in_array($cmd, array(
"downloadAll"))) {
78 $f = $this->
ui->factory();
86 if ($this->media_cast->getDownloadable()) {
87 $toolbar->addFormButton($lng->txt(
"mcst_download_all"),
"downloadAll");
90 if ($this->rss_link !==
"") {
91 $b =
$f->link()->standard(
92 $lng->txt(
"mcst_webfeed"),
95 $toolbar->addComponent(
$b);
104 $lp_collection_mode = $this->domain->learningProgress($this->media_cast)->isCollectionMode();
107 foreach ($this->media_cast->getSortedItemsArray() as $item) {
108 $mob = new \ilObjMediaObject($item[
"mob_id"]);
109 $med = $mob->getMediaItem(
"Standard");
110 if (!in_array($med->getFormat(), iterator_to_array($this->media_types->getAllowedImageMimeTypes()),
true)) {
114 $resource = $mob->getStandardSrc();
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 $items = $this->media_cast->getSortedItemsArray();
134 $total = count($items);
135 foreach ($items as $item) {
136 $mob = new \ilObjMediaObject($item[
"mob_id"]);
137 $med = $mob->getMediaItem(
"Standard");
139 if (!in_array($med->getFormat(), iterator_to_array($this->media_types->getAllowedImageMimeTypes()),
true)) {
143 $resource = $mob->getStandardSrc();
145 $preview_resource = $resource;
146 if ($mob->getVideoPreviewPic() !=
"") {
151 $preview_image =
$f->image()->responsive(
156 $image =
$f->image()->responsive(
161 if (!$lp_collection_mode) {
162 $modal = $main_modal;
164 $modal = $mob_modals[$mob->getId()];
167 $card_image = $preview_image->withAction($modal->getShowSignal());
170 if (!$lp_collection_mode) {
172 $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()->content($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 if ($this->mc_manager->commentsActive()) {
199 $comments_gui = $this->gui->comments()->commentGUI(
200 $this->media_cast->getRefId(),
203 $sections[] =
$f->legacy()->content($comments_gui->getGlyph());
207 $title = $mob->getTitle();
209 $card =
$f->card()->standard(
214 )->withTitleAction($modal->getShowSignal());
221 $deck =
$f->deck($cards);
223 if (count($pages) === 0 && count($mob_modals) === 0) {
226 if (!$lp_collection_mode) {
227 $modals = [$main_modal];
229 $modals = $mob_modals;
231 return "<div id='il-mcst-img-gallery'>" .
$renderer->render(array_merge([$deck], $modals)) .
"</div>";
237 $download_task = new \ILIAS\MediaCast\BackgroundTasks\DownloadAllBackgroundTask(
238 (
int) $user->getId(),
239 (
int) $this->media_cast->getRefId(),
240 (
int) $this->media_cast->getId()
243 if ($download_task->run()) {
244 $this->tpl->setOnScreenMessage(
246 $this->
lng->txt(
'mcst_download_started_bg'),
251 $this->
ctrl->redirectByClass(
"ilobjmediacastgui",
"showContent");
__construct(\ilObjMediaCast $obj, $tpl=null, string $rss_link="")
string $completed_callback
ilGlobalTemplateInterface $tpl
ilObjMediaCast $media_cast
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ILIAS MediaCast MediaCastManager $mc_manager
getNextClass($a_gui_class=null)
ILIAS MediaObjects MediaType MediaTypeManager $media_types
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
ILIAS MediaCast InternalDomainService $domain
setCompletedCallback(string $completed_callback)
ILIAS MediaCast InternalGUIService $gui