37 protected \ILIAS\DI\Container
$dic;
51 $ui_factory = $this->dic->ui()->factory();
53 $title = $ui_factory->link()->standard($this->
txt(
'background_tasks'),
'#');
54 $icon = $ui_factory->symbol()->icon()->standard(
'bgtk', $this->
txt(
'background_tasks'));
56 return $this->dic->ui()->factory()
58 ->notification($title, $icon)
59 ->withDescription(
"$nr_buckets {$this->txt('background_tasks')}")
69 $persistence = $this->dic->backgroundTasks()->persistence();
71 $observer_ids = $persistence->getBucketIdsOfUser($this->dic->user()->getId(),
'id',
'DESC');
72 foreach ($persistence->loadBuckets($observer_ids) as $observer) {
82 $redirect_uri =
"//{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}";
84 $f = $this->dic->ui()->factory();
89 $icon =
$f->symbol()->icon()->standard(
"bgtk", $this->
txt(
"bg_task"));
90 $title = $observer->
getTitle() . ($state === State::SCHEDULED ?
" ({$this->txt('scheduled')})" :
"");
92 if ($state === State::USER_INTERACTION) {
93 $actions = $this->getUserInteractionContent($observer,
$redirect_uri);
94 $primary_action = array_pop($actions);
95 if ($primary_action instanceof
Button) {
96 $title = $primary_action->withLabel($title);
98 $item =
$f->item()->notification($title, $icon);
106 $item = $item->withActions(
$f->dropdown()->standard($actions));
107 $input = $current_task->getInput();
108 $message = $current_task->getMessage($input);
111 $item = $item->withDescription(
$message);
113 $item = $item->withAdditionalContent($this->
getProgressbar($observer));
116 return $item->withCloseAction(
121 $item =
$f->item()->notification($title, $icon);
123 if ($state === State::RUNNING) {
126 $item = $item->withAdditionalOnLoadCode(fn (
$id) =>
"var notification_item = il.UI.item.notification.getNotificationItemObject($('#$id')); 127 il.BGTask.refreshItem(notification_item,'$url');");
129 $expected = $current_task->getExpectedTimeOfTaskInSeconds();
131 if ($possibly_failed) {
132 $item = $item->withDescription($this->
txt(
'task_might_be_failed'));
133 $item = $item->withCloseAction(
154 $factory = $this->dic->ui()->factory();
155 $language = $this->dic->language();
156 $persistence = $this->dic->backgroundTasks()->persistence();
157 $ctrl = $this->dic->ctrl();
164 $options = $userInteraction->getOptions($userInteraction->getInput());
168 $ctrl->setParameterByClass(
169 ilBTControllerGUI::class,
173 $ctrl->setParameterByClass(
174 ilBTControllerGUI::class,
178 $ctrl->setParameterByClass(
179 ilBTControllerGUI::class,
181 $persistence->getBucketContainerId($observer)
187 $language->txt($option->getLangVar()),
201 case ($percentage === 100):
203 $content = $this->dic->language()->txt(
"completed");
205 case ($observer->
getState() === State::USER_INTERACTION):
207 $content = $this->dic->language()->txt(
"waiting");
211 $content =
"{$percentage}%";
215 return $this->dic->ui()->factory()->legacy(
" <div class='progress'> 216 <div class='progress-bar progress-bar-striped {$running}' role='progressbar' aria-valuenow='{$percentage}' 217 aria-valuemin='0' aria-valuemax='100' style='width:{$percentage}%'> 226 $ctrl = $this->dic->ctrl();
227 $persistence = $this->dic->backgroundTasks()->persistence();
232 switch ($option->getValue()) {
233 case AbstractTask::MAIN_ABORT:
236 case AbstractTask::MAIN_REMOVE:
251 $ctrl = $this->dic->ctrl();
252 $persistence = $this->dic->backgroundTasks()->persistence();
267 return $this->dic->language()->txt($id);
__construct(\ILIAS\DI\Container $dic)
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getItemForObserver(Bucket $observer)
getDefaultCardContent(Bucket $observer)
const CMD_GET_REPLACEMENT_ITEM
getLastHeartbeat()
When was the last time that something happened on this bucket?
getProgressbar(Bucket $observer)
getCloseButtonAction(UserInteraction\Option $option, string $redirect_uri, Bucket $observer)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getRefreshUrl(Bucket $observer)
addFromUrlToNextRequest(string $redirect_uri)
const CMD_USER_INTERACTION
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
getNotificationItem(int $nr_buckets)
Get the Notification Items.