19 declare(strict_types=1);
33 protected \ILIAS\HTTP\Services
$http;
34 protected \ILIAS\Data\Factory
$df;
45 protected \ILIAS\MediaObjects\MediaType\MediaTypeManager
$media_type;
51 protected \ILIAS\DI\UIServices
$ui;
55 string $parent_cmd =
"",
56 bool $a_edit_order =
false,
57 bool $a_presentation_mode =
false 61 $this->
ctrl = $DIC->ctrl();
62 $this->
lng = $DIC->language();
63 $this->
access = $DIC->access();
64 $this->request = $DIC->mediaCast()
68 $this->
ui = $DIC->ui();
69 $this->edit_order = $a_edit_order;
70 $this->presentation_mode = $a_presentation_mode;
71 $this->mediacast = $parent_gui->
getObject();
72 $this->downloadable = $this->mediacast->getDownloadable();
76 $this->media_type = $DIC->mediaObjects()->internal()->domain()->mediaType();
77 $this->df = new \ILIAS\Data\Factory();
78 $this->
http = $DIC->http();
83 $form_action = $this->df->uri(
84 ILIAS_HTTP_PATH .
'/' .
85 $this->
ctrl->getLinkTarget($this->parent_gui, $this->parent_cmd)
87 $this->url_builder =
new URLBuilder($form_action);
89 $this->url_builder->acquireParameters(
98 $f = $this->
ui->factory();
99 $c =
$f->table()->column();
101 'title' =>
$c->text($this->
lng->txt(
"title"))->withIsSortable(
false),
102 'type' =>
$c->text($this->
lng->txt(
"type"))->withIsSortable(
false),
103 'size' =>
$c->text($this->
lng->txt(
"size"))->withIsSortable(
false)
105 if ($this->playtime) {
106 $columns[
'playtime'] =
$c->text($this->
lng->txt(
"mcst_play_time"))->withIsSortable(
false);
108 $columns[
'creation_date'] =
$c->text($this->
lng->txt(
"created"))->withIsSortable(
false);
109 $columns[
'update_date'] =
$c->text($this->
lng->txt(
"last_update"))->withIsSortable(
false);
111 $columns[
'preview'] =
$c->text($this->
lng->txt(
"preview"))->withIsSortable(
false);
119 array $visible_column_ids,
123 ?array $additional_parameters
126 foreach ($this->mediacast->getSortedItemsArray() as $item) {
128 if ($cnt < $range->getStart() || $cnt > $range->
getEnd()) {
132 $row_id = (string) $item[
'id'];
134 $med = $mob->getMediaItem(
"Standard");
137 $data[
'title'] = $item[
"title"];
139 if ($item[
"update_date"] !== $item[
"creation_date"]) {
140 $data[
'update_date'] =
143 $data[
'update_date'] =
"-";
145 if ($item[
"playtime"] !==
"00:00:00") {
146 $data[
'playtime'] = $item[
"playtime"];
148 $data[
'playtime'] =
"-";
152 if (is_file($file)) {
153 $size = filesize($file);
154 $size = sprintf(
"%.1f MB", $size / 1024 / 1024);
155 $data[
'size'] = $size;
159 $data[
'type'] = $med->getFormat();
160 if ($mob->getVideoPreviewPic() !==
"") {
162 $image = $this->
ui->factory()->image()->responsive($mob->getVideoPreviewPic(), $item[
"title"]);
163 $html = $this->
ui->renderer()->render($image);
164 $html = str_replace(
"<img ",
"<img style='max-width:150px;' ", $html);
165 $data[
'preview'] = $html;
167 $data[
'preview'] =
"";
171 yield $row_builder->buildDataRow($row_id,
$data);
177 ?array $additional_parameters
179 return count($this->mediacast->getSortedItemsArray());
184 $action = $this->request->getTableAction($this->action_parameter_token->getName());
185 if ($action !==
"") {
189 $this->parent_gui->$action();
195 $f = $this->
ui->factory();
196 $a =
$f->table()->action();
198 $form_action = $this->df->uri(
199 ILIAS_HTTP_PATH .
'/' .
200 $this->
ctrl->getLinkTarget($this->parent_gui, $this->parent_cmd)
207 $actions[
"editCastItem"] =
$a->single(
208 $this->
lng->txt(
"edit"),
209 $url_builder->
withParameter($action_parameter_token,
"editCastItem"),
213 $actions[
"showCastItem"] =
$a->single(
214 $this->
lng->txt(
"show"),
215 $url_builder->
withParameter($action_parameter_token,
"showCastItem"),
219 if ($this->playtime) {
220 $actions[
"determinePlaytime"] =
$a->single(
221 $this->
lng->txt(
"mcst_det_playtime"),
222 $url_builder->
withParameter($action_parameter_token,
"determinePlaytime"),
227 if ($this->downloadable) {
228 $actions[
"downloadItem"] =
$a->single(
229 $this->
lng->txt(
"download"),
230 $url_builder->
withParameter($action_parameter_token,
"downloadItem"),
235 $actions[
"confirmItemDeletion"] =
$a->standard(
236 $this->
lng->txt(
"delete"),
237 $url_builder->
withParameter($action_parameter_token,
"confirmItemDeletion"),
242 ->data($this, $this->
lng->txt(
"mcst_items"), $this->
getColumns())
243 ->withActions($actions)
244 ->withRequest($this->
http->request());
248 protected function fillRow(array $a_set): void
257 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
259 if ($this->presentation_mode) {
260 $ilCtrl->setParameterByClass(
"ilobjmediacastgui",
"presentation",
"1");
264 if ($enable_internal_rss && !$this->presentation_mode) {
265 $this->tpl->setCurrentBlock(
"access");
266 $this->tpl->setVariable(
"TXT_ACCESS", $lng->
txt(
"news_news_item_visibility"));
268 $this->tpl->setVariable(
"VAL_ACCESS", $lng->
txt(
"news_visibility_public"));
270 $this->tpl->setVariable(
"VAL_ACCESS", $lng->
txt(
"news_visibility_users"));
272 $this->tpl->parseCurrentBlock();
275 $ilCtrl->setParameterByClass(
"ilobjmediacastgui",
"item_id",
"");
280 $med = $mob->getMediaItem(
"Standard");
282 $this->tpl->setVariable(
287 $this->tpl->setVariable(
289 $lng->
txt(
"mcst_play_time")
292 if (!$this->edit_order) {
293 if ($this->downloadable) {
294 $ilCtrl->setParameterByClass(
"ilobjmediacastgui",
"item_id", $a_set[
"id"]);
298 $a_mob = $mob->getMediaItem($purpose);
299 if (!is_object($a_mob)) {
302 $ilCtrl->setParameterByClass(
"ilobjmediacastgui",
"purpose", $a_mob->getPurpose());
304 $this->tpl->setCurrentBlock(
"downloadable");
305 $this->tpl->setVariable(
"TXT_DOWNLOAD", $lng->
txt(
"mcst_download_" . strtolower($a_mob->getPurpose())));
306 $this->tpl->setVariable(
"CMD_DOWNLOAD", $ilCtrl->getLinkTargetByClass(
"ilobjmediacastgui",
"downloadItem"));
307 $this->tpl->parseCurrentBlock();
313 ? $ilCtrl->getLinkTarget($this->parent_obj,
"handlePlayerEvent",
"",
true,
false)
315 if (!is_null($med)) {
316 $file = $mob->getStandardSrc();
318 if ($this->media_type->isAudio($med->getFormat())) {
319 $comp = $ui->factory()->player()->audio(
323 } elseif ($this->media_type->isVideo($med->getFormat())) {
324 $comp = $ui->factory()->player()->video(
327 } elseif ($this->media_type->isImage($med->getFormat())) {
328 $comp = $ui->factory()->image()->responsive($file,
"");
330 if (!is_null($comp)) {
331 $this->tpl->setVariable(
"PLAYER", $ui->renderer()->render($comp));
336 $ilCtrl->setParameterByClass(
"ilobjmediacastgui",
"item_id", $a_set[
"id"]);
337 if ($ilAccess->checkAccess(
"write",
"", $this->request->getRefId()) &&
338 !$this->presentation_mode) {
340 if (!is_int(strpos($med->getFormat(),
"image/"))) {
341 $this->tpl->setVariable(
"TXT_DET_PLAYTIME", $lng->
txt(
"mcst_det_playtime"));
342 $this->tpl->setVariable(
344 $ilCtrl->getLinkTargetByClass(
"ilobjmediacastgui",
"determinePlaytime")
347 $this->tpl->parseCurrentBlock();
349 $this->tpl->setCurrentBlock(
"edit_checkbox");
350 $this->tpl->setVariable(
"VAL_ID", $a_set[
"id"]);
351 $this->tpl->parseCurrentBlock();
355 $this->tpl->setCurrentBlock(
"edit_order");
356 $this->tpl->setVariable(
"VAL_ID", $a_set[
"id"]);
357 $this->tpl->setVariable(
"VAL_ORDER", $a_set[
"order"]);
358 $this->tpl->parseCurrentBlock();
363 if (!$this->presentation_mode) {
364 if ($a_set[
"mob_cnt_download"] > 0) {
365 $this->tpl->setCurrentBlock(
"prop");
366 $this->tpl->setVariable(
"TXT_PROP", $lng->
txt(
"mcst_download_cnt"));
367 $this->tpl->setVariable(
"VAL_PROP", $a_set[
"mob_cnt_download"]);
368 $this->tpl->parseCurrentBlock();
370 if ($a_set[
"mob_cnt_play"] > 0) {
371 $this->tpl->setCurrentBlock(
"prop");
372 $this->tpl->setVariable(
"TXT_PROP", $lng->
txt(
"mcst_play_cnt"));
373 $this->tpl->setVariable(
"VAL_PROP", $a_set[
"mob_cnt_play"]);
374 $this->tpl->parseCurrentBlock();
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
Both the subject and the direction need to be specified when expressing an order. ...
preview()
description: > Example for rendering a Preview Glyph.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
static http()
Fetches the global http state from ILIAS.
withParameter(URLBuilderToken $token, string|array $value)
Change an acquired parameter's value if the supplied token is valid.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
A simple class to express a naive range of whole positive numbers.