53 $ui_factory = $this->dic->ui()->factory();
55 $title = $ui_factory->link()->standard($this->
txt(
'background_tasks'),
'#');
56 $icon = $ui_factory->symbol()->icon()->standard(
'bgtk', $this->
txt(
'background_tasks'));
58 return $this->dic->ui()->factory()
60 ->notification($title, $icon)
71 $persistence = $this->dic->backgroundTasks()->persistence();
73 $observer_ids = $persistence->getBucketIdsOfUser($this->dic->user()->getId(),
'id',
'DESC');
74 foreach ($persistence->loadBuckets($observer_ids) as $observer) {
84 $redirect_uri =
"//{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}";
86 $f = $this->dic->ui()->factory();
91 $icon =
$f->symbol()->icon()->standard(
"bgtk", $this->
txt(
"bg_task"));
92 $title = $observer->
getTitle() . ($state === State::SCHEDULED ?
" ({$this->txt('scheduled')})" :
"");
94 if ($state === State::USER_INTERACTION) {
95 $actions = $this->getUserInteractionContent($observer,
$redirect_uri);
96 $primary_action = array_pop($actions);
97 if ($primary_action instanceof
Button) {
98 $title = $primary_action->withLabel($title);
100 $item =
$f->item()->notification($title, $icon);
108 $item = $item->withActions(
$f->dropdown()->standard($actions));
109 $input = $current_task->getInput();
110 $message = $current_task->getMessage($input);
113 $item = $item->withDescription(
$message);
115 $item = $item->withAdditionalContent($this->
getProgressbar($observer));
118 return $item->withCloseAction(
123 $item =
$f->item()->notification($title, $icon);
125 if ($state === State::RUNNING) {
128 $item = $item->withAdditionalOnLoadCode(fn(
$id):
string =>
"var notification_item = il.UI.item.notification.getNotificationItemObject($('#$id')); 129 il.BGTask.refreshItem(notification_item,'$url');");
133 if ($possibly_failed) {
134 $item = $item->withDescription($this->
txt(
'task_might_be_failed'));
135 $item = $item->withCloseAction(
156 $factory = $this->dic->ui()->factory();
157 $language = $this->dic->language();
158 $persistence = $this->dic->backgroundTasks()->persistence();
159 $ctrl = $this->dic->ctrl();
162 return [$factory->legacy()->content(
'')];
166 $options = $userInteraction->getOptions($userInteraction->getInput());
169 function (
Option $option) use ($ctrl, $factory, $observer, $persistence, $redirect_uri, $language):
Shy {
170 $ctrl->setParameterByClass(
171 ilBTControllerGUI::class,
175 $ctrl->setParameterByClass(
176 ilBTControllerGUI::class,
180 $ctrl->setParameterByClass(
181 ilBTControllerGUI::class,
183 $persistence->getBucketContainerId($observer)
187 return $factory->button()
203 case ($percentage === 100):
205 $content = $this->dic->language()->txt(
"completed");
207 case ($observer->
getState() === State::USER_INTERACTION):
209 $content = $this->dic->language()->txt(
"waiting");
213 $content =
"{$percentage}%";
217 return $this->dic->ui()->factory()->legacy()->content(
" <div class='progress'> 218 <div class='progress-bar progress-bar-striped {$running}' role='progressbar' aria-valuenow='{$percentage}' 219 aria-valuemin='0' aria-valuemax='100' style='width:{$percentage}%'> 228 $ctrl = $this->dic->ctrl();
229 $persistence = $this->dic->backgroundTasks()->persistence();
235 case AbstractTask::MAIN_ABORT:
238 case AbstractTask::MAIN_REMOVE:
253 $ctrl = $this->dic->ctrl();
254 $persistence = $this->dic->backgroundTasks()->persistence();
269 return $this->dic->language()->txt($id);
__construct(protected Container $dic)
getItemForObserver(Bucket $observer)
Customizing of pimple-DIC for ILIAS.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getDefaultCardContent(Bucket $observer)
const CMD_GET_REPLACEMENT_ITEM
withDescription(string $description)
Create a new item with an attached description.
getLastHeartbeat()
When was the last time that something happened on this bucket?
getProgressbar(Bucket $observer)
getCloseButtonAction(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)
getExpectedTimeOfTaskInSeconds()
addFromUrlToNextRequest(string $redirect_uri)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
const CMD_USER_INTERACTION
getNotificationItem(int $nr_buckets)
Get the Notification Items.