35 protected \ilLanguage
$lng;
45 $this->user_id = $a_usr_id;
46 $this->mcst_ref_id = $a_mcst_ref_id;
47 $this->mcst_id = $a_mcst_id;
49 $this->task_factory = $DIC->backgroundTasks()->taskFactory();
50 $this->task_manager = $DIC->backgroundTasks()->taskManager();
51 $this->
logger = $DIC->logger()->mcst();
54 public function run(): bool
57 $bucket->setUserId($this->user_id);
59 $this->
logger->debug(
"* Create task 'collect_data_job' using the following values:");
60 $this->
logger->debug(
"job class = " . DownloadAllCollectFilesJob::class);
61 $this->
logger->debug(
"mcst_id = " . $this->mcst_id .
", mcst_ref_id = " . $this->mcst_ref_id .
", user_id = " . (
int) $this->user_id);
63 $collect_data_job = $this->task_factory->createTask(
64 DownloadAllCollectFilesJob::class,
67 (
int) $this->mcst_ref_id
71 $this->
logger->debug(
"* Create task 'zip job' using the following values:");
72 $this->
logger->debug(
"job class = " . DownloadAllZipJob::class);
73 $this->
logger->debug(
"sending as input the task called->collect_data_job");
75 $zip_job = $this->task_factory->createTask(DownloadAllZipJob::class, [$collect_data_job]);
78 $bucket->setTitle($download_name);
80 $this->
logger->debug(
"* Create task 'download_interaction' using the following values:");
81 $this->
logger->debug(
"job class = " . DownloadAllZipInteraction::class);
82 $this->
logger->debug(
"download_name which is the same as bucket title = " . $download_name .
" + the zip_job task");
84 $download_interaction = $this->task_factory->createTask(DownloadAllZipInteraction::class, [$zip_job, $download_name]);
87 $bucket->setTask($download_interaction);
88 $this->task_manager->run($bucket);
static getASCIIFilename(string $a_filename)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _lookupTitle(int $obj_id)
Component logger with individual log levels by component id.