19 declare(strict_types=1);
41 $this->job_repository =
new JobRepositoryImpl(
45 $component_repository,
60 public function endComponent(
string $component,
string $type): void
62 $this->component =
null;
66 public function beginTag(
string $name, array $attributes): void
68 if ($name !==
'cron') {
72 $component = $attributes[
'component'] ??
null;
77 $this->job_repository->registerJob(
81 ($attributes[
'path'] ?? null)
84 $this->has_cron[] = $attributes[
'id'];
87 public function endTag(
string $name): void
89 if ($name !==
'module' && $name !==
'service') {
93 $this->job_repository->unregisterJob($this->component, $this->has_cron);
beginTag(string $name, array $attributes)
This is called when a tag starts in the context of the given component.
Readable part of repository interface to ilComponentDataDB.
An ilComponentDefinitionProcessor processes some attributes from a component.xml (i.e.
endComponent(string $component, string $type)
This method is called when parsing of component.xml for the given component ends. ...
Interface Observer Contains several chained tasks and infos about them.
beginComponent(string $component, string $type)
This method is called when parsing of component.xml for the given component starts.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
endTag(string $name)
This is called when a tag ends in the context of the given component.
readonly JobRepository $job_repository
purge()
This methods is supposed to purge existing data in the provider of the component, so new components c...
__construct(private readonly \ilDBInterface $db, \ilSetting $setting, \ilComponentRepository $component_repository, \ilComponentFactory $component_factory)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...